diff options
author | xentac | 2017-03-26 10:47:01 -0700 |
---|---|---|
committer | GitHub | 2017-03-26 10:47:01 -0700 |
commit | b893e138381be12a7a03a1a3b738907067b0348f (patch) | |
tree | 1809329c0ba34f6d0ab6e3dd94b27f3ae316699b /compiler/beancount.vim | |
parent | 4c19b4957ab7931fc2467b225b7a61b1215c6581 (diff) | |
parent | 6600558bc68b5a42ac59cca8fd2cac4dac7f8417 (diff) | |
download | vim-beancount-b893e138381be12a7a03a1a3b738907067b0348f.tar.gz |
Merge pull request #39 from yagebu/fixes-and-lint
Fixes and lint
Diffstat (limited to 'compiler/beancount.vim')
-rw-r--r-- | compiler/beancount.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/compiler/beancount.vim b/compiler/beancount.vim index 5bcaa15..b6db2d3 100644 --- a/compiler/beancount.vim +++ b/compiler/beancount.vim @@ -1,19 +1,19 @@ -if exists("current_compiler") +if exists('g:current_compiler') finish endif -let current_compiler = "beancount" +let g:current_compiler = 'beancount' -if exists(":CompilerSet") != 2 " older Vim always used :setlocal +if exists(':CompilerSet') != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif -let s:cpo_save = &cpo -set cpo-=C +let s:cpo_save = &cpoptions +set cpoptions-=C CompilerSet makeprg=bean-check\ % CompilerSet errorformat=%-G " Skip blank lines CompilerSet errorformat+=%f:%l:\ %m " File:line: message CompilerSet errorformat+=%-G\ %.%# " Skip indented lines. -let &cpo = s:cpo_save +let &cpoptions = s:cpo_save unlet s:cpo_save |