Ggrep只在当前目录中

时间:2014-04-25 03:55:44

标签: git vim vim-fugitive

我希望:Ggrep不是来自git根目录,而只是在当前文件在vim中打开的目录中。

我尝试了:Ggrep search_key .,但它仍然从git root看起来。

即使:Git grep search_key .:Ggrep

相同

1 个答案:

答案 0 :(得分:1)

.将扩展到当前的工作目录iirc。相反,你应该做这样的事情:

:Ggrep search_key <C-R>=expand('%:h')<CR><CR>