Tagged Questions

cscope is a code searching application originally written for searching C code bases. cscope is useful for searching many other code bases as well: C++, Java, Python, etc.

learn more… | top users | synonyms

40
votes
3answers
13k views

cscope or ctags why choose one over the other?

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 ever ...
14
votes
2answers
958 views

VIM: More precise C/C++ code parsing solutions?

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 ...
7
votes
1answer
1k views

Emacs/CEDET. Multiple projects and code completion

I've setup emacs 23.1.50.1 with CEDET 1.0 and ECB 2.40 (heavily inspired by Alex Otts setup at http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el and his gentle introduction to ...
7
votes
2answers
535 views

emacs intellisense

I know this has been discussed a lot of times but is there any nice how-to for c/c++ intellisense in emacs? I have never been able to set up cedet properly. Right now I am working on a maintenance ...
7
votes
4answers
1k views

Generate Call-Tree from cscope database

I want to generate Full and Partially Call Trees from cscope database of c and c++ projects in Linux. The project is rather large, so it can be not easy to work with the full call tree of project, so ...
7
votes
2answers
1k views

Pin Emacs buffers to windows (for cscope)

For my day job, I live in Emacs. Utterly. I also have become pretty dependent on CScope to help me find things in the code. Normally, I have 2 windows in a split (C-x 3): And I use the right ...
6
votes
4answers
2k views

Alternatives to Ctags/Cscope with Objective-c?

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 ...
6
votes
2answers
410 views

What cscope reference card do you use?

What is the standard/best reference card for cscope shortcuts/usage that I can print for quick reference?
6
votes
1answer
1k views

scope vs ctags in terms of features

I am a big fan of ctags Hence I am wondering if I have cscope, will I benefit more there two programs. Seems like the latter has the same features as ctags, namely, facilitating the finding of ...
5
votes
2answers
173 views

VIM - More accurate alternative/workaround to ctags/Cscope for PHP?

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 ...
5
votes
5answers
2k views

OSX: Environment variables pointing to application bundles?

I want cscope to open files in MacVim instead of vim, so I'm trying to have the path to MacVim as the Value of the EDITOR environment variable which is used by cscope: $ export ...
4
votes
1answer
297 views

How to put cscope output in Vim quickfix window?

I want to redirect output from cscope to Vim quickfix window. The glue part is easy enough, but I currently stuck at errorformat. Here's an example from cscope output (cscope -L -1 bar): Format: ...
4
votes
2answers
186 views

How to find struct member uses with cscope?

I'm using cscope for a large project with vim, but without the vim mappings (they froze vim for some weird reason). I'm using cscope commands from within vim, and I want to be able to find uses of ...
4
votes
3answers
2k views

Using cscope to browse Python code with VIM?

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 ...
4
votes
1answer
634 views

How can I solve this cscope problem?

I always use vim+cscope to check sysmbol definition, and I find cscope always take declaration like: struct sk_buff; as a defintiion, which make vim always show a long list files to choose, always ...
4
votes
2answers
2k views

ctags best practicies

I'm working on +1M LOC C/C++ project on Solaris (remote, via VNC or SSH). I have a daily updated copy of source code on my local machine too (Windows, just for browsing code). I use VIM and ctags ...
3
votes
2answers
529 views

update cscope db from vim

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 in ...
3
votes
1answer
252 views

How to make Emacs always open .c files in the left windows while .h in the right?

I always open three windows when writing C code like this: | | 2 1 |_____ | | 3 | Window 1 is used for code writing, window 2 is used for cscope, and ...
3
votes
4answers
1k views

Non-GUI Emacs with cscope

So, i'm running emacs over a crappy ssh connection and I have it set up to use cscope. I can not use X because of this...hence I'm running emacs inside putty. However, when I search for something with ...
2
votes
2answers
57 views

Key bindings for a repetitive action in VIM editor

I use Vim + Cscope for coding in a large repository. With the integration of cscope in Vim, say to find the definition of variable, i have to type ":cs f g " on vi's command line. Is there a easy ...
2
votes
1answer
84 views

how can I use cscope under windows gvim perfectly

Here's my question, I'm trying to use gvim under windows, and I am using cscope to walk through my code, but, when I init the cscope database under vim, there's always a problem. my code's root ...
2
votes
4answers
107 views

Tool to list callers of a function in C?

Background: In a particular project there are about couple of thousand functions in more than hundred files. The functions are divided to reside in two banks of code memory - fast_mem and slow_mem. ...
2
votes
1answer
31 views

Use CSCOPE to search other type of files

Is it possible to include other type of file in the search result(e.g find the value of CFLAG in the makefile)? Thanks.
2
votes
1answer
228 views

Better control over where windows with cscope buffers in Emacs

Emacs is my editor of choice, and I use the cscope intergration xcscope.el provides. Recently I had a flirt with Vim. I decided to stay with Emacs, but one of the things I really liked in Vim was how ...
2
votes
1answer
160 views

ctags: prevent jump to first result for ctrl + ]

I wanted to prevent jumping to the first result without user intervention upon ctrl +] (or left click) in vim. In effect, when I click (ctrl +]) on an identifier, it should list all the occurance ...
2
votes
1answer
250 views

Source code breadcrumbs in Vim

