Tagged Questions
8
votes
1answer
223 views
Improved jumps to definition
When we're using ctags in vim and want to go to particular definition of variable or function we press ctrl + ], when we want to go back we press ctrl + T.
When we want to autocomplete a name of a ...
2
votes
1answer
229 views
Absolute path on Vim 'tags' option
I'm facing a problem to use an absolute path on Vim 'tags' option under Windows XP.
Directory hierarchy:
C:/
| Temp/
| | tags
| test.cpp
Commands below on vim while editing test.cpp
:pw
C:\
...
3
votes
1answer
2k views
Path for tags in VIM for multiple projects
I've recently started using ctags on my projects. I currently have the following setup:
root/tags [contains all non-static tags]
root/foo/tags [contains static tags for the foo directory]
...
3
votes
2answers
206 views
Vim search for class
How do I define a vim function such that when called with
Foo
it searches via vimgrep for
\s*class Foo
or
\s*struct Foo
?
[This is poorman's cscope/ctag; I want to be able to type in a class ...