Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 1 | " 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 | ||||
6 | if exists("b:did_ftplugin") | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | let b:undo_ftplugin = "setl cms< inc< ofu<" | ||||
12 | |||||
13 | setlocal commentstring=//\ %s | ||||
14 | setlocal omnifunc=csscomplete#CompleteCSS | ||||
15 | |||||
16 | let &l:include = '^\s*@import\s\+\%(url(\)\=' | ||||
17 | |||||
18 | " vim:set sw=2: |