1" Vim filetype plugin file 2" Language: CSS 3" Maintainer: Doug Kearns <[email protected]> 4" Previous Maintainer: Nikolai Weibull <[email protected]> 5" Last Change: 2020 Dec 21 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< isk<" 16 17setlocal comments=s1:/*,mb:*,ex:*/ commentstring& 18setlocal formatoptions-=t formatoptions+=croql 19setlocal omnifunc=csscomplete#CompleteCSS 20setlocal iskeyword+=- 21 22let &l:include = '^\s*@import\s\+\%(url(\)\=' 23 24let &cpo = s:cpo_save 25unlet s:cpo_save 26