作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在命令行上使用 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
如何设置 ag
和 ctrlp
来正确忽略这些目录?不确定在移植到 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/
我正在用 JavaScript 构建游戏并生成结果。 var score = array("5", "5", "1"); 因此玩家 1 的得分为 5,玩家 2 的得分为 5,玩家 3 的得分为 1。
我是一名优秀的程序员,十分优秀!