ctags Questions
1
Solved
I am trying to setup doctorjs on my windows machine, to work with vim's tagbar, but I think this may be a node.js question more than anything else. I'm following this tutorial. Even after I set my ...
3
Solved
I have my projects in /srv/http/dev folder. I generated ctags file for one project:
$ ctags -R --languages=php .
Now I set ctags path:
:set tags=/srv/http/dev/proj/tags
And it's working fine....
1
Solved
I'm using ctags to create a tags file for use in Vim, so that I can jump to definitions of labels and citations. However, I have two problems:
ctags includes \ref in the tags file, so when I hit ...
1
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...
1
Solved
I am trying to create a target in my Makefile to automatically create a tags file using ctags.
I have a list of source files (.cpp files) but I don't have a list of all the header files (I use g++...
1
in vim,
when i press ctrl-]
1) the usual behavior:
it goes to the first matching tag with the word under the cursor,
after that we need to do :tjump separately to see a list of all matching tags a...
2
Solved
Is it possible to generate a ctags file for CoffeeScript in vim/MacVim?
Alvardo asked 17/5, 2011 at 13:54
1
Solved
Please see output from my terminal session
sharpair:~$ /usr/bin/ctags
usage: ctags [-BFadtuwvx] [-f tagsfile] file ...
sharpair:~$ /usr/local/bin/ctags
ctags: No files specified. Try "ctags --help...
4
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...
15
Solved
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......
Backstay asked 19/2, 2009 at 1:37
6
Solved
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 ever-pop...
Coxalgia asked 24/11, 2009 at 14:59
4
Solved
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(){ }
}
...
Inertia asked 18/12, 2010 at 8:34
2
Solved
I know that Vim has sophisticated support for tags but I am struggling to get them to work with JavaScript and TCL.
I am using Vim 7.2.330 under Ubuntu Lucid, a standard Vim install and standard E...
Arkansas asked 20/1, 2011 at 11:28
3
Is it possible to index a plain text file (a book) in vim such as :
1. This line contains the words : London, Berlin, Paris
2. In this line, I write about : New-York, London, Berlin
...
100. And, ...
2
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...
1
Solved
I used to use ctags to generate a tags file for all installed python libraries by this command:
C:\Windows\System32>ctags -R -f d:\home\vimfiles\python.ctags d:\Python26
But this morning, aft...
5
Solved
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...
2
Solved
Using exuberant-ctags 5.8 for gcc 4.4.3 c89
I am just started using exuberant-ctags and I am just wondering what options do you add.
Here is a list and I am just wondering added too many could it...
Pancreatin asked 7/9, 2010 at 4:21
2
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 <st...
Choosey asked 16/5, 2010 at 8:53
3
Solved
I am using ctags to create tags for my Emacs to read symbols from, using cygwin.
Emacs says "visit-tags-table-buffer: File /home/superman/tags is not a valid tags table"
here are my options to fi...
3
Solved
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 an...
Geanticline asked 13/4, 2009 at 22:5
2
Solved
I am using "ExuberantCtags" also known as "ctags -e", also known as just "etags"
and I am trying to understand the TAGS file format which is generated by the etags command, in particular I want to...
3
Solved
I'm a big fan of ctags, but sometimes it is hard to use it.
In case when I have a few declaration of the functions with the same name - "ctrl + ]" throws you to the first occurrence - which is not...
4
Solved
While using Vim I'll sometimes want to look at a function definition or a struct definition, so I'll use C-] to jump to it. However, there are a few problems I run into. First off, I don't know how...
© 2022 - 2024 — McMap. All rights reserved.