Ctags is a program that generates an index (or tag) file of names found in source and header files of various programming languages.

learn more… | top users | synonyms

0
votes
1answer
21 views

Why does gf does not work for vim but ctrl+] works?

I have a file e.g. a.pl that has this method call: add_location(@crew); The actual definition is in the same file. If I do: CTRL + ] the cursor jumps to the definition. If I do: gf I get: E447: ...
0
votes
2answers
35 views

How can I run ctags in a large code base?

Assuming I have a code directory structure as follows: /top /second /core a.pl b.pl c.pl /common d.pl e.pl ...
3
votes
1answer
42 views

creating tags for a script language for easy browsing in vim

I use ctags+Vim for a lot of my projects and I really like the ability to easily browse through large chunks of code quickly. I am also using Stata, a statistical package, which has a script ...
0
votes
1answer
14 views

Where is the .ctags file on Windows?

I'm trying to use ctags with my python project, but am running into the problem that ctags recognizes import lines as definitions. The advice I found was to add the line: --python-kinds=-iv to my ...
1
vote
1answer
31 views

ctags use for Assembler

I want to generate tags on Assembler project I'm working on, but ctags-5.6 doesn't seem to understand the macro definition of the assembler. Is there a way to explain ctags what pattern to use in ...
1
vote
0answers
50 views

use regex vim with tagbar to get filename of graphic in latex

I'm using vim and tagbar to write my latex files. In the latex source, the input for a graphic look like this: ...
0
votes
1answer
34 views

Generating ctags tags inside vim within OSX doesn't work

I'm using terminal vim in OSX and I've installed ctags via homebrew then I have added the /usr/local/bin/ directory to my PATH and also aliased CTAGS to use the homebrew installed version all of ...
0
votes
1answer
23 views

How to create ctags only for c and h files in code

I have a compiled code. If i try generation the tags using the 'usr/bin/ctags -R *', it will include all the c,h,object files etc. So it is taking lot of time and also memory. Could you please let me ...
1
vote
2answers
52 views

ctags vim - go to method definition in same python class

I have two classes in a python source file. class A: def func(self): pass class B: def func(self): pass def run(self): self.func() When my cursor is in class B's ...
0
votes
0answers
36 views

Accessing remote tags file with Emacs

I use Emacs (run natively in OSX) to edit files (mostly python code) on Ubuntu VMs. I run a VM locally, but also access code on EC2. I recently learned about exuberant-ctags and was able to ...
0
votes
1answer
35 views

Generating ctags for libc in mac

