7
|
1 " Vim filetype plugin file
|
21825
|
2 " Language: CSS
|
|
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
|
|
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
23305
|
5 " Last Change: 2020 Dec 21
|
7
|
6
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_ftplugin = 1
|
|
11
|
1698
|
12 let s:cpo_save = &cpo
|
|
13 set cpo&vim
|
|
14
|
23305
|
15 let b:undo_ftplugin = "setl com< cms< inc< fo< ofu< isk<"
|
7
|
16
|
375
|
17 setlocal comments=s1:/*,mb:*,ex:*/ commentstring&
|
389
|
18 setlocal formatoptions-=t formatoptions+=croql
|
1220
|
19 setlocal omnifunc=csscomplete#CompleteCSS
|
23305
|
20 setlocal iskeyword+=-
|
7
|
21
|
375
|
22 let &l:include = '^\s*@import\s\+\%(url(\)\='
|
1698
|
23
|
|
24 let &cpo = s:cpo_save
|
|
25 unlet s:cpo_save
|