1" Vim filetype plugin file 2" Language: CSS 3" Maintainer: Doug Kearns <[email protected]> 4" Previous Maintainer: Nikolai Weibull <[email protected]> 5" Latest Revision: 2008-07-09 6 7if exists("b:did_ftplugin") 8 finish 9endif 10let b:did_ftplugin = 1 11 12let s:cpo_save = &cpo 13set cpo&vim 14 15let b:undo_ftplugin = "setl com< cms< inc< fo< ofu<" 16 17setlocal comments=s1:/*,mb:*,ex:*/ commentstring& 18setlocal formatoptions-=t formatoptions+=croql 19setlocal omnifunc=csscomplete#CompleteCSS 20 21let &l:include = '^\s*@import\s\+\%(url(\)\=' 22 23let &cpo = s:cpo_save 24unlet s:cpo_save 25