exuberant-ctags Questions
2
Solved
I used "Exhuberant ctags" to index all the tags from my c-project. The c-project is embedded software for a Cortex-M7 microcontroller. The result is a tags-file. I'm trying to read this file and un...
Taliesin asked 30/1, 2017 at 10:39
5
Solved
How to generate tags file for Go source
In mac, I installed exuberant ctags , and tried the below command in source directory
ctags -f gosource.tags -R `pwd`
But, it doesn't consider *.go files...
Malindamalinde asked 20/11, 2011 at 20:13
6
Solved
I have looked and tried to use exuberant ctags with no luck with what I want to do. I am on a Mac trying to work in a project where I want to exclude such directories as .git, node_modules, test, e...
Burkhardt asked 13/9, 2014 at 3:54
3
Solved
I'm working with a very large code base and I find it useful to be selective about which directories are included for use with Exuberant Ctags.
The --exclude option works well to eliminate individ...
Edwinaedwine asked 19/11, 2011 at 9:44
7
Is there any documented use of ctags with R?
Would this be useful?
Would it be difficult to implement?
Specifically, I've just started using Vim.
It would be cool to be able to write an R function ...
Raisin asked 25/1, 2011 at 14:49
0
It is possible to configure fzf in vim insert mode to do code completion? The tags are generated and setup to work with vim. In vim omni completion is working well. But omni completion doesn't have...
Procreant asked 3/1, 2021 at 6:21
5
Solved
When I type ctags -e it returns an error saying it doesn't know that command line option. I thought it should know about exuberant tags because etags works on cli.
Also, I recieve the following er...
Luciennelucier asked 5/4, 2010 at 18:45
7
Solved
This morning, I started getting that message when I attempt to open a file in Vim. Vim is my editor of choice for config files, git commit messages and the like, but is not my day to day code edito...
Adrenocorticotropic asked 17/9, 2011 at 12:39
4
Solved
The standard GNU etags does not support a recursive walk of directories as done by exuberant ctags -R. If I only have access to the GNU etags, how can I use bash shell magic to get etags to produce...
Hebetate asked 24/5, 2012 at 13:14
2
I've got a $HOME/.ctags file from exuberant-tags, but universal-tags doesn't seem to be picking up my options from it. Does universal-tags support these config files?
Kevakevan asked 7/4, 2018 at 13:16
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
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
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
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
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
2
I've got a macvim snapshot 64 downloaded from here and exuberant ctags installed via homebrew:
which ctags
/usr/local/bin/ctags
my tags variable in vim looks like this:
:echo &tags
/Users/maco...
Doddering asked 11/3, 2012 at 12:15
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
3
Solved
when using PHP namespaces the code I work on uses a large number of namespace aliases, e.g.
<?php
namespace foo;
use bar\baz\qux as bazQux;
...
$a = new bazQux();
Is it possible to configu...
Carlie asked 22/8, 2013 at 7:47
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
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
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
1 Next >
© 2022 - 2024 — McMap. All rights reserved.