mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-less/ftplugin/less.vim

27 lines
724 B
VimL
Raw Normal View History

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<"
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: