Tagged Questions
The vimgrep tag has no wiki summary.
4
votes
2answers
194 views
How do I write a vim function that calls VimGrep?
I want to write a function myFunc such that:
myFunc /function foo/
becomes
:vimgrep /function foo/ **/*.cpp **/*.hpp
and
myFunc /class bar: public/
becomes
vimgrep /class bar: public/ ...
3
votes
2answers
480 views
How to exclude file patterns in vimgrep?
In vim, I do search with vimgrep frequently. I have mapping like below:
map <leader>s :execute "noautocmd vimgrep /\\<" . expand("<cword>") . "\\>/gj **/*.*" <Bar>
...
2
votes
2answers
70 views
going to next file in vimgrep
I am new to vim, and still exploring some features of it. I have a problem with vimgrep. I can search for a pattern like this vimgrep /define/ ** so that it finds and opens next file that contains a ...
2
votes
4answers
94 views
is there any way to vimgrep, limiting to >1 but not all types of files?
i'm pretty used to doing either:
:vimgrep /whatever/ **/*
or
:vimgrep /whatever/ **/*.txt
but is there a way with vim globbing to do, say, 2 file types? i guess i want something that would work ...
2
votes
1answer
73 views
My vimgrep search is not behaving as I would expect
I am performing the following vimgrep search (in vim(!))....
:vimgrep /^\s*bool\s\+\i\+\s*=\s*\(false\)\|\(true\);\s*$/ *[files....]*
in order to find bool variable initialisations in my code. ...
2
votes
2answers
181 views
Vim, vimgrep, and file caching
My entire source code base is < 20MB.
I want it all loaded in memory in the background. So that when I do vimgrep */.cpp */.cxx */.hpp , it doesn't ahve to do file IO since vim has loaded all the ...
2
votes
2answers
200 views
vimgrep, :cn and n
I'm reading through a large C++ code base in Vim.
Within a single file, I can do
/foo
n
n
n
Now, if I want to search through more than one file, I have to do:
:vimgrep /foo/
:cn
:cn
:cn
Now, ...
2
votes
1answer
338 views
How to make vimgrep do word match search?
I have below statement in _vimrc file to map F3 to do vimgrep for word under current cursor.
map <F3> :execute "noautocmd vimgrep /" . expand("<cword>") . "/gj **/*." . expand("%:e") ...
2
votes
2answers
536 views
how to open multiple files in vim after vimgrep
I'm using gvim. Using vimgrep on current directory to find text across *.sql files. As it searches files, it just shows me file name at a time and in the end opens one file up.
Is it possible to ...