Mercurial > vim
annotate runtime/ftplugin/sass.vim @ 10573:3f777388b6ad v8.0.0176
patch 8.0.0176: cannot use :change inside a function definition
commit https://github.com/vim/vim/commit/70bcd7336f9f19304f32c52a86ed5b4b3de852c2
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 12 22:20:54 2017 +0100
patch 8.0.0176: cannot use :change inside a function definition
Problem: Using :change in between :function and :endfunction fails.
Solution: Recognize :change inside a function. (ichizok, closes https://github.com/vim/vim/issues/1374)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 12 Jan 2017 22:30:04 +0100 |
parents | 43efa4f5a8ea |
children | 5c40013d45ee |
rev | line source |
---|---|
1668 | 1 " Vim filetype plugin |
2415 | 2 " Language: Sass |
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2415
diff
changeset
|
4 " Last Change: 2016 Aug 29 |
1668 | 5 |
6 " Only do this when not done yet for this buffer | |
7 if exists("b:did_ftplugin") | |
8 finish | |
9 endif | |
10 let b:did_ftplugin = 1 | |
11 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2415
diff
changeset
|
12 let b:undo_ftplugin = "setl com< cms< def< inc< inex< ofu< sua<" |
1668 | 13 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2415
diff
changeset
|
14 setlocal comments=:// |
1668 | 15 setlocal commentstring=//\ %s |
2415 | 16 setlocal define=^\\s*\\%(@mixin\\\|=\\) |
17 setlocal includeexpr=substitute(v:fname,'\\%(.*/\\\|^\\)\\zs','_','') | |
1668 | 18 setlocal omnifunc=csscomplete#CompleteCSS |
2415 | 19 setlocal suffixesadd=.sass,.scss,.css |
1668 | 20 |
2415 | 21 let &l:include = '^\s*@import\s\+\%(url(\)\=["'']\=' |
1668 | 22 |
23 " vim:set sw=2: |