2015-07-18 17:05:45 -04:00
|
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'less') == -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: LessCSS
|
|
|
|
" Author: Tim Pope <vimNOSPAM@tpope.org>
|
|
|
|
" Maintainer: Leonard Ehrenfried <leonard.ehrenfried@web.de>
|
|
|
|
" Last Change: 2011 Sep 30
|
|
|
|
|
|
|
|
" Only do this when not done yet for this buffer
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
let b:undo_ftplugin = "setl cms< def< inc< inex< ofu< sua<"
|
|
|
|
|
|
|
|
setlocal iskeyword+=-
|
2015-06-11 10:52:26 -04:00
|
|
|
setlocal commentstring=//%s
|
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 define=^\\s*\\%(@mixin\\\|=\\)
|
|
|
|
setlocal includeexpr=substitute(v:fname,'\\%(.*/\\\|^\\)\\zs','_','')
|
|
|
|
setlocal omnifunc=csscomplete#CompleteCSS
|
|
|
|
setlocal suffixesadd=.less
|
2015-06-11 10:52:26 -04:00
|
|
|
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,://
|
|
|
|
setlocal fo=jcroql
|
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
|
|
|
|
|
|
|
let &l:include = '^\s*@import\s\+\%(url(\)\=["'']\='
|
|
|
|
|
|
|
|
" vim:set sw=2:
|
2015-07-18 17:05:45 -04:00
|
|
|
|
|
|
|
endif
|