I'm trying to use the tags of the libc library on a mac (Mountain Lion) through vim. I've generated tags from *.c files in /usr/include (ctags -R /usr/include/*.h). I've set tags to include the ...
0
votes
1answer
140 views

Error trying to parse settings: No data in ~/.config/sublime-text-2/Packages/User/CTags.sublime-settings:1:1

I am using ubantu and trying to configure ctags on sublime text 2 for rails. I am getting the above error message on opening my sublime text. On re building ctags its completing within a flash without ...
0
votes
2answers
31 views

Ctags not generated for .haml and .less files

I am using ctags -R * to generate tags.But its not generating the tags for .haml and .less files. Is there a separate option to generate tags for these files?
0
votes
0answers
64 views

Compile ctags for gvim on windows 7(64bit)

This is my first time posting a question here, so please let me know if I've gone and done something stupid. I would like to build ctags on windows 7 with support for custom languages. I've found some ...
0
votes
0answers
19 views

In sublime text2, when press ctrl+t,ctrl+t, the cursor jump to the declaration instead of its definition

in sublime text2, when press ctrl+t,ctrl+t, the cursor jump to the declaration instead of its definition. the declaration and definition are in the same file, how can I jump to the definition? I'm ...
0
votes
0answers
46 views

Doxygen or ctags for extracting methods from c++ code base?

How do you use doxygen or ctags on HP-UX to list all classes and methods from C++ code base. I believe ctags comes along with HP-UX but doxygen need to be installed? An example would help.
0
votes
1answer
26 views

Can I add scope information to tags generated with `--regex-<LANG>` in exuberant ctags?

Technically, I'm using Tagbar in vim to view a file's tags, but this question should apply generally to exuberant ctags, v5.8. Suppose I've got the following python file, call it foo.py: class foo: ...
1
vote
0answers
21 views

How to make ctags to defaulty index?

I have recently started working on multiple projects. All projects are in completely C language. I have installed exuberant-ctags for easy browsing of code. ctags is a wonderful tool but I have a ...
0
votes
0answers
26 views

how to jump with ctags and not to change the PWD in macvim

I used ctags + vim-project in macvim, and the project config like that src=/user/home/src CD = . filter="*.cpp *.h"{ xxx.cpp xxx.h } so when I open the xxx.cpp,then PWD set to the path of ...
0
votes
1answer
163 views

ctags, jsctags/doctorjs, Tagbar step by step

I need help on setting up ctags, jsctags, and tagbar so I can have a workable Javascript editing envrionment. I got everything installed but couldn't get an idea how ctags and jsctags work together ...
0
votes
1answer
440 views

How to use sublime text 2 and Ctags for erlang source code?

I install the Ctags by package control. And I also use the sublime-erlang. Most of the time it works well. But sometimes I could want to see how it implement in erlang stdlib It's this possible to ...
1
vote
1answer
81 views

Can the vim tagbar display a local variable?

The image shows that global variable Class A, but the local variable can't be show in tagbar,why? I want tagbar show local variable str,m,n and how to set??
1
vote
1answer
59 views

Getting Vim to be aware of ctag type annotations for python

I use Vim+Ctags to write Python, and my problem is that Vim often jumps to the import for a tag, rather than the definition. This is a common issue, and has already been addressed in a few posts here. ...
0
votes
1answer
54 views

kdevelop to use ctags

I am having KDevelop version 4.3.1 on my ubuntu box. I want the editor to use the ctags file generated manually. It does not detect tag file located at ~/projects/project_name/tags. How do i make ...
3
votes
1answer
60 views

ctags doesn't parse some clib headers

Okay, I've just installed ctags and I've tried to parse the whole C library with ctags like that: ctags -I__wur --c++-kinds=+p --fields=+iaS -f ~/.tags/tags /usr/include/*.h It seems, that this ...
3
votes
1answer
197 views

Qt Creator tag file

I use vim for C++ code editing. But its code completion isn't so good (although I have tried many plugins, such as OmniCppComplete). The Qt Creator code completion is awesome, and it also has vim ...
1
vote
3answers
102 views

How do I get C++ class instances using ctags?

For e.g. I define a C++ class like this: class cat : public animal { public: cat(const char* nameString) : m_name(nameString) {} ~cat(){} const char* getName() {return m_name.c_str();} ...
0
votes
1answer
55 views

Using gtags for gtk headers and my own project

I have a gtk project and I want to use gtags for my project. I also would like to use gtags for the external libraries, in my case gtk. I tried: find /usr/include/gtk-2.0 -name "*.h" > gtk_headers ...
0
votes
0answers
9 views

Using ctags with accents (diacritics)

I'm using ctags on some latex files. Everything works fine, except that as I'm writing in Spanish some of the tags have accents, and ctags is not storing them correctly. For example, I have a section ...
0
votes
1answer
85 views

Why am I getting that my emacs tags is not a valid tags table?

I just tried generating some tags for emacs by running something like: ctags -e --extra=+q --sort=yes -R /codebase/one /codebase/two /usr/include /usr/include/c++ I drop this in some subdirectory ...
1
vote
1answer
50 views

How can I get ctags to avoid indexing whitespace at the beginning of a line?

When using exuberant ctags with Vim, I've found that ctags generates a tags file that contains spaces at the beginning of each tag definition. As a result, whenever I jump to a tag, it jumps to the ...
1
vote
1answer
82 views

Vim keyword completion for ctags with backslashes?

I'm using ctags for keyword completion on a PHP project in vim. Since ctags doesn't handle PHP namespaces out of the box, I've added a regex option to my ctags command: ctags (...) ...
0
votes
0answers
55 views

Visual Studio or Eclispse equivalent to ctags or ebrowse?

Emacs has ctags and ebrowse which can tag arbitrary source code directories, recursively over all source files, for navigating large C libraries. However, the Emacs learning curve seems a bit much to ...
1
vote
2answers
53 views

How to ressign ctags for a different key binding in Vim?

I'm using Vim, the default binding for Cscope is the same one with Ctags (Ctrl-]), but I want to assign Ctrl-[ for Ctags and Ctrl-] for Cscope so that I can use one find definitions and the other for ...
0
votes
2answers
76 views

Can Nerdtree handle symbolic link when sync path?

I am using ctags to generate tags and put set tags+=~/.vim/tags/cpp(just followed this wiki page) in .vimrc.In my vimrc file there is also the setting like below so I can auto sync the nerdtree viewer ...
0
votes
0answers
108 views

How to use ctags in Eclipse?

I am using Eclipse Juno for an assembly project. I am using C/C++ project type and Eclipse shows acceptable highlights for assembly function labels. However, I didn't find a way to jump from a ...
1
vote
2answers
120 views

How to navigate multiple ctags matches in Vim?

I'm using Ctrl-] in Vim to navigate using Ctags. How do I navigate to alternate file if there are multiple matches? Ex. something.publish in a codebase containing multiple occurrences of publish: ...
2
votes
1answer
236 views

Vim autocomplete from ctags for system headers only works when popup is triggered manually

On OS X, I generated a set of ctags for the system includes using the following command: ctags -f c -h ".h" -R --c-kinds=+p --fields=+iaS --extra=+q /usr/include This was run inside of a ...
2
votes
1answer
143 views

How to get maven dependency sources and unpack them to a specified directory?

While I combine maven and vim , I can't find a way to download all sources that my project depends to a specified directory and unpack them together. So that i can generate tags easy. Does someone ...
1
vote
0answers
72 views

VIM - ctags support for cucumber/gherkin

Is there a way, in VIM, to navigate to a Cucumber step definition from a .feature file? I was hoping the exuberant-ctags library would have support, but I haven't figured it out yet. Anyone have ...
1
vote
1answer
54 views

Ubuntu: ctags error: “ctags: Unknown option: -p”

I am trying to create tags using ctags and getting the error ctags: Unknown option: -p There is a similar question asked before. But i could not understand that solution. I'm very sorry for posting ...
1
vote
1answer
88 views

Is ctags support fixed prototype function of GCC?

I found that gcc support a strange function definition like: static void add_define P3(char *, name, int, nargs, char *, exps) Which compile with -D__USE_FIXED_PROTOTYPES__. And my taglist plugins ...
0
votes
1answer
164 views

How to make cscope display full file paths during search

When I search for a C symbol or global definition using cscope, it displays the file-names and line numbers. I would like to see the full file-paths so that I can jump to my arch specific file. For ...
0
votes
0answers
147 views

What is the difference between cscope.out & ctags file

I am aware of the difference between the two tools, cscope & ctags & when to use which one of them. What I am trying to ask is about their database file. By default, cscope creates cscope.out ...
2
votes
1answer
156 views

Recursive ctags with for only one filetype

I want to use ctags to create tags for a project, that is distributed over several subfolders. I know that this can be done using ctags -R *. Is it possible to restrict the generation to only use ...
0
votes
0answers
70 views

ctags for Razor/cshtml

I was wondering if anyone knows of or has written a ctags definition for razor/cshtml. I would like to enhance my tags support in vim for my ASP.NET MVC applications. I am looking for something ...
1
vote
1answer
280 views

vim: taglist fails to generate tags

When trying to run taglist (:TlistToggle) on a .py file I get the error: Taglist: Failed to generate tags for /Users/...py ctags: illegal option -- -^@usage: ctags [-BFatuwvx] [-f tagsfile] file ...
5
votes
2answers
105 views

VIM - Sourcing tags from multiple locations in project

Good day, I typically work on relatively small (less than 20,000 lines of code) projects that are all self contained within a single directory, have their own Makefile, and are fairly easy to work ...
1
vote
1answer
223 views

Vim Omnicppcomplete - partially working

I just installed omnicppcomplete and it is "kindof" working. The behaviour is realy strange, Omnicppcomplete is working for some files but not for others. E.g.: If I open file1.cpp omnicppcomplete ...
2
votes
2answers
168 views

Alternate to taglist in vim

I've been using ctags+taglist for a while, trying to build up an IDE for myself. Taglist does do a great job, but it occasionally crashes when cooperating with buffers in my vim. As a newcomer, I see ...

1 2 3 4 5 7