|
|
|
|
|
by Nick_C
5741 days ago
|
|
Searching in a project:
There is a builtin command vimgrep to search through external files, there is also a grep plugin that makes it easier and more versatile. As well, there is ctags, which basically builds up a list of function calls and where they are in a file. Vim understands tag files by default and will use them automatically. You can then toggle between the function declaration and your current line (useful for searching for functions' and what their parameters are). |
|
Does the ctags plugin work for other languages as well, e.g. python, ruby, javascript?