diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-16 21:57:33 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-16 21:57:33 +1200 |
commit | 408ec4c0450fe11064dfea6d786ae543111a2575 (patch) | |
tree | 5033771ec94a7a3d933b369a9d169c8213485de9 /vim/compiler | |
parent | Consistently require 'nocompatible' for ftplugins (diff) | |
download | dotfiles-408ec4c0450fe11064dfea6d786ae543111a2575.tar.gz dotfiles-408ec4c0450fe11064dfea6d786ae543111a2575.zip |
Correct g:current_compiler setting
Copypaste error.
Diffstat (limited to 'vim/compiler')
-rw-r--r-- | vim/compiler/perlcritic.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/compiler/perlcritic.vim b/vim/compiler/perlcritic.vim index afbb73c7..03d21683 100644 --- a/vim/compiler/perlcritic.vim +++ b/vim/compiler/perlcritic.vim @@ -1,7 +1,7 @@ if exists('g:current_compiler') finish endif -let g:current_compiler = 'tidy' +let g:current_compiler = 'perlcritic' if exists(':CompilerSet') != 2 command -nargs=* CompilerSet setlocal <args> |