Vim 7.2b ready for testing.
[MacVim.git] / runtime / ftplugin / sass.vim
blobad039772ad4d13ab42658ff49bc96ed03579b357
1 " Vim filetype plugin
2 " Language:             Sass
3 " Maintainer:           Tim Pope <vimNOSPAM@tpope.info>
5 " Only do this when not done yet for this buffer
6 if exists("b:did_ftplugin")
7   finish
8 endif
9 let b:did_ftplugin = 1
11 let b:undo_ftplugin = "setl cms< inc< ofu<"
13 setlocal commentstring=//\ %s
14 setlocal omnifunc=csscomplete#CompleteCSS
16 let &l:include = '^\s*@import\s\+\%(url(\)\='
18 " vim:set sw=2: