diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-09 00:03:10 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-09 00:03:10 +1200 |
commit | acb2ed1390d98516d8d1d5fd7ca83ed4d55af948 (patch) | |
tree | 0b2e1b11e12b4090860cf52560f2a2eb457b42dd /vim/after/ftplugin/diff.vim | |
parent | Remap g& to preserve substitution flags (diff) | |
download | dotfiles-acb2ed1390d98516d8d1d5fd7ca83ed4d55af948.tar.gz dotfiles-acb2ed1390d98516d8d1d5fd7ca83ed4d55af948.zip |
Remove unnecessary g: prefixes to Vim variables
Diffstat (limited to 'vim/after/ftplugin/diff.vim')
-rw-r--r-- | vim/after/ftplugin/diff.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/diff.vim b/vim/after/ftplugin/diff.vim index 5d4ff9ae..f9f6c4b3 100644 --- a/vim/after/ftplugin/diff.vim +++ b/vim/after/ftplugin/diff.vim @@ -1,5 +1,5 @@ " Stop here if the user doesn't want ftplugin mappings -if exists('g:no_plugin_maps') || exists('g:no_diff_maps') +if exists('no_plugin_maps') || exists('no_diff_maps') finish endif |