我将ag
与ctrlp
一起使用,如建议here:
if executable('ag')
set grepprg=ag\ --nogroup\ --nocolor
let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'
let g:ctrlp_use_caching = 0
else
let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$'
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files . --cached --exclude-standard --others']
endif
如果我从包含.git
文件夹的项目文件夹中运行vim,这非常有用。但是,每当我从一个不是git项目根目录的目录运行Vim时,我得到一个空文件列表(没有结果)。为了澄清,使用以下文件夹层次结构:
Proj1/ # ctrlp works; finds foo.js and bar.js (unless they are .gitignored)
.git/
bin/
foo.js
bar.js
Proj2/ # ctrlp doesn't work; has empty file list
bin/
foo.py
bar.py
实际的ag
命令ag %s -l --nocolor -g ""
在我从同一目录中的命令行运行它(它找到所有文件)时工作正常。
以下是我ctrlp
配置的全部内容:
map <c-p> :CtrlP<cr>
map <c-t> :CtrlPTag<cr>
let g:ctrlp_dotfiles = 1
let g:ctrlp_show_hidden = 1
let g:ctrlp_cmd = 'CtrlPMixed' " search anything (in files, buffers and MRU files at the same time.)
let g:ctrlp_cmd = 'CtrlP'
let g:ctrlp_working_path_mode = 'ra' " search for nearest ancestor like .git, .hg, and the directory of the current file
let g:ctrlp_match_window = 'top,order:ttb'
let g:ctrlp_max_height = 12 " maxiumum height of match window
let g:ctrlp_switch_buffer = 'et' " jump to a file if it's open already
let g:ctrlp_use_caching = 1 " enable caching
let g:ctrlp_clear_cache_on_exit = 0 " speed up by not removing clearing cache evertime
let g:ctrlp_mruf_max = 250 " number of recently opened files
if exists('g:ctrlp_user_command')
unlet g:ctrlp_user_command
end
if exists('g:ctrlp_custom_ignore')
unlet g:ctrlp_custom_ignore
end
if executable('ag')
set grepprg=ag\ --nogroup\ --nocolor
let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'"
let g:ctrlp_use_caching = 0
else
let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$'
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files . --cached --exclude-standard --others']
endif
let g:ctrlp_prompt_mappings = {
\ 'AcceptSelection("e")': ['<c-t>'],
\ 'AcceptSelection("t")': ['<cr>', '<2-LeftMouse>'],
\ 'ToggleType(1)': ['<c-u>', '<c-up>'],
\ 'ToggleType(-1)': ['<c-y>', '<c-down>'],
\ 'PrtExit()': ['<c-l>', '<esc>', '<c-c>', '<c-g>'],
\ 'PrtSelectMove("j")': ['<c-n>', '<down>'],
\ 'PrtSelectMove("k")': ['<c-p>', '<up>'],
\ 'PrtHistory(-1)': ['<c-j>'],
\ 'PrtHistory(1)': ['<c-k>'],
\ }
let g:ctrlp_buftag_types = {
\ 'coffee' : '--language-force=coffee --coffee-types=cmfvf'
\ }
如何让ctrlp/ag
在git repo之外正常工作?
答案 0 :(得分:3)
PEBCAK。 CtrlP
和Ag
都在做他们应该做的事情。我的主目录中有一个.git
文件夹,用于备份dotfiles和其他一些零碎的内容。 .gitignore
设置为忽略~/Documents/
等。因此,每当我从CtrlP
的子文件夹运行~/Documents/
时,它都找不到文件(因为它在主目录git repo中,但忽略了所有文件)。这就是CtrlP
空白的原因;在~/Documents/
之外运行它按预期工作。
但是,我仍然不确定为什么主目录中的.git
repo不会在ag
的子文件夹内的命令行上搞砸~/Documents/
;它只发生在Vim CtrlP
。 (同样,我已经确认CtrlP
正在使用命令ag %s -l --no-color -g ""
。)对此有任何想法都是受欢迎的。我还不确定如何解决问题,除了删除我的主目录中的git repo(可能是通过将~
中的dotfiles硬链接到受git保护的dotfiles
目录中)。
答案 1 :(得分:0)
使用以下设置,ctrlp使用export interface Countries {
Status: Number;
msg: String;
categorylist: array[];
}
检索文件列表,如果您使用的是Git仓库,否则ctrlp会使用git ls-files
。
ag
请参阅let g:ctrlp_user_command = {
\ 'types': {
\ 1: ['.git', 'cd %s && git ls-files']
\ },
\ 'fallback': 'ag %s -l --nocolor -g ""'
\ }
更多详情。