Tagged Questions
Ctags is a program that generates an index (or tag) file of names found in source and header files of various programming languages.
132
votes
15answers
50k views
Vim and Ctags tips and tricks [closed]
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 with it...
Share your ...
40
votes
3answers
14k views
cscope or ctags why choose one over the other?
I primarily use vim / gvim as an editor and am looking at using a combination of lxr ( the Linux Cross Reference ) and either cscope or ctags for exploring the kernel source. However I haven't ever ...
25
votes
12answers
8k views
Vim auto-generate ctags
Right now I have the following in my .vimrc:
au BufWritePost *.c,*.cpp,*.h !ctags -R
There are a few problems with this:
It's slow -- regenerates tags for files that haven't changed since the ...
24
votes
2answers
826 views
ctags ignore lists for libc6, libstdc++ and boost
I use ctags with vim and the OmniCppComplete plugin. Currently when generating my tags I do it individually for each library. For libc6 I use the following list of tokens / macros in a file named ...
18
votes
5answers
785 views
Standard library tags
I use tag files for code completion and for a quick, inline view of parameters, overloads, files (where declared), etc. Where can I find freely available tags for the C99, C++03, and C++0x standard ...
14
votes
2answers
960 views
VIM: More precise C/C++ code parsing solutions?
Pre:
I've been working in VIM for like a year already. Lots of great things: combinations, scripts. Whenever I'm editing something in a different editor, I feel sluggish/uncomfortable without VIM's ...
13
votes
4answers
3k 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 file. Our code base is ...
13
votes
3answers
7k views
Installing Exhuberant Ctags on Windows (Vista and XP)
I want to use Exuberant Ctags on Vista (and probably the XP laptop) at work; no choice about the OS. I'm use GVim instead of the Flex Builder recommended by my co-worker, because the FB is buggy and ...
10
votes
2answers
923 views
Vim + OmniCppComplete: Completing on Class Members which are STL containers
Completion on class members which are STL containers is failing.
Completion on local objects which are STL containers works fine.
For example, given the following files:
// foo.h
#include ...
10
votes
2answers
2k views
Generating a reasonable ctags database for Boost
I'm running Ubuntu 8.04 and I ran the command:
$ ctags -R --c++-kinds=+p --fields=+iaS --extra=+q -f ~/.vim/tags/stdlibcpp /usr/include/c++/4.2.4/
to generate a ctags database for the standard C++ ...
9
votes
2answers
447 views
How do I generate ctags for CoffeeScript?
Is it possible to generate a ctags file for CoffeeScript in vim/MacVim?
9
votes
4answers
2k views
how to make vim ctags works for modern javascript
I am using vim and ctags to get taglist. but for javascript, it does not works for this convention
MyClass.extend({
xxx: function(){
},
...
})
MyClass.prototype = {
method : function(){ }
...
8
votes
1answer
141 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 ...
8
votes
4answers
435 views
Is there an alternative to ctags that works better?
I have just discovered the taglist plugin for vim, and read about how to use it with ctags.
However, disappointingly ctags is a very simple parser.
Is there an alternative that is more complete?
...
8
votes
6answers
1k views
How can I make vim's taglist plugin show useful information for javascript?
I've recently abandoned mouse-driven, platform-specific GUI editors and committed entirely to vim. The experience so far has been fantastic, but I'm stuck when it comes to Javascript.
The ...
8
votes
3answers
581 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 file:
I have one ...
8
votes
4answers
1k views
vim, ctags, and identically named identifiers
vim + ctags works well for C projects, since C does not allow function overloading and, in general encourages manual prefixing of symbols due to rudimentary scoping facilities.
In C++, functions are ...
7
votes
6answers
3k 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?
7
votes
6answers
3k views
How to programmatically create/update a TAGS file with emacs?
Is there any plugin for emacs to automatically update the TAGS file in my C project (for example on buffer save or access) or create a new one if there is no TAGS file present?
I am running on ...
6
votes
1answer
94 views
Case insensitive tag searching in Vim
For the most part, I find case sensitive tag searching to be appropriate. Most of the languages that we use are case sensitive, so this is desirable.
However, I have a DSL in my workplace that uses ...
6
votes
3answers
200 views
ctags multi-line C function prototypes
Is there a way for ctags to handle multiline function prototypes in C?
I've searched around and the --fields=+S is supposed to do multiline prototypes, but I can't get it to work:
ctags -x ...
6
votes
6answers
2k views
Using Macvim over ssh
My project involves working on a large codebase on a remote server. I'm constantly editing multiple files, so scp'ing files back an forth is not possible.
I've got my local Macvim setup just the way ...
6
votes
4answers
2k views
Alternatives to Ctags/Cscope with Objective-c?
Are there any alternatives to ctags and cscope with Objective-c support. This does pertain to cocoa development, so inevitably it seems I will be using Xcode (and probably should). I was just ...
6
votes
1answer
1k 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 the finding of ...
5
votes
3answers
129 views
Search tags only in current file
I am using ":ta " to jump to a method.
For example i got two classes named A.java and B.java. They both have a foo() method and B.java have another method called fooBar(). Then i open A.java and input ...
5
votes
2answers
174 views
VIM - More accurate alternative/workaround to ctags/Cscope for PHP?
I know that it is possible to use Ctrl+] to jump to a definition in Vim and this can work in conjunction whith either ctags or Cscope. I am looking for a more accurate alternative to both ctags and ...
5
votes
1answer
81 views
How can I make vim tag jumps as smart as OmniCppComplete?
I generate my tags (Exuberant Ctags 5.9~svn20110310) like this:
ctags --c++-kinds=+p --fields=+iaS --extra=+q -L ctags.files
I have roughly this class structure:
class RenderObject
{
...
5
votes
2answers
216 views
ctags info for built-in functions in PHP/Python/Etc
Is there any way I can get ctags to somehow support the built-in functions provided by PHP/Python (Or whatever I'm working with at that moment), so that I can also use those in Source Explorer in vim ...
5
votes
1answer
475 views
Vim: restricting methods shown by omnicomplete to those present in ctags
I'm editing a simple PHP file with a class which has a few methods, if $bar is an instance of this class and I type
$bar->ctrlxctrlo
I get a popup with a lot of methods (builtin ones) in addition ...
5
votes
4answers
717 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 directory outside the ...
5
votes
3answers
924 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 parse the headers in ...
5
votes
3answers
1k views
How to use multiple tabs when tagging to a function in Vim
I use ctags with my Vim and I rely heavily on C-] and C-T to tag back and froth between various functions in my project.
But if the function is in a different file, I'd like Vim to automatically open ...
4
votes
1answer
77 views
No omnicompletion for python class members in vim?
I want to create tags (ctags 5.8) file for my classes in python.For functions, and class members defined outside the class definition omnicompletion works ok. However if I define data member in a ...
4
votes
1answer
115 views
Jump to definition in new tab
What i'm looking for is the following behaviour:
^]Should open the definition below the cursor in a new tab instead of a new buffer and reuse already open tabs
^OShould switch back to the previous ...
4
votes
5answers
198 views
Vim and ctags: tag filenames
Is it possible to have ctags generate tags for filenames as well? I would like to be able to jump to a file given a filename. :find seems to be awfully slow compare to tags...
4
votes
2answers
968 views
Vim: Difficulty setting up ctags. Source in subdirectories don't see tags file in project root
I'm trying to get setup with (exuberant) ctags on Vim today and am having difficulty getting it to work properly. I generate my ctags file on the command line with with:
cd myproj
ctags -R
This ...
4
votes
1answer
170 views
How to use CTAGS and VIM in a case_insensitive way?
I am using ctags in conjunction with VIM, which is a quite powerful combination to speed up coding. In order to enable autocompletion for a set of IDL routines I've generated the CTAGS file with the ...
4
votes
1answer
110 views
ctags support for MooseX::Declare? (Perl)
How can I get ctags to generate tags for MooseX::Declare methods, classes, attributes and such?
4
votes
1answer
682 views
Vim - run ctags on current python site-packages
This is what I need - have a key that will create ctags of my python site-packages.
I have this command, that will print the site-packages path:
!python -c "from distutils.sysconfig import ...
4
votes
1answer
767 views
Setting up separate ctags db's for C/C++ standard libs, boost, and third party libs
I want to set up separate ctags databases for various libraries in /usr/include/ for use with OmniCppComplete.
The idea is to be able to pull in only the libraries needed for a particular project ...
4
votes
1answer
680 views
Getting ctags + Vim to work with scoping?
When I use ctags to generates tags of the STL and use those tags with Vim, it isn't aware of scoping. If I use ctrl-] it will go to the first tag that matches, even if that is incorrect. For ...
4
votes
2answers
2k views
ctags best practicies
I'm working on +1M LOC C/C++ project on Solaris (remote, via VNC or SSH). I have a daily updated copy of source code on my local machine too (Windows, just for browsing code).
I use VIM and ctags ...
4
votes
5answers
408 views
A few vim questions
So I was hoping that some old school Vim'ers could help me out. These are all separate questions and normally I would put them up each on their own but I'm not sure if that qualifies as question ...
3
votes
1answer
43 views
Is there an equivalent of ctags or cscope for browsing R code in R using ESS mode?
For c++ and c I am able to create TAGS file by running ctags -e or use cscope to navigate a codebase in emacs. Is there an equivalent for a codebase in R? ctags ignored my R files...
3
votes
2answers
91 views
c++, omnicppcomplete doesn't show methods for string
The problem about ctags and omnicppcomplete in vim. Omni does not show methods of class "string". (I had the same problem with STL library. I solved it by downloading STL and run ctags in this folder ...
3
votes
2answers
112 views
vim-7 with ctags
running VIM-7.0.237 on CentOS-5.6. I have a large C code base with tags generated with ctags-5.6, there are functions with the same name defined in several places and I remember back when I used ...
3
votes
2answers
974 views
Exuberant Ctags on Mac
I'm currently using vim for my PHP development. A few weeks ago I bought myself a mac, and wanted to re-generate my tags for a new Zend Framework version.
I used the following script in the past ...
3
votes
2answers
374 views
Using ETAGS/CTAGS in emacs with C++ Project
Im using emacs and etags to navigate my way round a project, is it possible to get to a header file easily by searching for a function. I have been using VisualStudio and I can view it by clicking ...
3
votes
0answers
123 views
How can I use DoctorJS with Emacs?
Is there a way to use DoctorJS (apparently it used to be called jsctags) to generate a TAGS file for Emacs?
I've been looking around and it seems to always use the vi tags style, but I could be ...
3
votes
2answers
112 views
Is there a Ctags like tool for browsing/navigating XSLT code in Vim?
Need a way to navigate/browse XSLT files easily with Vim.
Similar to the way ctags can be used with C/C++ source code.
A good solution would allow installing scripts etc only for self or running them ...