blob: 7754f209d4289027e1cba49770594338e869b1bf [file] [log] [blame]
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00001*if_cscop.txt* For Vim version 7.0aa. Last change: 2004 Jul 23
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<
115 *cscope-find* *cs-find*
116 *E565* *E567*
117 find : Query cscope. All cscope query options are available
118 except option #5 ("Change this grep pattern").
119
120 USAGE :cs find {querytype} {name}
121
122 {querytype} corresponds to the actual cscope line
123 interface numbers as well as default nvi commands:
124
125 0 or s: Find this C symbol
126 1 or g: Find this definition
127 2 or d: Find functions called by this function
128 3 or c: Find functions calling this function
129 4 or t: Find this text string
130 6 or e: Find this egrep pattern
131 7 or f: Find this file
132 8 or i: Find files #including this file
133
134 EXAMPLES >
135 :cscope find c vim_free
136 :cscope find 3 vim_free
137<
138 These two examples perform the same query. >
139
140 :cscope find 0 DEFAULT_TERM
141<
142 Executing this example on the source code for Vim 5.1 produces the
143 following output:
144
145 Cscope tag: DEFAULT_TERM
146 # line filename / context / line
147 1 1009 vim-5.1-gtk/src/term.c <<GLOBAL>>
148 #define DEFAULT_TERM (char_u *)"amiga"
149 2 1013 vim-5.1-gtk/src/term.c <<GLOBAL>>
150 #define DEFAULT_TERM (char_u *)"win32"
151 3 1017 vim-5.1-gtk/src/term.c <<GLOBAL>>
152 #define DEFAULT_TERM (char_u *)"pcterm"
153 4 1021 vim-5.1-gtk/src/term.c <<GLOBAL>>
154 #define DEFAULT_TERM (char_u *)"ansi"
155 5 1025 vim-5.1-gtk/src/term.c <<GLOBAL>>
156 #define DEFAULT_TERM (char_u *)"vt52"
157 6 1029 vim-5.1-gtk/src/term.c <<GLOBAL>>
158 #define DEFAULT_TERM (char_u *)"os2ansi"
159 7 1033 vim-5.1-gtk/src/term.c <<GLOBAL>>
160 #define DEFAULT_TERM (char_u *)"ansi"
161 8 1037 vim-5.1-gtk/src/term.c <<GLOBAL>>
162 # undef DEFAULT_TERM
163 9 1038 vim-5.1-gtk/src/term.c <<GLOBAL>>
164 #define DEFAULT_TERM (char_u *)"beos-ansi"
165 10 1042 vim-5.1-gtk/src/term.c <<GLOBAL>>
166 #define DEFAULT_TERM (char_u *)"mac-ansi"
167 11 1335 vim-5.1-gtk/src/term.c <<set_termname>>
168 term = DEFAULT_TERM;
169 12 1459 vim-5.1-gtk/src/term.c <<set_termname>>
170 if (STRCMP(term, DEFAULT_TERM))
171 13 1826 vim-5.1-gtk/src/term.c <<termcapinit>>
172 term = DEFAULT_TERM;
173 14 1833 vim-5.1-gtk/src/term.c <<termcapinit>>
174 term = DEFAULT_TERM;
175 15 3635 vim-5.1-gtk/src/term.c <<update_tcap>>
176 p = find_builtin_term(DEFAULT_TERM);
177 Enter nr of choice (<CR> to abort):
178
179 The output shows several pieces of information:
180 1. The tag number (there are 15 in this example).
181 2. The line number where the tag occurs.
182 3. The filename where the tag occurs.
183 4. The context of the tag (e.g., global, or the function name).
184 5. The line from the file itself.
185
186 help : Show a brief synopsis.
187
188 USAGE :cs help
189
190 *E260* *E261*
191 kill : Kill a cscope connection (or kill all cscope connections).
192
193 USAGE :cs kill {num|partial_name}
194
195 To kill a cscope connection, the connection number or a partial
196 name must be specified. The partial name is simply any part of
197 the pathname of the cscope database. Kill a cscope connection
198 using the partial name with caution!
199
200 If the specified connection number is -1, then _ALL_ cscope
201 connections will be killed.
202
203 reset : Reinit all cscope connections.
204
205 USAGE :cs reset
206
207 show : Show cscope connections.
208
209 USAGE :cs show
210
211 *:cstag* *E257* *E562*
212If you use cscope as well as ctags, |:cstag| allows you to search one or
213the other before making a jump. For example, you can choose to first
214search your cscope database(s) for a match, and if one is not found, then
215your tags file(s) will be searched. The order in which this happens
216is determined by the value of |csto|. See |cscope-options| for more
217details.
218
219|:cstag| performs the equivalent of ":cs find g" on the identifier when
220searching through the cscope database(s).
221
222|:cstag| performs the equivalent of |:tjump| on the identifier when searching
223through your tags file(s).
224
225
226==============================================================================
2273. Cscope options *cscope-options*
228
229Use the |:set| command to set all cscope options. Ideally, you would do
230this in one of your startup files (e.g., .vimrc). Some cscope related
231variables are only valid within |.vimrc|. Setting them after vim has
232started will have no effect!
233
234 *cscopeprg* *csprg*
235'cscopeprg' specifies the command to execute cscope. The default is
236"cscope". For example: >
237 :set csprg=/usr/local/bin/cscope
238<
239 *cscopequickfix* *csqf* *E469*
240{not available when compiled without the |+quickfix| feature}
241'cscopequickfix' specifies whether to use quickfix window to show cscope
242results. This is a list of comma-separated values. Each item consists of
243|cscope-find| command (s, g, d, c, t, e, f or i) and flag (+, - or 0).
244'+' indicates that results must be appended to quickfix window,
245'-' implies previous results clearance, '0' or command absence - don't use
246quickfix. Search is performed from start until first command occurrence.
247The default value is "" (don't use quickfix anyway). The following value
248seems to be useful: "s-,c-,d-,i-,t-,e-".
249
250 *cscopetag* *cst*
251If 'cscopetag' set, the commands ":tag" and CTRL-] as well as "vim -t" will
252always use |:cstag| instead of the default :tag behavior. Effectively, by
253setting 'cst', you will always search your cscope databases as well as your
254tag files. The default is off. Examples: >
255 :set cst
256 :set nocst
257<
258 *cscopetagorder* *csto*
259The value of 'csto' determines the order in which |:cstag| performs a search.
260If 'csto' is set to zero, cscope database(s) are searched first, followed
261by tag file(s) if cscope did not return any matches. If 'csto' is set to
262one, tag file(s) are searched before cscope database(s). The default is zero.
263Examples: >
264 :set csto=0
265 :set csto=1
266<
267 *cscopeverbose* *csverb*
268If 'cscopeverbose' is not set (the default), messages will not be printed
269indicating success or failure when adding a cscope database. Ideally, you
270should reset this option in your |.vimrc| before adding any cscope databases,
271and after adding them, set it. From then on, when you add more databases
272within Vim, you will get a (hopefully) useful message should the database fail
273to be added. Examples: >
274 :set csverb
275 :set nocsverb
276<
277 *cscopepathcomp* *cspc*
278The value of 'cspc' determines how many components of a file's path to
279display. With the default value of zero the entire path will be displayed.
280The value one will display only the filename with no path. Other values
281display that many components. For example: >
282 :set cspc=3
283will display the last 3 components of the file's path, including the file
284name itself.
285
286==============================================================================
2874. How to use cscope in Vim *cscope-howtouse*
288
289The first thing you need to do is to build a cscope database for your
290source files. For the most basic case, simply do "cscope -b". Please
291refer to the cscope man page for more details.
292
293Assuming you have a cscope database, you need to "add" the database to Vim.
294This establishes a cscope "connection" and makes it available for Vim to use.
295You can do this in your .vimrc file, or you can do it manually after starting
296vim. For example, to add the cscope database "cscope.out", you would do:
297
298 :cs add cscope.out
299
300You can double-check the result of this by executing ":cs show". This will
301produce output which looks like this:
302
303 # pid database name prepend path
304 0 28806 cscope.out <none>
305
306Note:
307Because of the Microsoft RTL limitations, Win32 version shows 0 instead
308of the real pid.
309
310Once a cscope connection is established, you can make queries to cscope and
311the results will be printed to you. Queries are made using the command
312":cs find". For example:
313
314 :cs find g ALIGN_SIZE
315
316This can get a little cumbersome since one ends up doing a significant
317amount of typing. Fortunately, there are ways around this by mapping
318shortcut keys. See |cscope-suggestions| for suggested usage.
319
320If the results return only one match, you will automatically be taken to it.
321If there is more than one match, you will be given a selection screen to pick
322the match you want to go to. After you have jumped to the new location,
323simply hit Ctrl-T to get back to the previous one.
324
325
326==============================================================================
3275. Limitations *cscope-limitations*
328
329Cscope support for Vim is only available on systems that support these four
330system calls: fork(), pipe(), execl(), waitpid(). This means it is mostly
331limited to Unix systems.
332
333Additionally Cscope support works for Win32. For more information and a
334cscope version for Win32 see:
335
336 http://iamphet.nm.ru/cscope/index.html
337
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000338The DJGPP-built version from http://cscope.sourceforge.net is known to not
339work with Vim.
340
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341There are a couple of hard-coded limitations:
342
343 1. The maximum number of cscope connections allowed is 8. Do you
344 really need more?
345
346 2. Doing a |:tjump| when |:cstag| searches the tag files is not
347 configurable (e.g., you can't do a tselect instead).
348
349==============================================================================
3506. Suggested usage *cscope-suggestions*
351
352Put these entries in your .vimrc (adjust the pathname accordingly to your
353setup): >
354
355 if has("cscope")
356 set csprg=/usr/local/bin/cscope
357 set csto=0
358 set cst
359 set nocsverb
360 " add any database in current directory
361 if filereadable("cscope.out")
362 cs add cscope.out
363 " else add database pointed to by environment
364 elseif $CSCOPE_DB != ""
365 cs add $CSCOPE_DB
366 endif
367 set csverb
368 endif
369
370By setting 'cscopetag', we have effectively replaced all instances of the :tag
371command with :cstag. This includes :tag, Ctrl-], and "vim -t". In doing
372this, the regular tag command not only searches your ctags generated tag
373files, but your cscope databases as well.
374
375Some users may want to keep the regular tag behavior and have a different
376shortcut to access :cstag. For example, one could map Ctrl-_ (underscore)
377to :cstag with the following command: >
378
379 map <C-_> :cstag <C-R>=expand("<cword>")<CR><CR>
380
381A couple of very commonly used cscope queries (using ":cs find") is to
382find all functions calling a certain function and to find all occurrences
383of a particular C symbol. To do this, you can use these mappings as an
384example: >
385
386 map g<C-]> :cs find 3 <C-R>=expand("<cword>")<CR><CR>
387 map g<C-\> :cs find 0 <C-R>=expand("<cword>")<CR><CR>
388
389These mappings for Ctrl-] (right bracket) and Ctrl-\ (backslash) allow you to
390place your cursor over the function name or C symbol and quickly query cscope
391for any matches.
392
393Or you may use the following scheme, inspired by Vim/Cscope tutorial from
394Cscope Home Page (http://cscope.sourceforge.net/): >
395
396 nmap <C-_>s :cs find s <C-R>=expand("<cword>")<CR><CR>
397 nmap <C-_>g :cs find g <C-R>=expand("<cword>")<CR><CR>
398 nmap <C-_>c :cs find c <C-R>=expand("<cword>")<CR><CR>
399 nmap <C-_>t :cs find t <C-R>=expand("<cword>")<CR><CR>
400 nmap <C-_>e :cs find e <C-R>=expand("<cword>")<CR><CR>
401 nmap <C-_>f :cs find f <C-R>=expand("<cfile>")<CR><CR>
402 nmap <C-_>i :cs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
403 nmap <C-_>d :cs find d <C-R>=expand("<cword>")<CR><CR>
404
405 " Using 'CTRL-spacebar' then a search type makes the vim window
406 " split horizontally, with search result displayed in
407 " the new window.
408
409 nmap <C-Space>s :scs find s <C-R>=expand("<cword>")<CR><CR>
410 nmap <C-Space>g :scs find g <C-R>=expand("<cword>")<CR><CR>
411 nmap <C-Space>c :scs find c <C-R>=expand("<cword>")<CR><CR>
412 nmap <C-Space>t :scs find t <C-R>=expand("<cword>")<CR><CR>
413 nmap <C-Space>e :scs find e <C-R>=expand("<cword>")<CR><CR>
414 nmap <C-Space>f :scs find f <C-R>=expand("<cfile>")<CR><CR>
415 nmap <C-Space>i :scs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
416 nmap <C-Space>d :scs find d <C-R>=expand("<cword>")<CR><CR>
417
418 " Hitting CTRL-space *twice* before the search type does a vertical
419 " split instead of a horizontal one
420
421 nmap <C-Space><C-Space>s
422 \:vert scs find s <C-R>=expand("<cword>")<CR><CR>
423 nmap <C-Space><C-Space>g
424 \:vert scs find g <C-R>=expand("<cword>")<CR><CR>
425 nmap <C-Space><C-Space>c
426 \:vert scs find c <C-R>=expand("<cword>")<CR><CR>
427 nmap <C-Space><C-Space>t
428 \:vert scs find t <C-R>=expand("<cword>")<CR><CR>
429 nmap <C-Space><C-Space>e
430 \:vert scs find e <C-R>=expand("<cword>")<CR><CR>
431 nmap <C-Space><C-Space>i
432 \:vert scs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
433 nmap <C-Space><C-Space>d
434 \:vert scs find d <C-R>=expand("<cword>")<CR><CR>
435
436==============================================================================
4377. Cscope availability and information *cscope-info*
438
439If you do not already have cscope (it did not come with your compiler
440license or OS distribution), then you can download it for free from:
441 http://cscope.sourceforge.net/
442This is released by SCO under the BSD license.
443
444If you want a newer version of cscope, you will probably have to buy it.
445According to the (old) nvi documentation:
446
447 You can buy version 13.3 source with an unrestricted license
448 for $400 from AT&T Software Solutions by calling +1-800-462-8146.
449
450Also you can download cscope 13.x and mlcscope 14.x (multi-lingual cscope
451which supports C, C++, Java, lex, yacc, breakpoint listing, Ingres, and SDL)
452from World-Wide Exptools Open Source packages page:
453 http://www.bell-labs.com/project/wwexptools/packages.html
454
455In Solaris 2.x, if you have the C compiler license, you will also have
456cscope. Both are usually located under /opt/SUNWspro/bin
457
458SGI developers can also get it. Search for Cscope on this page:
459 http://freeware.sgi.com/index-by-alpha.html
460 https://toolbox.sgi.com/toolbox/utilities/cscope/
461The second one is for those who have a password for the SGI toolbox.
462
463There is source to an older version of a cscope clone (called "cs") available
464on the net. Due to various reasons, this is not supported with Vim.
465
466The cscope interface/support for Vim was originally written by
467Andy Kahn <ackahn@netapp.com>. The original structure (as well as a tiny
468bit of code) was adapted from the cscope interface in nvi. Please report
469any problems, suggestions, patches, et al., you have for the usage of
470cscope within Vim to him.
471 *cscope-win32*
472For a cscope version for Win32 see: http://iamphet.nm.ru/cscope/index.html
473
474Win32 support was added by Sergey Khorev <khorev@softlab.ru>. Contact him
475if you have Win32-specific issues.
476
477 vim:tw=78:ts=8:ft=help:norl: