xref: /vim-8.2.3635/runtime/ftplugin/sass.vim (revision 00a927d6)
1" Vim filetype plugin
2" Language:		Sass
3" Maintainer:		Tim Pope <[email protected]>
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:
19