9
A
回答
20
它不起作用根本沒有。 Vim根本沒有公開可以幫助插件作者無縫銜接的插件。也許有一天...
與此同時,我們還剩下逆向工程,閱讀源代碼和一如既往,RTFM。
NERDTree的NERDTreeChDirMode
選項,就決定了插件的行爲來改變Vim的「當前目錄」:
If the option is set to 2 then it behaves the same as if set to 1 except that
the CWD is changed whenever the tree root is changed. For example, if the CWD
is /home/marty/foobar and you make the node for /home/marty/foobar/baz the new
root then the CWD will become /home/marty/foobar/baz.
在CtrlP的一面,ctrlp_working_path_mode
選項聽起來很有趣:
w - begin finding a root from the current working directory outside of CtrlP
instead of from the directory of the current file (default). Only applies
when "r" is also present.
所以它看起來像下面的兩個選項會給你你想要的:
let g:NERDTreeChDirMode = 2
let g:ctrlp_working_path_mode = 'rw'
相關問題
- 1. Vim CtrlP插件:手動設置根目錄搜索目錄?
- 2. ctrlp還是搜索忽略目錄
- 3. mod_rewrite:搜索子目錄中的域根
- 4. 如何根據項目根目錄獲取emacs grep進行搜索?
- 5. 遞歸搜索C目錄下的根目錄#
- 6. 如何根目錄
- 7. Qt 4.5.2 - linux - 改變庫的根目錄
- 8. 你可以改變jekyll的根目錄
- 9. 在Java根目錄下搜索文件
- 10. NSMetadataQuery NSMetadataQueryUbiquitousDocumentsScope僅搜索根目錄?
- 11. PHP目錄更改到根目錄
- 12. 如何讓Django在項目根目錄中搜索模板?
- 13. AS3查找根目錄SDCard路徑並在目錄中搜索
- 14. java:根據目錄和子目錄中的名稱搜索文件
- 15. htaccess將根目錄更改爲子目錄,但只允許根目錄url
- 16. mod_rewrite:如何根據「可用性」匹配目錄或根目錄中的文件?
- 17. 如何搜索mac根目錄下一級的文件?
- 18. 的Prestashop根目錄
- 19. WordPress的根目錄
- 20. nginx的根目錄
- 21. Apache2更改「根目錄」
- 22. 更改根目錄WAMP
- 23. 更改pinvoke SHFileOperation根目錄
- 24. 如何更改wordpress「文檔根目錄」
- 25. 如何更改網站根目錄
- 26. 如何在Tomcat中更改根目錄
- 27. CSS根目錄
- 28. 在根目錄
- 29. 根目錄?
- 30. HTML根目錄?
優秀的描述,謝謝@romainl – Nozim