aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-10-23 22:57:10 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-11-06 01:56:04 +0100
commit5d2af7e45200c1e3337624449fe2be0906d1c7cf (patch)
treec43f114d9eb8d6c797254a092ea7eb2b80849b77
parent8cb77acb44c4e9be12a301ce347dd6e5d76dfa61 (diff)
downloadrneovim-5d2af7e45200c1e3337624449fe2be0906d1c7cf.tar.gz
rneovim-5d2af7e45200c1e3337624449fe2be0906d1c7cf.tar.bz2
rneovim-5d2af7e45200c1e3337624449fe2be0906d1c7cf.zip
man.vim: allow other ex-commands after :Man
-rw-r--r--runtime/plugin/man.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/plugin/man.vim b/runtime/plugin/man.vim
index 63faa15213..7bccd4a3b9 100644
--- a/runtime/plugin/man.vim
+++ b/runtime/plugin/man.vim
@@ -5,7 +5,7 @@ if exists('g:loaded_man')
endif
let g:loaded_man = 1
-command! -range=0 -complete=customlist,man#complete -nargs=* Man call man#open_page(v:count, v:count1, <q-mods>, <f-args>)
+command! -bar -range=0 -complete=customlist,man#complete -nargs=* Man call man#open_page(v:count, v:count1, <q-mods>, <f-args>)
augroup man
autocmd!