From e6b4150a005ca35e4b38540a34465d1e1903c81e Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 8 Mar 2016 13:14:49 +0100 Subject: [PATCH] Usage: cscope Closes #80. --- CHANGELOG.md | 1 + README.md | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 96 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c347fa9..4606ff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,7 @@ All notable changes to this project will be documented in this file. - Usage: [Handling backup, swap, undo, and viminfo files](README.md#handling-backup-swap-undo-and-viminfo-files) - Usage: [Running external programs and using filters](README.md#running-external-programs-and-using-filters) - Usage: [MatchIt](README.md#matchit) +- Usage: [Cscope](README.md#cscope) - Debugging: [Verbosity](README.md#verbosity) - Debugging: [Debugging Vim scripts](README.md#debugging-vim-scripts) - Debugging: [Debugging syntax files](README.md#debugging-syntax-files) diff --git a/README.md b/README.md index 6413ba6..39cee1e 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ Twitter](https://twitter.com/_mhinz_). Thanks! - [Managing plugins](#managing-plugins) - [Block insert](#block-insert) - [Running external programs and using filters](#running-external-programs-and-using-filters) +- [Cscope](#cscope) - [MatchIt](#matchit) #### [Tips](#tips-1) @@ -1637,6 +1638,100 @@ which is fine for scripts, but when doing it on the fly, I find it easier to use :h filter :h :read! +#### Cscope + +[Cscope](http://cscope.sourceforge.net/) is a better +[ctags](http://ctags.sourceforge.net/) and supports [quite some +languages](http://ctags.sourceforge.net/languages.html). + +Whereas a tags file only knows where a symbol was defined, a cscope database +knows much more about your data: + +- Where is this symbol defined? +- Where is this symbol used? +- What is this global symbol's definition? +- Where did this variable get its value? +- Where is this function in the source files? +- What functions call this function? +- What functions are called by this function? +- Where does the message "out of space" come from? +- Where is this source file in the directory structure? +- What files include this header file? + +##### 1. Build the database + +Do this in the root of your project: + +```sh +$ cscope -bqR +``` + +This will create 3 files: `cscope{,.in,.po}.out` in the current working +directory. Think of them as your database. + +Unfortunately `cscope` only analyzes `*.[c|h|y|l]` files by default. If you want +to use cscope for a Ruby project instead, do this: + +```sh +$ find . -name "*.rb" > cscope.files +$ cscope -bq +``` + +##### 2. Add the database + +Open a connection to your freshly built database: + +```vim +:cs add cscope.out +``` + +Verify that the connection was made: + +```vim +:cs show +``` + +(Yes, you can add multiple connections.) + +##### 3. Query the database + +```vim +:cs find +``` + +E.g. `:cs find d foo` will list all functions that are called by `foo(...)`. + +| Kind | Explanation | +|------|-------------| +| s | **s**ymbol: find all references to the token | +| g | **g**lobal: find global definition(s) of the token | +| c | **c**alls: find all calls to the function | +| t | **t**ext: find all instances of the text | +| e | **e**grep: egrep search for the word | +| f | **f**ile: open the filename | +| i | **i**ncludes: find files that include the filename | +| d | **d**epends: find functions called by this function | + +I suggest some convenience mappings e.g.: + +```vim +nnoremap cs :cscope find s =expand('') +nnoremap cg :cscope find g =expand('') +nnoremap cc :cscope find c =expand('') +nnoremap ct :cscope find t =expand('') +nnoremap ce :cscope find e =expand('') +nnoremap cf :cscope find f =expand('') +nnoremap ci :cscope find i ^=expand('')$ +nnoremap cd :cscope find d =expand('') +``` + +So, when `:tag` (or ``) jumps to a definition from the tags file, `:cstag` +does the same, but also takes connected cscope databases into account. The +option `'cscopetag'` makes `:tag` act like `:cstag` automatically. This is very +convenient if you already have tag-related mappings. + +Related help: `:h cscope` + #### MatchIt Since Vim is written in C, a lot of features assume C-like syntax. By default,