summaryrefslogtreecommitdiffstats
path: root/compiler/rustc.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2018-10-08 19:00:59 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2018-10-08 19:00:59 +0200
commitfd74d8b2b170b540680a9bbf6c64990f8ebafd08 (patch)
treeb1fdef6203a78a21053d1b8e0666ab7a38c36df2 /compiler/rustc.vim
parent055f7710b65dfa2df52fc0b5be2486ae36ac5751 (diff)
downloadvim-polyglot-fd74d8b2b170b540680a9bbf6c64990f8ebafd08.tar.gz
vim-polyglot-fd74d8b2b170b540680a9bbf6c64990f8ebafd08.zip
Updatev3.3.3
Diffstat (limited to 'compiler/rustc.vim')
-rw-r--r--compiler/rustc.vim10
1 files changed, 7 insertions, 3 deletions
diff --git a/compiler/rustc.vim b/compiler/rustc.vim
index 23390fd9..bbb13189 100644
--- a/compiler/rustc.vim
+++ b/compiler/rustc.vim
@@ -11,8 +11,10 @@ if exists("current_compiler")
endif
let current_compiler = "rustc"
-let s:cpo_save = &cpo
+" vint: -ProhibitAbbreviationOption
+let s:save_cpo = &cpo
set cpo&vim
+" vint: +ProhibitAbbreviationOption
if exists(":CompilerSet") != 2
command -nargs=* CompilerSet setlocal <args>
@@ -45,8 +47,10 @@ CompilerSet errorformat+=
\%-G%*[\ ]^%*[~],
\%-G%*[\ ]...
-let &cpo = s:cpo_save
-unlet s:cpo_save
+" vint: -ProhibitAbbreviationOption
+let &cpo = s:save_cpo
+unlet s:save_cpo
+" vint: +ProhibitAbbreviationOption
" vim: set et sw=4 sts=4 ts=8: