星期二, 12月 14, 2010

在Linux建立vim程式開發環境

cscope 熱鍵
curl http://cscope.sourceforge.net/cscope_maps.vim > ~/.vim/plugin/cscope_maps.vim

啟動vim的 :Tlist功能
下載taglist_45.zip
cd ~/.vim
unzip taglist_45.zip

其他設定
將下列設定加到~/.vimrc檔案中

if has("autocmd")
  filetype plugin indent on
endif

if has("syntax")
  syntax on
endif

set viminfo='10,\"100,:20,%,n~/.viminfo

autocmd BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif

set cursorline
set showmatch
set incsearch
set hlsearch
set number
set tabstop=4
set shiftwidth=4

另外,有關vim的熱鍵可以參考下列網址,還蠻詳細的喔!
http://www.lslnet.com/linux/f/docs1/i43/big5303074.htm

沒有留言: