3
votes
3answers
67 views
Tips for Setting Up Complex CTAGS Search Paths
I want to be able to start up vim in an arbitrary subdirectory in my project and have it search up to the project root for the tags file, and then to search in an unrelated directo …
3
votes
4answers
393 views
Get ctags in vim to go to definition, not declaration
I'm having the problem that ctags takes me to a forward declaration allot of times instead of to the actual definition of the function.
Any way to get around that?
1
vote
4answers
93 views
Jumping back to a previously opened file in vim
I apologize if this has already been asked; I did a few searches both here and on Google and I can't find the answer to my question.
While using Vim I'll sometimes want to look a …
29
votes
13answers
5k views
Vim+ctags tips and tricks
I have just installed ctags (to help with C++ development) with my vim (or rather gvim), and would like to find out your favorite commands, macros, shortcuts, tips that go along wi …
0
votes
1answer
22 views
Running ctags for an external kernel module ( or pulling in tags from a separate related project )
I'm building a an 'external' module ( device driver ), i.e. it's not in the Linux kernel source tree, but in a separate unrelated source tree.
I want to use ctags to browse variab …
1
vote
0answers
82 views
Is it possible to install ctags without root privs? [closed]
I have user access to a Ubuntu instance and I'd like to use CTags.
The error says:
The program 'ctags' can be found in the following packages:
* exuberant-ctags
* emacs22-bin-c …
1
vote
1answer
60 views
ctags does not parse stdio.h properly
I am trying to use ctags with VIM, and I am a newbie to both. In order to test the extent to which ctags could be useful I decided to put it through a very simple test, namely to p …
1
vote
1answer
91 views
How do I generate a ctags file for a docset? (For vim)
I'd like to be able to use ctags to browse the apple iphone sdk docsets with vim. Is there a way to generate a ctags file that links to the docsets in question?
I use Objective-C …
0
votes
1answer
54 views
Getting ctags to include module qualifiers in the tags file for Erlang code
I'm using Exuberant ctags to index Erlang files.
The "tags" file contains functions, but they do not have module qualifiers; so
I can't search for "module:function", only "functio …
2
votes
3answers
65 views
Tool for code Navigation in PL/SQL
I have to study and modify a big and poorly documented codebase written in pl/sql. I use Oracle SQL Developer to navigate through it, but it become tedious because there is not a " …
6
votes
1answer
254 views
scope vs ctags in terms of features
I am a big fan of ctags Hence I am wondering if I have cscope, will I benefit more there two programs. Seems like the latter has the same features as ctags, namely, facilitating …
1
vote
0answers
47 views
How to get ctags to tag loca variables and extern variables
I am using ctags 5.8 on Windows to tag a set of .c and .h files. I have one c file that has a global variable and another file that externs that variable. The tag file only has an …
2
votes
5answers
199 views
Who calls this function?
At my last job (legacy FORTRAN 77 code), we had files of cross references that list what subroutines called other subroutines, in what files subroutines were defined, what common b …
4
votes
3answers
206 views
What are the easiest/best methods for managing your ctags tag file(s)?
I just started using ctags and greatly appreciate the tool but the way I manage my tag file is somewhat cumbersome in my opinion and very inflexible.
How I currently manage my tag …
5
votes
2answers
230 views
How to automatically update tag file in vim?
I use vim C++ tag file for navigation using Ctrl-]. The problem is whenever some file gets modified, the links are no longer valid and I have to re-run ctags and update the tag fil …
