gvim寫html代碼時如何快速地跳轉到一個標籤的結束位置html
參考這個vimrc的配置, 裏面有一些 很好的東西, 配置頗有用, 之前沒有用到: http://www.cnblogs.com/wangj08/archive/2013/03/13/2957309.html
好比:git
set showmatch " 插入括號時,短暫地跳轉到匹配的對應括號 set matchtime=2 " 短暫跳轉到匹配括號的時間 set magic " 設置魔術 set hidden " ??? 若是這個有用的話, 就不用在切換buffer的時候, 反覆的寫:w了. 容許在有未保存的修改時切換緩衝區,此時的修改由 vim 負責保存 set cmdheight=1 " 設定命令行的行數爲 1 nnoremap <space> @=((foldclosed(line('.')) < 0) ? 'zc' : 'zo')<CR> " 用空格鍵來開關摺疊
"----------------------------------------------------------------- " plugin – checksyntax.vim JavaScript常見語法錯誤檢查 " 默認快捷方式爲 F5 "----------------------------------------------------------------- let g:checksyntax_auto = 0 " 不自動檢查 "----------------------------------------------------------------- " plugin - matchit.vim 對%命令進行擴展使得能在嵌套標籤和語句之間跳轉 " % 正向匹配 g% 反向匹配 " [% 定位塊首 ]% 定位塊尾 "--------------------------
Vundle分爲三類:
在Github vim-scripts 用戶下的repos,只須要寫出repos名稱
在Github其餘用戶下的repos, 須要寫出"用戶名/repos名"
不在Github上的插件,須要寫出git全路徑github
在vim中支持鼠標顯示: set mouse=v 可是這樣設置後 好像有問題??vim
Two other motions, [% and ]%, go to the start and end of the current block, respectively(分別的, 對應的...).this
MatchTagAlways, 這個插件,的名字是 首字母所有大寫;
他的效果, 相似於 notepad++ 中的標籤對應高亮. 安裝過程是:spa
用vundle安裝 1 . 先在vimrc中配置路徑: Plugin 'Valloric/MatchTagAlways' 2 . 打開vim執行: :PluginInstall
<div>.............</div>
兩個div之間 跳轉, 則要將 光標定位在 標籤的內部. 如,字符 d, i, v上. 就能夠了.===========================================插件
vim中的doc 文檔的格式基本上都是這樣的:命令行