Mercurial > vim
annotate runtime/ftplugin/less.vim @ 8657:c70eea7a7677 v7.4.1618
commit https://github.com/vim/vim/commit/a4f6ca717b4483eb82c6c71f71a5a5cf70e55d80
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 20 17:28:35 2016 +0100
patch 7.4.1618
Problem: Starting job with output to buffer changes options in the current
buffer.
Solution: Set "curbuf" earlier. (Yasuhiro Matsumoto)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 20 Mar 2016 17:30:05 +0100 |
parents | 11d78e58a487 |
children |
rev | line source |
---|---|
6476 | 1 " Vim filetype plugin |
2 " Language: less | |
3 " Maintainer: Alessandro Vioni <jenoma@gmail.com> | |
4 " URL: https://github.com/genoma/vim-less | |
5 " Last Change: 2014 November 24 | |
6 | |
7 " Only do this when not done yet for this buffer | |
8 if exists("b:did_ftplugin") | |
9 finish | |
10 endif | |
11 let b:did_ftplugin = 1 | |
12 | |
13 let b:undo_ftplugin = "setl cms< def< inc< inex< ofu< sua<" | |
14 | |
15 setlocal formatoptions-=t formatoptions+=croql | |
16 | |
17 setlocal comments=:// commentstring=//\ %s | |
18 | |
19 setlocal omnifunc=csscomplete#CompleteCSS | |
20 setlocal suffixesadd=.less |