操作tagstack的是ctrl-]與ctrl-t
:tags查看tagstack
操作jumplist的是ctrl-i與ctrl-o(in/out)
:jumps查看jumplist
cscope
構造cscope數據庫: cscope -Rbq,R是遞歸,b是build后即退出,q是創建倒排表來加快查找。
:cscope find symbol xxx???? 列出所有這個symbol出現的地方,簡寫為:cs f s xxx
:cscope find calling xxx??? 列出所有call這個function的function,簡寫為:cs f c xxx
:cscope find called xxx???? 列出所有這個function要call的function,簡寫為:cs f d xxx
:cscope find grep xxx?????? 按照這個正則式查找,簡寫為:cs f e xxx
:diffsplit vert main-modified.c
:f
:set ro/noro
vimgrep /{pattern}/[g][j] {file} ...
:cn, :cp
:cl
:cc [nr]
:cw, cwindow
when specifying {file}, use ** to denote recursive sub-directories. For example, **/*.c **/*.h denote all C source files in current directory (and all subdirectories).
?
我的vimrc
"
Basics {
set
nocompatible
source $VIMRUNTIME/vimrc_example.vim
"
}
"
General {
"
Set to auto read when a file is changed from the outside
set
autoread
"
always switch to the current file directory
set
autochdir
"
Backup
set
backup
set
backupdir=C:\Users\angelsmile\vim_backup
"
How many commands to memorize
set
history=
50
"
Encodings
set
fileencodings=utf-
8
,gbk,gb2312
"
Support all three, in this order.
set
fileformats=unix,dos,mac
"
Enable mouse
set
mouse=a
"
don't make noise
set
noerrorbells
"
Turn on cmdline completion wild style
set
wildmenu
"
ignore these list file extensions
set
wildignore=*.o,*.obj,*.exe,*.pyc,*.jpg,*.gif,*.png,*.pdf
"
}
"
Vim UI {
colorscheme zellner
"
Always show current position
set
ruler
"
Show line number
set
number
"
Show matching brackets
set
showmatch
"
Highlight search result
set
hlsearch
"
Inc search
set
incsearch
"
set cursorcolumn
set
cursorline
"
shortens messages
set
shortmess=a
set
showcmd
"
line wrap
set
wrap
"
}
"
Editing {
set
backspace=indent,eol,start
"
All about tabs
set
tabstop=
4
set
softtabstop=
4
set
shiftwidth=
4
set
expandtab
set
smarttab
"
}
"
I'm a C programmer {
syntax on
"
Indent
set
autoindent
set
smartindent
set
cindent
"
C-style indent
"
Fold
set
foldmethod=syntax
"
tags
set
tags=./tags,../tags,http://www.cnblogs.com/tags
"
Vertical line at col 80, only after Vim 7.3
set
colorcolumn=
80
"
}
"
GUI Settings {
"
GUI fonts
set
guifont=Consolas:h10
"
set guifont=YaHei\ Consolas\ Hybrid:h10
"
set guifontwide=YaHei\ Consolas\ Hybrid:h10
"
GUI widgets
set
guioptions-=m
"
remove menubar
set
guioptions-=T
"
remove toolbar
set
guioptions-=r
"
remove right-hand scroll bar
"
Columns
set
columns=
120
set
lines=
32
"
}
"
Keyboard mapping {
:imap <C-s> <Esc>:w<CR>a
"
}
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061
微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元

