aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-12 16:45:57 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-12 16:45:57 +1200
commitf3c2ffa6ba2bf9949d5de8d37b4426c22885ad91 (patch)
tree1105d914a5bd2d1b39519afe2386e1c1f4b16a60 /plugin
parentCorrections to documentation (diff)
parentBump VERSION (diff)
downloadvim-redact-pass-1.3.0.tar.gz (sig)
vim-redact-pass-1.3.0.zip
Merge branch 'release/v1.3.0'v1.3.0
* release/v1.3.0: Remove unneeded variable scoping Switch to two-spacing
Diffstat (limited to 'plugin')
-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()