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