aboutsummaryrefslogtreecommitdiff
path: root/plugin/redact_pass.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/redact_pass.vim')
-rw-r--r--plugin/redact_pass.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/redact_pass.vim b/plugin/redact_pass.vim
index a3d67e8..47c422d 100644
--- a/plugin/redact_pass.vim
+++ b/plugin/redact_pass.vim
@@ -8,13 +8,13 @@
" Author: Tom Ryder <tom@sanctum.geek.nz>
" License: Same as Vim itself
"
-if exists('g:loaded_redact_pass') || &compatible
+if exists('loaded_redact_pass') || &compatible
finish
endif
if !has('autocmd') || v:version < 600
finish
endif
-let g:loaded_redact_pass = 1
+let loaded_redact_pass = 1
" Check whether we should set redacting options or not
function! s:CheckArgsRedact()