gpt4 book ai didi

Vim Ctrlp 无法正确解析 Ag(银搜索)--忽略选项

转载 作者:行者123 更新时间:2023-12-01 17:05:22 25 4
gpt4 key购买 nike

在命令行上使用 ag 时,如下所示:

$> ag 。 --ignore="*node_modules/*/node_modules"-l --nocolor -f -U -g ""

我能够避免在节点服务中搜索超过一级深度的任何 node_modules 目录,这是所需的行为。

但是,当我在 vimrc 中使用以下内容时,不会忽略深度超过一层的 node_modules 目录:

" Use The Silver Searcher https://github.com/ggreer/the_silver_searcher
if executable('ag')
" Use Ag over Grep
set grepprg=ag\ --nogroup\ --nocolor

" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
let g:ctrlp_user_command = 'ag %s --ignore="*node_modules/*/node_modules" -l --nocolor -f -U -g ""'
endif

如何设置 agctrlp 来正确忽略这些目录?不确定在移植到 vimrc 时是否需要使用不同的语法(如正则表达式)或其他一些问题。

我没有将其放入wildignore中的原因是node_modules在我的.gitignore中被忽略,因此我使用-U选项来忽略任何vcs文件(从而允许ag 来搜索node_modules)——但是这个选项似乎也绕过了wildignore。

最佳答案

和你一样,我也使用这两种工具,但我忽略文件夹的方式不同

对于Ag,我使用.agignore文件,它与.gitignore具有相同的语法,并且就像它一样,它可以进入您的主文件夹或项目文件夹。

不确定这是否能解决您使用 Ctrlp 的问题,无论如何,它对我来说已经相当快了,所以我使用正常的忽略变量,如下所示:

let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/](doc|tmp|node_modules)',
\ 'file': '\v\.(exe|so|dll)$',
\ }

关于Vim Ctrlp 无法正确解析 Ag(银搜索)--忽略选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24479101/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com