2012-08-16 23:41:25 -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<"
|
|
|
|
|
2013-04-13 13:45:21 -04:00
|
|
|
setlocal iskeyword+=-
|
2015-07-13 06:22:46 -04:00
|
|
|
setlocal commentstring=//%s
|
2012-08-16 23:41:25 -04:00
|
|
|
setlocal define=^\\s*\\%(@mixin\\\|=\\)
|
|
|
|
setlocal includeexpr=substitute(v:fname,'\\%(.*/\\\|^\\)\\zs','_','')
|
|
|
|
setlocal omnifunc=csscomplete#CompleteCSS
|
|
|
|
setlocal suffixesadd=.less
|
2015-07-13 06:22:46 -04:00
|
|
|
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,://
|
2015-12-08 08:20:04 -05:00
|
|
|
setlocal fo=croql
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
let &l:include = '^\s*@import\s\+\%(url(\)\=["'']\='
|
|
|
|
|
|
|
|
" vim:set sw=2:
|