2015-07-18 17:05:45 -04:00
|
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haml') == -1
|
|
|
|
|
Add support for basic languages
coffee, cucumbeer, eruby, haml, haskell, javascript,
json, less, nginx, ocaml, ruby, sass, scss, slim,
stylus, textile, tmux
2013-09-12 10:17:03 -04:00
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: Sass
|
|
|
|
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
|
|
|
|
" Last Change: 2010 Jul 26
|
|
|
|
|
|
|
|
" Only do this when not done yet for this buffer
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2014-08-12 17:45:36 -04:00
|
|
|
let b:undo_ftplugin = "setl com< cms< def< inc< inex< ofu< sua<"
|
Add support for basic languages
coffee, cucumbeer, eruby, haml, haskell, javascript,
json, less, nginx, ocaml, ruby, sass, scss, slim,
stylus, textile, tmux
2013-09-12 10:17:03 -04:00
|
|
|
|
2014-08-12 17:45:36 -04:00
|
|
|
setlocal comments=://
|
Add support for basic languages
coffee, cucumbeer, eruby, haml, haskell, javascript,
json, less, nginx, ocaml, ruby, sass, scss, slim,
stylus, textile, tmux
2013-09-12 10:17:03 -04:00
|
|
|
setlocal commentstring=//\ %s
|
|
|
|
setlocal define=^\\s*\\%(@mixin\\\|=\\)
|
|
|
|
setlocal includeexpr=substitute(v:fname,'\\%(.*/\\\|^\\)\\zs','_','')
|
|
|
|
setlocal omnifunc=csscomplete#CompleteCSS
|
|
|
|
setlocal suffixesadd=.sass,.scss,.css
|
|
|
|
|
|
|
|
let &l:include = '^\s*@import\s\+\%(url(\)\=["'']\='
|
|
|
|
|
|
|
|
" vim:set sw=2:
|
2015-07-18 17:05:45 -04:00
|
|
|
|
|
|
|
endif
|