From 56d812f438dd275c3708a8d577fcf2573f887fff Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 13 May 2019 00:06:41 +1200 Subject: Remove unneeded variable scoping --- plugin/uncap_ex.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/uncap_ex.vim b/plugin/uncap_ex.vim index c1ee828..679a255 100644 --- a/plugin/uncap_ex.vim +++ b/plugin/uncap_ex.vim @@ -7,13 +7,13 @@ " Author: Tom Ryder " License: Same as Vim itself " -if exists('g:loaded_uncap_ex') || &compatible +if exists('loaded_uncap_ex') || &compatible finish endif if !has('user_commands') || v:version < 600 finish endif -let g:loaded_uncap_ex = 1 +let loaded_uncap_ex = 1 " Define commands command -bang -bar -complete=file -nargs=? -- cgit v1.2.3