首先說個題外話: Vim發布7.3了..
在翻看Vim外掛程式的時候, 發現了一個比較有意思的應用(非外掛程式): 把PHP的手冊融如Vim中, 在Vim中, 按”K”, 就可以跳轉到游標下函數的手冊說明…
1. 首先, 下載特殊定製的PHP手冊(包含PHP5.3的所有函數) : vim-php-manual.tar.gz
2. 把下載的檔案解壓縮, 放置到一個目錄, 比如/tmp/phpmuanul(windows下比如:”d:/phpmanual”).
3. 配置vimrc(linux下是.vimrc,windows下是_vimrc), 把phpmanual目錄添加到runtimepath(稍後解釋為什麼).
4. 配置vimrc, 使得keywordprg=”help”. 在我的機器上, keywordprg預設是!man, 大多數時候, 我還是希望可以直接man到linux下的標準函數庫, 所以我使用(在vimrc檔案中):
autocmd BufNewFile,Bufread *.ros,*.inc,*.php set keywordprg="help"
或者也可以寫在vim目錄下的ftplugin下的php.vim(如果沒有建立), 這樣在ft為php的時候,這個配置指令碼就會被載入.
至於說, 為什麼要把phpmanual目錄添加到runtimepath, 是因為:
When no argument is given to :help the file given with the 'helpfile' optionwill be opened. Otherwise the specified tag is searched for in all "doc/tags"files in the directories specified in the 'runtimepath' option.
意思就是說, 在vim中, 調用help的時候, help會去所有的runtimpath下的doc目錄中尋找tags檔案, 來尋找要尋找的協助關鍵字.
在我們下載的vim-php-manual.tar.gz檔案中, 就包含了doc/tags這樣的檔案目錄結構, 所以只要把phpmanual目錄加入runtimepath, 並且設定keywordprg為vim的help, 就可以實現在游標處按”K”跳轉到函數手冊了.
使用截圖
最後,補充一點, 如果在使用的時候,Vim提示你:
tags file not sorted
那你就用vim開啟phpmanual/doc/tags, 然後%sort一下就可以了…