Vim CtrlP插件:手动设置根搜索目录?

前端之家收集整理的这篇文章主要介绍了Vim CtrlP插件:手动设置根搜索目录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已阅读文档,但无法弄清楚这是否可能。

我想保留g:ctrlp_working_path_mode = 2的默认设置,但是我想要手动覆盖当前窗口中所有缓冲区的能力。

具体来说,我想发出一个ctrlp命令或更改设置根搜索目录的ctrlp配置变量,这样就可以使用该目录来进行所有的搜索,无论我在哪个缓冲区。

奖金问题:是否可以设置两个根目录,以便搜索它们并组合结果?

谢谢!

尝试这个:

let g:ctrlp_working_path_mode = ‘ra’

‘c’ – the directory of the current file.

‘r’ – the nearest ancestor that contains one of these directories or files: .git .hg .svn .bzr

‘a’ – like c,but only if the current working directory outside of CtrlP is not a direct ancestor of the directory of the current file.

0 or ” (empty string) – disable this feature.

资料来源:https://github.com/kien/ctrlp.vim

另外,在这里:https://github.com/kien/ctrlp.vim/issues/292,作者提供了一种设置fullpath的方法

:CtrlP /var/www/myproject/bla/bla/theme
原文链接:https://www.f2er.com/bash/387664.html

猜你在找的Bash相关文章