diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-08-25 21:54:00 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-08-25 21:54:00 -0400 |
commit | 7bc627b3c8d53e0f45985b35835e0b339dd2c006 (patch) | |
tree | f0be6606ebb224e542107c1cc8615324c9e74e08 /runtime/plugin | |
parent | 4af6ec746c821078859469adc46cf7bef5c629fa (diff) | |
parent | db2aa27df17742a46f2861a53f8b61826e0318ea (diff) | |
download | rneovim-7bc627b3c8d53e0f45985b35835e0b339dd2c006.tar.gz rneovim-7bc627b3c8d53e0f45985b35835e0b339dd2c006.tar.bz2 rneovim-7bc627b3c8d53e0f45985b35835e0b339dd2c006.zip |
Merge #5210 'vim-patch:7.4.1898 + :Man modifiers support'.
Diffstat (limited to 'runtime/plugin')
-rw-r--r-- | runtime/plugin/man.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/plugin/man.vim b/runtime/plugin/man.vim index d49276047f..f3fe7151ca 100644 --- a/runtime/plugin/man.vim +++ b/runtime/plugin/man.vim @@ -5,9 +5,9 @@ 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, <f-args>) +command! -range=0 -complete=customlist,man#complete -nargs=+ Man call man#open_page(v:count, v:count1, <q-mods>, <f-args>) -nnoremap <silent> <Plug>(Man) :<C-U>call man#open_page(v:count, v:count1, &filetype ==# 'man' ? expand('<cWORD>') : expand('<cword>'))<CR> +nnoremap <silent> <Plug>(Man) :<C-U>call man#open_page(v:count, v:count1, '', &filetype ==# 'man' ? expand('<cWORD>') : expand('<cword>'))<CR> augroup man autocmd! |