diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-11 16:51:59 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-11 16:51:59 +1200 |
commit | a7add011befdb568ce3c46ca1da8308afa2da8f8 (patch) | |
tree | 8a09e6990f8586ee7e65c1180c88cf97f61d41c5 | |
parent | Remove range support (diff) | |
download | vim-keep-position-a7add011befdb568ce3c46ca1da8308afa2da8f8.tar.gz vim-keep-position-a7add011befdb568ce3c46ca1da8308afa2da8f8.zip |
Adjust order of command attributes
-rw-r--r-- | plugin/keep_position.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/keep_position.vim b/plugin/keep_position.vim index 3be0ab3..6f6c398 100644 --- a/plugin/keep_position.vim +++ b/plugin/keep_position.vim @@ -11,5 +11,5 @@ endif let loaded_keep_position = 1 " User command definition refers to autoloaded function -command! -bar -nargs=+ -complete=command KeepPosition +command! -bar -complete=command -nargs=+ KeepPosition \ call keep_position#(<q-args>) |