diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-01 21:40:16 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-01 21:40:16 +1200 |
commit | e3f92d58645280fa069f3ad2c9ab0037e6457819 (patch) | |
tree | dc7e0f2ab014341645718d6c2db3edf829880f3e | |
parent | Adjust name of autoloaded interface function (diff) | |
download | vim-replace-operator-e3f92d58645280fa069f3ad2c9ab0037e6457819.tar.gz vim-replace-operator-e3f92d58645280fa069f3ad2c9ab0037e6457819.zip |
Abbreviate load guard
-rw-r--r-- | plugin/replace_operator.vim | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugin/replace_operator.vim b/plugin/replace_operator.vim index 1146002..ea5f3b1 100644 --- a/plugin/replace_operator.vim +++ b/plugin/replace_operator.vim @@ -5,10 +5,7 @@ " Author: Tom Ryder <tom@sanctum.geek.nz> " License: Same as Vim itself " -if exists('loaded_replace_operator') || &compatible - finish -endif -if v:version < 700 +if exists('loaded_replace_operator') || &compatible || v:version < 700 finish endif let loaded_replace_operator = 1 |