vim config

set nu

au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif

set ts=4
set expandtab
set shiftwidth=4
set autoindent

if has("cscope")
    set csprg=/usr/bin/cscope
    set csto=0
    set cst
    set nocsverb
    if filereadable("cscope.out")
        cs add cscope.out
    elseif $CSCOPESpaceDB != ""
        cs add $CSCOPESpaceDB
    endif
    set csverb
endif

nmap <C-]>s :cs find s <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>g :cs find g <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>c :cs find c <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>t :cs find t <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>e :cs find e <C-R>=expand("<cword>")<CR><CR>

nmap <C-]>f :cs find f <C-R>=expand("<cfile>")<CR><CR>

nmap <C-]>i :cs find i <C-R>=expand("<cfile>")<CR><CR>

nmap <C-]>d :cs find d <C-R>=expand("<cword>")<CR><CR>

set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
set termencoding=utf-8
set encoding=utf-8



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章