ctrlp.vim 專案開發時開檔案的好幫手
那我只要輸入類似這種的路徑: as/j/u.id 就可以找到需要的檔案(當然要看有沒有其他檔案有類似的組成) 找到以後有幾種開啟方法:
enter: 可以在目前 window 中打開(如果已存在其他 tab 中會跳過去)
C-t: 會開新的 tab
C-v: 把目前的 window 做垂直切割開啟
installation: 其他一些指令可以參考 :help ctrlp-mappings 剛裝完 ctrlp 的時候可能會覺得他啟動有點慢,在 OSX/Linux 底下的話可以設定用 git ls-files 或 find 來做檔案列表的建立,速度會有明顯的改善,在 ~/.vimrc 裡面加入
let g:ctrlp_user_command = {
\ 'types': {
\ 1: ['.git', 'cd %s && git ls-files -c -o'],
\ 2: ['.hg', 'hg --cwd %s locate -I .'],
\ },
\ 'fallback': 'find %s -type f'
\ }
installation: http://kien.github.io/ctrlp.vim/#installation
沒有留言:
張貼留言