diff options
Diffstat (limited to 'compiler/nim.vim')
-rw-r--r-- | compiler/nim.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/nim.vim b/compiler/nim.vim index a587a306..c849b1e9 100644 --- a/compiler/nim.vim +++ b/compiler/nim.vim @@ -1,12 +1,12 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nim') == -1 -if exists("current_compiler") +if exists('current_compiler') finish endif -let current_compiler = "nim" +let current_compiler = 'nim' -if exists(":CompilerSet") != 2 " older Vim always used :setlocal +if exists(':CompilerSet') != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif |