如何使“helm-execute-persistent-action”不遵循符号链接原始路径

如何使“helm-execute-persistent-action”不遵循符号链接原始路径

我想在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)

这对我来说好多了。但仍然存在一个小问题,该函数将符号链接扩展为原始路径。

是否有选项可以禁用扩展符号链接?

相关内容