diff options
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/rspec.vim | 2 | ||||
-rw-r--r-- | compiler/rustc.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rspec.vim b/compiler/rspec.vim index 13a7a8fb..342b2a76 100644 --- a/compiler/rspec.vim +++ b/compiler/rspec.vim @@ -24,7 +24,7 @@ CompilerSet errorformat= \%f:%l:\ %tarning:\ %m, \%E%.%#:in\ `load':\ %f:%l:%m, \%E%f:%l:in\ `%*[^']':\ %m, - \%-Z\ \ \ \ \ \#\ %f:%l:%.%#, + \%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#, \%E\ \ %\\d%\\+)%.%#, \%C\ \ \ \ \ %m, \%-G%.%# diff --git a/compiler/rustc.vim b/compiler/rustc.vim index e0aebba0..e6a53cda 100644 --- a/compiler/rustc.vim +++ b/compiler/rustc.vim @@ -17,7 +17,7 @@ if exists(":CompilerSet") != 2 command -nargs=* CompilerSet setlocal <args> endif -if exists("g:rustc_makeprg_no_percent") && g:rustc_makeprg_no_percent == 1 +if exists("g:rustc_makeprg_no_percent") && g:rustc_makeprg_no_percent != 0 CompilerSet makeprg=rustc else CompilerSet makeprg=rustc\ \% |