我想在Tab
使用时完成find-file
,所以我绑定了一个函数,helm-execute-persistent-action
如下Tab
所示。
;; For find-file etc.
(define-key helm-read-file-map (kbd "TAB") 'helm-execute-persistent-action)
;; For helm-find-files etc.
(define-key helm-find-files-map (kbd "TAB") 'helm-execute-persistent-action)
这对我来说好多了。但仍然存在一个小问题,该函数将符号链接扩展为原始路径。
是否有选项可以禁用扩展符号链接?