blob: f3f1a49702ccdf71928ff9d91e27a65fdbed3606 [file] [log] [blame]
Bram Moolenaar4a748032010-09-30 21:47:56 +02001*if_cscop.txt* For Vim version 7.3. Last change: 2010 Sep 29
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Andy Kahn
5
6 *cscope* *Cscope*
7This document explains how to use Vim's cscope interface.
8
9Cscope is a tool like ctags, but think of it as ctags on steroids since it
10does a lot more than what ctags provides. In Vim, jumping to a result from
11a cscope query is just like jumping to any tag; it is saved on the tag stack
12so that with the right keyboard mappings, you can jump back and forth between
13functions as you normally would with |tags|.
14
151. Cscope introduction |cscope-intro|
162. Cscope related commands |cscope-commands|
173. Cscope options |cscope-options|
184. How to use cscope in Vim |cscope-howtouse|
195. Limitations |cscope-limitations|
206. Suggested usage |cscope-suggestions|
217. Availability & Information |cscope-info|
22
23This is currently for Unix and Win32 only.
24{Vi does not have any of these commands}
25
26==============================================================================
271. Cscope introduction *cscope-intro*
28
29The following text is taken from a version of the cscope man page:
30
31 -----
32
33 Cscope is an interactive screen-oriented tool that helps you:
34
35 Learn how a C program works without endless flipping through a thick
36 listing.
37
38 Locate the section of code to change to fix a bug without having to
39 learn the entire program.
40
41 Examine the effect of a proposed change such as adding a value to an
42 enum variable.
43
44 Verify that a change has been made in all source files such as adding
45 an argument to an existing function.
46
47 Rename a global variable in all source files.
48
49 Change a constant to a preprocessor symbol in selected lines of files.
50
51 It is designed to answer questions like:
52 Where is this symbol used?
53 Where is it defined?
54 Where did this variable get its value?
55 What is this global symbol's definition?
56 Where is this function in the source files?
57 What functions call this function?
58 What functions are called by this function?
59 Where does the message "out of space" come from?
60 Where is this source file in the directory structure?
61 What files include this header file?
62
63 Cscope answers these questions from a symbol database that it builds the
64 first time it is used on the source files. On a subsequent call, cscope
65 rebuilds the database only if a source file has changed or the list of
66 source files is different. When the database is rebuilt the data for the
67 unchanged files is copied from the old database, which makes rebuilding
68 much faster than the initial build.
69
70 -----
71
72When cscope is normally invoked, you will get a full-screen selection
73screen allowing you to make a query for one of the above questions.
74However, once a match is found to your query and you have entered your
75text editor to edit the source file containing match, you cannot simply
76jump from tag to tag as you normally would with vi's Ctrl-] or :tag
77command.
78
79Vim's cscope interface is done by invoking cscope with its line-oriented
80interface, and then parsing the output returned from a query. The end
81result is that cscope query results become just like regular tags, so
82you can jump to them just like you do with normal tags (Ctrl-] or :tag)
83and then go back by popping off the tagstack with Ctrl-T. (Please note
84however, that you don't actually jump to a cscope tag simply by doing
85Ctrl-] or :tag without remapping these commands or setting an option.
86See the remaining sections on how the cscope interface works and for
87suggested use.)
88
89
90==============================================================================
912. Cscope related commands *cscope-commands*
92
93 *:cscope* *:cs* *:scs* *:scscope* *E259* *E262* *E561* *E560*
94All cscope commands are accessed through suboptions to the main cscope
95command ":cscope". The shortest abbreviation is ":cs". The ":scscope"
96command does the same and also splits the window (short: "scs").
97
98The available subcommands are:
99
100 *E563* *E564* *E566* *E568* *E569* *E622* *E623*
101 *E625* *E626* *E609*
102 add : Add a new cscope database/connection.
103
104 USAGE :cs add {file|dir} [pre-path] [flags]
105
106 [pre-path] is the pathname used with the -P command to cscope.
107
108 [flags] are any additional flags you want to pass to cscope.
109
110 EXAMPLES >
111 :cscope add /usr/local/cdb/cscope.out
112 :cscope add /projects/vim/cscope.out /usr/local/vim
113 :cscope add cscope.out /usr/local/vim -C
114<
Bram Moolenaar4a748032010-09-30 21:47:56 +0200115 *cscope-find* *cs-find* *E567*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 find : Query cscope. All cscope query options are available
117 except option #5 ("Change this grep pattern").
118
119 USAGE :cs find {querytype} {name}
120
121 {querytype} corresponds to the actual cscope line
122 interface numbers as well as default nvi commands:
123
124 0 or s: Find this C symbol
125 1 or g: Find this definition
126 2 or d: Find functions called by this function
127 3 or c: Find functions calling this function
128 4 or t: Find this text string
129 6 or e: Find this egrep pattern
130 7 or f: Find this file
131 8 or i: Find files #including this file
132
Bram Moolenaar80b6a0e2009-03-18 13:32:24 +0000133 For all types, except 4 and 6, leading white space for {name} is
134 removed. For 4 and 6 there is exactly one space between {querytype}
135 and {name}. Further white space is included in {name}.
136
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 EXAMPLES >
138 :cscope find c vim_free
Bram Moolenaar80b6a0e2009-03-18 13:32:24 +0000139 :cscope find 3 vim_free
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140<
Bram Moolenaar80b6a0e2009-03-18 13:32:24 +0000141 These two examples perform the same query: functions calling
142 "vim_free". >
143
144 :cscope find t initOnce
145 :cscope find t initOnce
146<
147 The first one searches for the text "initOnce", the second one for
148 " initOnce". >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
150 :cscope find 0 DEFAULT_TERM
151<
152 Executing this example on the source code for Vim 5.1 produces the
153 following output:
154
155 Cscope tag: DEFAULT_TERM
156 # line filename / context / line
157 1 1009 vim-5.1-gtk/src/term.c <<GLOBAL>>
158 #define DEFAULT_TERM (char_u *)"amiga"
159 2 1013 vim-5.1-gtk/src/term.c <<GLOBAL>>
160 #define DEFAULT_TERM (char_u *)"win32"
161 3 1017 vim-5.1-gtk/src/term.c <<GLOBAL>>
162 #define DEFAULT_TERM (char_u *)"pcterm"
163 4 1021 vim-5.1-gtk/src/term.c <<GLOBAL>>
164 #define DEFAULT_TERM (char_u *)"ansi"
165 5 1025 vim-5.1-gtk/src/term.c <<GLOBAL>>
166 #define DEFAULT_TERM (char_u *)"vt52"
167 6 1029 vim-5.1-gtk/src/term.c <<GLOBAL>>
168 #define DEFAULT_TERM (char_u *)"os2ansi"
169 7 1033 vim-5.1-gtk/src/term.c <<GLOBAL>>
170 #define DEFAULT_TERM (char_u *)"ansi"
171 8 1037 vim-5.1-gtk/src/term.c <<GLOBAL>>
172 # undef DEFAULT_TERM
173 9 1038 vim-5.1-gtk/src/term.c <<GLOBAL>>
174 #define DEFAULT_TERM (char_u *)"beos-ansi"
175 10 1042 vim-5.1-gtk/src/term.c <<GLOBAL>>
176 #define DEFAULT_TERM (char_u *)"mac-ansi"
177 11 1335 vim-5.1-gtk/src/term.c <<set_termname>>
178 term = DEFAULT_TERM;
179 12 1459 vim-5.1-gtk/src/term.c <<set_termname>>
180 if (STRCMP(term, DEFAULT_TERM))
181 13 1826 vim-5.1-gtk/src/term.c <<termcapinit>>
182 term = DEFAULT_TERM;
183 14 1833 vim-5.1-gtk/src/term.c <<termcapinit>>
184 term = DEFAULT_TERM;
185 15 3635 vim-5.1-gtk/src/term.c <<update_tcap>>
186 p = find_builtin_term(DEFAULT_TERM);
187 Enter nr of choice (<CR> to abort):
188
189 The output shows several pieces of information:
190 1. The tag number (there are 15 in this example).
191 2. The line number where the tag occurs.
192 3. The filename where the tag occurs.
193 4. The context of the tag (e.g., global, or the function name).
194 5. The line from the file itself.
195
196 help : Show a brief synopsis.
197
198 USAGE :cs help
199
Bram Moolenaar4a748032010-09-30 21:47:56 +0200200 *E261*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 kill : Kill a cscope connection (or kill all cscope connections).
202
203 USAGE :cs kill {num|partial_name}
204
205 To kill a cscope connection, the connection number or a partial
206 name must be specified. The partial name is simply any part of
207 the pathname of the cscope database. Kill a cscope connection
208 using the partial name with caution!
209
210 If the specified connection number is -1, then _ALL_ cscope
211 connections will be killed.
212
213 reset : Reinit all cscope connections.
214
215 USAGE :cs reset
216
217 show : Show cscope connections.
218
219 USAGE :cs show
220
Bram Moolenaarc7453f52006-02-10 23:20:28 +0000221 *:lcscope* *:lcs*
222This command is same as the ":cscope" command, except when the
223'cscopequickfix' option is set, the location list for the current window is
224used instead of the quickfix list to show the cscope results.
225
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 *:cstag* *E257* *E562*
227If you use cscope as well as ctags, |:cstag| allows you to search one or
228the other before making a jump. For example, you can choose to first
229search your cscope database(s) for a match, and if one is not found, then
230your tags file(s) will be searched. The order in which this happens
231is determined by the value of |csto|. See |cscope-options| for more
232details.
233
234|:cstag| performs the equivalent of ":cs find g" on the identifier when
235searching through the cscope database(s).
236
237|:cstag| performs the equivalent of |:tjump| on the identifier when searching
238through your tags file(s).
239
240
241==============================================================================
2423. Cscope options *cscope-options*
243
244Use the |:set| command to set all cscope options. Ideally, you would do
245this in one of your startup files (e.g., .vimrc). Some cscope related
246variables are only valid within |.vimrc|. Setting them after vim has
247started will have no effect!
248
249 *cscopeprg* *csprg*
250'cscopeprg' specifies the command to execute cscope. The default is
251"cscope". For example: >
252 :set csprg=/usr/local/bin/cscope
253<
254 *cscopequickfix* *csqf* *E469*
255{not available when compiled without the |+quickfix| feature}
256'cscopequickfix' specifies whether to use quickfix window to show cscope
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000257results. This is a list of comma-separated values. Each item consists of
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258|cscope-find| command (s, g, d, c, t, e, f or i) and flag (+, - or 0).
259'+' indicates that results must be appended to quickfix window,
260'-' implies previous results clearance, '0' or command absence - don't use
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000261quickfix. Search is performed from start until first command occurrence.
262The default value is "" (don't use quickfix anyway). The following value
Bram Moolenaar009b2592004-10-24 19:18:58 +0000263seems to be useful: >
264 :set cscopequickfix=s-,c-,d-,i-,t-,e-
265<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266 *cscopetag* *cst*
267If 'cscopetag' set, the commands ":tag" and CTRL-] as well as "vim -t" will
268always use |:cstag| instead of the default :tag behavior. Effectively, by
269setting 'cst', you will always search your cscope databases as well as your
270tag files. The default is off. Examples: >
271 :set cst
272 :set nocst
273<
Bram Moolenaar2f982e42011-06-12 20:42:22 +0200274 *cscoperelative* *csre*
275If 'cscoperelative' set, then in absence of a prefix given to cscope (prefx
276is the argument to -P option of cscope), basename of cscope.out location
277(usually the project root directory) will be used as the prefix to construt
278absolute path.The default is off. Note: This option is only effective when
279cscope (cscopeprg) is initialized without a prefix path (-P). Examples: >
280 :set csre
281 :set nocsre
282<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 *cscopetagorder* *csto*
284The value of 'csto' determines the order in which |:cstag| performs a search.
285If 'csto' is set to zero, cscope database(s) are searched first, followed
286by tag file(s) if cscope did not return any matches. If 'csto' is set to
287one, tag file(s) are searched before cscope database(s). The default is zero.
288Examples: >
289 :set csto=0
290 :set csto=1
291<
292 *cscopeverbose* *csverb*
293If 'cscopeverbose' is not set (the default), messages will not be printed
294indicating success or failure when adding a cscope database. Ideally, you
295should reset this option in your |.vimrc| before adding any cscope databases,
296and after adding them, set it. From then on, when you add more databases
297within Vim, you will get a (hopefully) useful message should the database fail
298to be added. Examples: >
299 :set csverb
300 :set nocsverb
301<
302 *cscopepathcomp* *cspc*
303The value of 'cspc' determines how many components of a file's path to
304display. With the default value of zero the entire path will be displayed.
305The value one will display only the filename with no path. Other values
306display that many components. For example: >
307 :set cspc=3
308will display the last 3 components of the file's path, including the file
309name itself.
310
311==============================================================================
3124. How to use cscope in Vim *cscope-howtouse*
313
314The first thing you need to do is to build a cscope database for your
315source files. For the most basic case, simply do "cscope -b". Please
316refer to the cscope man page for more details.
317
318Assuming you have a cscope database, you need to "add" the database to Vim.
319This establishes a cscope "connection" and makes it available for Vim to use.
320You can do this in your .vimrc file, or you can do it manually after starting
321vim. For example, to add the cscope database "cscope.out", you would do:
322
323 :cs add cscope.out
324
325You can double-check the result of this by executing ":cs show". This will
326produce output which looks like this:
327
328 # pid database name prepend path
329 0 28806 cscope.out <none>
330
331Note:
332Because of the Microsoft RTL limitations, Win32 version shows 0 instead
333of the real pid.
334
335Once a cscope connection is established, you can make queries to cscope and
336the results will be printed to you. Queries are made using the command
337":cs find". For example:
338
339 :cs find g ALIGN_SIZE
340
341This can get a little cumbersome since one ends up doing a significant
342amount of typing. Fortunately, there are ways around this by mapping
343shortcut keys. See |cscope-suggestions| for suggested usage.
344
345If the results return only one match, you will automatically be taken to it.
346If there is more than one match, you will be given a selection screen to pick
347the match you want to go to. After you have jumped to the new location,
348simply hit Ctrl-T to get back to the previous one.
349
350
351==============================================================================
3525. Limitations *cscope-limitations*
353
354Cscope support for Vim is only available on systems that support these four
355system calls: fork(), pipe(), execl(), waitpid(). This means it is mostly
356limited to Unix systems.
357
358Additionally Cscope support works for Win32. For more information and a
359cscope version for Win32 see:
360
361 http://iamphet.nm.ru/cscope/index.html
362
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000363The DJGPP-built version from http://cscope.sourceforge.net is known to not
364work with Vim.
365
Bram Moolenaar9fa49da2009-07-10 13:11:26 +0000366Hard-coded limitation: doing a |:tjump| when |:cstag| searches the tag files
367is not configurable (e.g., you can't do a tselect instead).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368
369==============================================================================
3706. Suggested usage *cscope-suggestions*
371
372Put these entries in your .vimrc (adjust the pathname accordingly to your
373setup): >
374
375 if has("cscope")
376 set csprg=/usr/local/bin/cscope
377 set csto=0
378 set cst
379 set nocsverb
380 " add any database in current directory
381 if filereadable("cscope.out")
382 cs add cscope.out
383 " else add database pointed to by environment
384 elseif $CSCOPE_DB != ""
385 cs add $CSCOPE_DB
386 endif
387 set csverb
388 endif
389
390By setting 'cscopetag', we have effectively replaced all instances of the :tag
391command with :cstag. This includes :tag, Ctrl-], and "vim -t". In doing
392this, the regular tag command not only searches your ctags generated tag
393files, but your cscope databases as well.
394
395Some users may want to keep the regular tag behavior and have a different
396shortcut to access :cstag. For example, one could map Ctrl-_ (underscore)
397to :cstag with the following command: >
398
399 map <C-_> :cstag <C-R>=expand("<cword>")<CR><CR>
400
401A couple of very commonly used cscope queries (using ":cs find") is to
402find all functions calling a certain function and to find all occurrences
403of a particular C symbol. To do this, you can use these mappings as an
404example: >
405
406 map g<C-]> :cs find 3 <C-R>=expand("<cword>")<CR><CR>
407 map g<C-\> :cs find 0 <C-R>=expand("<cword>")<CR><CR>
408
409These mappings for Ctrl-] (right bracket) and Ctrl-\ (backslash) allow you to
410place your cursor over the function name or C symbol and quickly query cscope
411for any matches.
412
413Or you may use the following scheme, inspired by Vim/Cscope tutorial from
414Cscope Home Page (http://cscope.sourceforge.net/): >
415
416 nmap <C-_>s :cs find s <C-R>=expand("<cword>")<CR><CR>
417 nmap <C-_>g :cs find g <C-R>=expand("<cword>")<CR><CR>
418 nmap <C-_>c :cs find c <C-R>=expand("<cword>")<CR><CR>
419 nmap <C-_>t :cs find t <C-R>=expand("<cword>")<CR><CR>
420 nmap <C-_>e :cs find e <C-R>=expand("<cword>")<CR><CR>
421 nmap <C-_>f :cs find f <C-R>=expand("<cfile>")<CR><CR>
422 nmap <C-_>i :cs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
423 nmap <C-_>d :cs find d <C-R>=expand("<cword>")<CR><CR>
424
425 " Using 'CTRL-spacebar' then a search type makes the vim window
426 " split horizontally, with search result displayed in
427 " the new window.
428
429 nmap <C-Space>s :scs find s <C-R>=expand("<cword>")<CR><CR>
430 nmap <C-Space>g :scs find g <C-R>=expand("<cword>")<CR><CR>
431 nmap <C-Space>c :scs find c <C-R>=expand("<cword>")<CR><CR>
432 nmap <C-Space>t :scs find t <C-R>=expand("<cword>")<CR><CR>
433 nmap <C-Space>e :scs find e <C-R>=expand("<cword>")<CR><CR>
434 nmap <C-Space>f :scs find f <C-R>=expand("<cfile>")<CR><CR>
435 nmap <C-Space>i :scs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
436 nmap <C-Space>d :scs find d <C-R>=expand("<cword>")<CR><CR>
437
438 " Hitting CTRL-space *twice* before the search type does a vertical
439 " split instead of a horizontal one
440
441 nmap <C-Space><C-Space>s
442 \:vert scs find s <C-R>=expand("<cword>")<CR><CR>
443 nmap <C-Space><C-Space>g
444 \:vert scs find g <C-R>=expand("<cword>")<CR><CR>
445 nmap <C-Space><C-Space>c
446 \:vert scs find c <C-R>=expand("<cword>")<CR><CR>
447 nmap <C-Space><C-Space>t
448 \:vert scs find t <C-R>=expand("<cword>")<CR><CR>
449 nmap <C-Space><C-Space>e
450 \:vert scs find e <C-R>=expand("<cword>")<CR><CR>
451 nmap <C-Space><C-Space>i
452 \:vert scs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
453 nmap <C-Space><C-Space>d
454 \:vert scs find d <C-R>=expand("<cword>")<CR><CR>
455
456==============================================================================
4577. Cscope availability and information *cscope-info*
458
459If you do not already have cscope (it did not come with your compiler
460license or OS distribution), then you can download it for free from:
461 http://cscope.sourceforge.net/
462This is released by SCO under the BSD license.
463
464If you want a newer version of cscope, you will probably have to buy it.
465According to the (old) nvi documentation:
466
467 You can buy version 13.3 source with an unrestricted license
468 for $400 from AT&T Software Solutions by calling +1-800-462-8146.
469
470Also you can download cscope 13.x and mlcscope 14.x (multi-lingual cscope
471which supports C, C++, Java, lex, yacc, breakpoint listing, Ingres, and SDL)
472from World-Wide Exptools Open Source packages page:
473 http://www.bell-labs.com/project/wwexptools/packages.html
474
475In Solaris 2.x, if you have the C compiler license, you will also have
476cscope. Both are usually located under /opt/SUNWspro/bin
477
478SGI developers can also get it. Search for Cscope on this page:
479 http://freeware.sgi.com/index-by-alpha.html
480 https://toolbox.sgi.com/toolbox/utilities/cscope/
481The second one is for those who have a password for the SGI toolbox.
482
483There is source to an older version of a cscope clone (called "cs") available
484on the net. Due to various reasons, this is not supported with Vim.
485
486The cscope interface/support for Vim was originally written by
487Andy Kahn <ackahn@netapp.com>. The original structure (as well as a tiny
488bit of code) was adapted from the cscope interface in nvi. Please report
489any problems, suggestions, patches, et al., you have for the usage of
490cscope within Vim to him.
491 *cscope-win32*
Bram Moolenaar8ae39d82009-09-11 09:30:34 +0000492For a cscope version for Win32 see:
493 http://code.google.com/p/cscope-win32/
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000495Win32 support was added by Sergey Khorev <sergey.khorev@gmail.com>. Contact
Bram Moolenaarb23c3382005-01-31 19:09:12 +0000496him if you have Win32-specific issues.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497
498 vim:tw=78:ts=8:ft=help:norl: