ctags Questions
1
Is there anyone who knows how to generate call hierarchy graph with ctags and cscope? I need to run the commands in the terminal and redirect the output to a file, rather than do it in vim.
Yeung asked 10/10, 2011 at 16:57
0
According to the GNU Global documentation
# Installation of GLOBAL
# It assumed that ctags command is installed in '/usr/local/bin'.
$ ./configure --with-universal-ctags=/usr/local/bin/ctags
$ ma...
Beefburger asked 8/3, 2017 at 1:59
4
Solved
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 --c-ki...
Helbonnah asked 25/7, 2011 at 18:2
1
Solved
I've used Darren Hiebert’s Exuberant-ctags for a quite a while; it is an essential part of my vim toolbox. I tag python, Java and C code (I also use cscope).
Recently, I've read that I should be co...
Gallaway asked 14/1, 2017 at 17:16
4
Solved
I use the vim editor (on Ubuntu). Recently, I have been working with large cuda projects and hence would like to utilize the ctags utility for code browsing. The list of supported languages for exu...
Taddeo asked 23/4, 2012 at 9:25
1
Solved
I was trying to tag a C++ project with ctags with the options as listed in this answer C++ source tagging. I am in a project tree that contains multiple folders and those folders contain source fil...
4
Solved
I have a folder llvm2.9 in which i ran this command.
$> ctags -R --sort=1 --c++-kinds=+p --fields=+iaS --extra=+q --language-force=C++
This was indexing methods in *.html files also which wer...
7
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 Wi...
3
Solved
I've already spent two days trying to make a good work environment with VIM for a framework, in this case, laravel.
All is perfect as always, but there is a very important issue:
I can't get omn...
Delve asked 29/10, 2015 at 10:43
2
I've just download sublime text 2 beta 2182 under ubuntu 10.10 with Exuberant Ctags 5.8
I want to use it for c++ coding and I need some auto completition and code navigation. (I was used to eclips...
Dictograph asked 29/2, 2012 at 1:23
5
Solved
Exumerant Ctags does not work well with Ruby, you can see there are many hacks in the ruby.c code and basically it fails recognizing many cases. One of the most important is this bit:
class SomeMo...
3
Solved
I've already read a lot of blog posts and answers on stackoverflow, but it seems I do something wrong, because I still have the E388: Couldn't find definition error. What I did:
Download ctags fro...
Sheepskin asked 11/11, 2015 at 9:28
2
Solved
I am using ctags and I added map <C-]> :vsp <CR>:exec("tag ".expand("<cword>"))<CR> to my vimrc. However, this opens a new vertical split everytime. Is there a way to show t...
2
Solved
I'm working on a Bash script that is designed to be run 'as a tool' so has a name without an extension and a #!/usr/bin/bash line at the top.
My script has a number of functions, so it would be ni...
Balm asked 31/7, 2012 at 12:36
1
Solved
Can I list all the references of a symbol in vim using Ctags? like the 'Find References' In some GUI IDE.
The Ctag tutorial just tell how to locate the definition of a symbol ,not all the usages....
4
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 l...
2
Moops enhances the perl syntax by constructs such as:
class MyPkg::MyClass {
# ...
}
and adds the possibility to declare signatures for member functions by introducing the new keywords fun and ...
Gyre asked 4/2, 2014 at 16:40
4
Solved
In a rather large code base with a few layers is there a way in vim or from the command line to find all classes that are derived from a base class? grep is an option but can be slow since grep doe...
3
Solved
I'm coding a c++ project in vim.
I'd like to run a ctags command (ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .) to generate references when I run make.
I think the way to do it is to use ad...
1
Solved
I edit quite a few markdown files using Vim these days. One thing I'm missing is a map of the file like function list in C based on ctags. So I came up with the following .ctags file
--langdef=mar...
1
I would like to know if it is possible to use ctags to extract class usage from within Java methods. So far, I was able to only use it to get a listing of methods and instance variables but not whi...
Parcae asked 20/12, 2013 at 21:46
3
Solved
How do i reload the tags file from within Vim?
Is a restart necessary?
5
Solved
I'm new to vim and wanted to get ctags integration working so I can more easily navigate a large java project.
I've pulled down the zip from source forge and extracted it but from here I'm not sur...
Responsive asked 4/4, 2011 at 18:29
3
Solved
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 m...
Chadd asked 24/6, 2011 at 23:52
7
Solved
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 w...
© 2022 - 2024 — McMap. All rights reserved.