Eclipse has a "breadcrumbs" feature: a little bar that shows which part of the code tree you are now in, e.g. src/java/main > org.foo.bar > AbstractFactoryFactory > InnerDefaultFactory > ...
2
votes
1answer
2k views

cscope like functionality for C++ (using vim)

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 a ...
2
votes
2answers
410 views

Cscope problem - Search results invisible

I am facing a weird problem. While browsing the C code of a project, the "Find this text string:" output results in a positive match, but the text is invisible [only the search results are invisible ...
1
vote
2answers
66 views

Does cscope support history list recording?

I use < C-\ >C to get the callers of one function, then I can press one number to jump to one caller. But if I want to jump to another caller, I had to press < C-T> to jump back, and press < ...
1
vote
2answers
121 views

How to filter cscope output within vim

I am looking for a way to grep the output of cscope queries from vim. The following didn't work for me: :cs f s symbol !grep pattern (E259: no matches found for cscope query s symbol !grep pattern ...
1
vote
1answer
46 views

extracting x86 related files from kernel source code

was trying to create a cscope index for x86 kernel source files only. Can any of you help me with this. Need to know what files may be needed to work with just x86 source code. tried differrent ways ...
1
vote
1answer
195 views

Are there any faster cscope alternatives?

I've been a cscope+vim user for ages but cscope is sort of unwieldy for large projects (more than 50K files). Features I'm looking for: Dynamic index update: I don't want to rebuild the index every ...
1
vote
1answer
76 views

cscope+vim: context dependent order in the list of definitions

I'm learning scheduling code in FreeBSD kernel and navigating through the source code using Vim's cscope plugin. In general it works fine, but there is one really inconvenient thing - in case there ...
1
vote
1answer
102 views

how to parse a cscope's database

Is there any way I can parse the cscope's database? I'm using windows, and I can't find any article about the data format of cscope's database, every article is about VIM or EMacs.
1
vote
0answers
185 views

vim cannot connect to cscope database

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. ...
1
vote
1answer
111 views

How to search the tags file and load it automatically when vim start up

Vim is my favorite editor, when I open a php or python file in vim, the first command is: set tags=../../../tags or set tags=../../tags I think vim can do this automatically: first search ...
1
vote
1answer
99 views

How to se the cscope database directory in emacs?

I use cscope with emacs, and it works well, but it creates cscope.out and cscope.files in the root directory. My project is configure so that only the "/private" directory is ignored by SVN. How can ...
1
vote
1answer
409 views

VIM 7 and cscope: Using “cscope find f” inside a keyboard mapping for switching between files

I usually hop between files on my cscope-indexed codebase by using :cscope find f <filename> I'm trying to define a keyboard shortcut to prevent me having to type ":cscope find f" everytime. ...
1
vote
1answer
269 views

Vim script to switch between header and implementation file using cscope

I currently use the A.vim plugin to swap between header and implementation file. The limitation of this script is that it only works if both are in the same folder. If you have a cscope database for ...
1
vote
0answers
84 views

cscope: Generate only one symbol using #ifdef

I have C source code which have lots of #ifdef ANSI macro. For example, #ifdef ANSI int test ( int a ) #else int test(a) int a; #endif So If I use cscope+vim with the above source code to ...
1
vote
1answer
551 views

How to search in vim cscope result window

When we use cscope to go to definition of a symbol in vim, lots of candidates may be shown in result window. I'd like to perform searching within the window to find what I need quickly. But search ...
1
vote
2answers
304 views

Forcing gvim to open all files in the same window (using gvim with cscope)

I was wondering if anyone knew of way of making gvim to default to the behavior of opening all files opened by gvim into the same gvim instance. I know there are parameters that could be sent to it ...
1
vote
1answer
272 views

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 ...
1
vote
2answers
1k views

How to use cscope?

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 ...
1
vote
2answers
208 views

How to use cscope in Visual Studio?

I am working with Visual Studio (2008 edition) for the first time. Used to programming in a Unix environment, I have become quite used to cscope and vim. For my current project, I really need cscope. ...
1
vote
2answers
171 views

cscope menu without recreating the database?

I usually create the cscope database with the command, cscope -bqRv But at times, I just want to access the cscope menu usually got by running, cscope -R This needlessly recreates the cscope ...
1
vote
1answer
385 views

Cscope egrep speedup

I use cscope in vim to search for stuff in a large codebase. I find the "cs f e" option too slow. Anyway tips speed it up. I build my cscope database using cscope -bq
1
vote
3answers
806 views

How to setup cscope with aquamacs on MacOS?

Can you please tell me how can I setup cscope with aquamacs on MacOS? I have followed a link from Google saying how to build a cscope database for my source code. But how can I invoke cscope with ...
0
votes
0answers
37 views

Using cscope with VIM: adding database returns errno 75

I've got a pretty large cscope.out database (over 2GB) and an inverted index of over 1GB, and when I issue the command :cscope add "path to database", I get the following error: E563: stat("path to ...
0
votes
1answer
59 views

Vim's cscope connection breaks on every GNU screen reattach

I run vim with cscope in my C development environment. I start vim within a GNU screen window on a freebsd 6.3 server and establish the cscope db connection with cs add .... At this stage everything ...

1 2