ctags Questions

6

I have opensuse 11.4 installed. Vim is version 7. Now I normally use it to browse the linux kernel source. So I generated the cscope database inside a directory within my home folder i.e. /home/aij...
Prosy asked 23/6, 2011 at 6:43

3

Solved

I use vim-rails and ctags for navigate of methods. For it I run ctags -R * in /home/***/.rvm/gems/ruby***/gems. But in this directory was many folders for one gems just different versions(for examp...
Dunsinane asked 12/4, 2012 at 19:12

5

I was wondering if there is any tool like OmniCppComplete for C# (method signature shown in the abbreviation is what I'm most interested in). I've searched everywhere with not avail. Update: I'll ...
Midstream asked 30/9, 2010 at 16:17

1

Solved

How can I make ctags parse using type aliases, like the one below? using FooPtr = std::shared_ptr<Foo>; It only picks up ones declared with typedef.
Affix asked 28/5, 2018 at 4:6

3

Solved

It is several years I am programming with vim and I used ctags. I am working with a reasonably large C/C++ package and I need to find definition of functions. I usually use grep + ctags. Recently I...
Simdars asked 11/1, 2017 at 21:43

1

Solved

I generate ctags with the following command ctags -R --fields=+l --languages=python --python-kinds=-iv -f ./tags apps/employees/models.py and this is my code from django.contrib.auth.models imp...
Raveaux asked 22/12, 2017 at 23:42

2

Solved

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...
Photoreceptor asked 5/12, 2012 at 12:14

1

Solved

Sorry I am trying to configure ctags with emacs but I am in trouble. I compiled global with this configure: ./configure --with-universal-ctags=/usr/local/bin/ctags and I executed make &&amp...
Nonattendance asked 18/7, 2017 at 21:23

3

Solved

I know YoucompleteMe on base of LLVM, but I want to use OmniCppComplete. This works nice, if I use the modified headers for C++. This modified headers are outdated and doesn't contain anything from...
Mezzosoprano asked 30/6, 2014 at 12:10

3

Solved

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 get_py...
Hibben asked 4/7, 2010 at 19:19

3

Solved

So here's my problem. I've gotten exuberant ctags working with Vim, and it works great, most of the time. One thing that still irks me though is whenever I try to search for a function that is name...
Teacake asked 28/10, 2011 at 17:28

5

Solved

I'm writing a .ctags file for a custom language... Like most languages, it allows for multiple variable declarations in one line.. i.e.: int a, b, c; I have a basic regex which recognizes 'a': ...
Menander asked 24/5, 2012 at 16:33

3

Solved

With cscope integrated Vim, I can navigate back using the ctrl-T and see the current tag stack position using :tags . But how do I go forward in the stack? The only thing I could find from the man ...
Sedgewinn asked 22/7, 2013 at 9:4

5

I am new to Tcl/Tk, I am using Vim to code and browsing. The syntax highlighting for Tcl/Tk is working fine. The jump into the function using Ctrl] doesnt work it gives me an message saying that "c...
Jezebel asked 18/6, 2012 at 7:34

4

Solved

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 o...
Petrel asked 10/8, 2009 at 19:31

3

Solved

I'm having a problem with jumping to a Ruby bang method using Exhuberant Ctags. I have searched for others having a similar problem and am unable to find anything. An example of the problem can be ...
Nacreous asked 5/5, 2012 at 2:21

3

Solved

I currently have a project directory like this MainProject |_ProjectA | |_src | |_file1.cpp | |_file2.cpp | |_..... | |_tags <---tag file generated here |_ProjectB | |_src | |_file3.cpp | |_fi...
Hydrops asked 23/7, 2017 at 8:59

4

Solved

What character can I use to put comments in an Exuberant Ctags .ctags file? I would like to add comments with explanations, and perhaps to disable some regexps. But I can't find any comment chara...
Outboard asked 10/6, 2012 at 23:37

6

Solved

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...
Mayday asked 1/12, 2011 at 23:6

2

Solved

I'm trying to use ctags with R. Using this answer I've added --langdef=R --langmap=r:.R.r --regex-R=/^[ \t]*"?([.A-Za-z][.A-Za-z0-9_]*)"?[ \t]*<-[ \t]function/\1/f,Functions/ --regex-R=/^"?([....
Ceroplastics asked 25/8, 2015 at 14:21

2

Solved

I'm using Vim with ctags for Python and that works very well for classes, fields, etc, but what it doesn't seem to include are Python file names aka module names. Is this possible? I'd far prefer t...
Sprite asked 28/5, 2014 at 15:23

4

Solved

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: ...
Tetrahedral asked 22/1, 2013 at 18:20

5

Solved

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 pr...
Grievance asked 17/11, 2009 at 14:32

9

Solved

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 wonde...
Lido asked 3/6, 2010 at 17:56

2

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 previou...
Urogenital asked 30/6, 2011 at 14:6

© 2022 - 2024 — McMap. All rights reserved.