今天因为要写html的文件,发现vim的默认设定对html不是很友好。没有auto-index。没有auto-complete。用得有点不舒服。所以就简单了google了下。令其实现auto-index和auto-complete的功能。

 
auto-index:
           这个我是利用一个小插件完成的。html.vim( http://www.vim.org/scripts/script.php?script_id=2075)。安装了后,就很好的完成了index的任务。
 
auto-complete:
          利用vim内建的html支持实现。
          在.vimrc中加入:autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
          在需要补全的时候,按即可。
          如图为 补全
            vim for html_第1张图片

 

supertab:
         由于补全时要按。四个键,所以有点麻烦。我很懒,不喜欢每次都按那么多键。所以下载了个插件supertab( http://www.vim.org/scripts/script.php?script_id=182 )。将特定的键映射为。在.vimrc中加入:
let g:SuperTabMappingForward = ''
                将向前mapping的键设为
let g:SuperTabMappingBackward = ''
                将向后mapping的键设为 。默认为 
let g:SuperTabRetainCompletionType=2
let g:SuperTabDefaultCompletionType=""
                mapping的模式设为。默认为
详情 :help supertab
这样每次要complete时,只要按Shift+Tab就可以了。
         
.vimrc设置:
vim for html_第2张图片

 

插件下载地址:
 
      html.vim:  http://www.vim.org/scripts/script.php?script_id=2075
      supertab: http://www.vim.org/scripts/script.php?script_id=182