cscope Questions
3
Solved
Is there any utility or plugin which provides cscope like functionality for C++. I am looking for
all references to a symbol
global definitions
functions called by a function
functions calling...
6
I am using vim 7.4. cscope output in vim is all white. can it be made more colorful?
I tried cecscope, which uses quickfix to bring color to vim. But the output of it is not small-screen friendly. ...
6
6
Solved
Has anyone managed successfully using cscope with Python code? I have VIM 7.2 and the latest version of cscope installed, however it doesn't get my code's tags correctly (always off by a couple of ...
2
Solved
I've source code of a huge project in one directory (/my/src/) and I want the cscope files to be built in some other directory (/my/db/). How can I do that ?
4
Solved
Vi + Cscope: using "cscope find c function" in vim, finds multiple results, how to go next
When I used this command to search functions who call this function, if there are more than one result, only the first one showed in the buffer, how do I go to the next one with a vi command or sho...
4
I have a cmake project. I want to do the following easily
search the declaration, definition and references of any variable, function, etc. under the cursor, which may be declared in an external ...
4
Solved
I primarily use vim / gvim as an editor and am looking at using a combination of lxr (the Linux Cross Reference) and either cscope or ctags for exploring the kernel source. However, I haven't...
6
5
Solved
I use cscope with vim.
When doing large edits for several files, cscope will report old line numbers for changed files.
How can I rebuild cscope db from vim without losing
opened tabs/windowses...
3
Solved
I am using cscope to get familiar with all the keywords used in socket programming. I went to the directory with c files. I used cscope. and then I searched for AF_INET. I got this:
#define AF_FILE...
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...
2
I am using screens for coding using vim and cscope. when I leave the code for about 5 min (I mean go out for coffee etc) and start again. I can't use cscope again. I will get errors like:
E262: e...
Hydro asked 30/12, 2011 at 14:28
2
Solved
All the cscope tutorials I found online talk about how to use the interactive mode of cscope to search for symbols in editors such as vim and emacs. But I think it should be possible to issue a com...
5
Solved
I am working on a project which requires the understanding of llvm compiler source-code. To browse source code of llvm, I tried to use cscope with following command in the root directory of the sou...
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
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...
4
Solved
When I generate Linux kernel cscope database by issuing make cscope I get database file along with a list of files with relative path. This is a problem for me because later on when I attach that e...
Lorenzalorenzana asked 8/4, 2014 at 13:16
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
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
6
Everytime after load a cscope.out in Vim, I need to change Vim's "pwd" to the same directory as cscope.out file is under, which might be due to that cscope use relative path when generating tag fil...
5
Solved
I work on C++ projects, and I went through Alex Ott's guide to CEDET and other threads about tags in StackOverflow, but I am still confused about how Emacs interfaces with these different tag syste...
Equanimous asked 16/10, 2012 at 19:59
1
I know source insight can show multilayer function relationship in one window.
For example, we have four functions as below
void example_A()
{
example_B();
}
void example_B()
{
example_C();
}
...
1
cscope opens my files in vi. Is there a way to change it so that it opens files in vim instead ?
Edit: I tried:
export CSCOPE_EDITOR=vim
For some weird reason, if I type :help on the file open...
1
Solved
I am trying to find a way to dump ALL the functions name and it's path from cscope database. Is there a way to do that from cscope CLI?
Note: the cscope source code is available for download.
Odaodab asked 20/5, 2014 at 17:44
1 Next >
© 2022 - 2024 — McMap. All rights reserved.