blob: ad039772ad4d13ab42658ff49bc96ed03579b357 [file] [log] [blame]
Bram Moolenaarc236c162008-07-13 17:41:49 +00001" Vim filetype plugin
2" Language: Sass
3" Maintainer: Tim Pope <vimNOSPAM@tpope.info>
4
5" Only do this when not done yet for this buffer
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let b:undo_ftplugin = "setl cms< inc< ofu<"
12
13setlocal commentstring=//\ %s
14setlocal omnifunc=csscomplete#CompleteCSS
15
16let &l:include = '^\s*@import\s\+\%(url(\)\='
17
18" vim:set sw=2: