diff options
author | Rob Pilling <robpilling@gmail.com> | 2019-11-28 22:04:40 +0000 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-11-28 14:04:40 -0800 |
commit | ee1199eaba7cafa6b60611ebece1407bc274e330 (patch) | |
tree | 31ded9d1b27ecc7446391abdf8c2a6c855201faf | |
parent | 7fef0f8db4e04b077e7cd4f195c78ea3fc4c691c (diff) | |
download | rneovim-ee1199eaba7cafa6b60611ebece1407bc274e330.tar.gz rneovim-ee1199eaba7cafa6b60611ebece1407bc274e330.tar.bz2 rneovim-ee1199eaba7cafa6b60611ebece1407bc274e330.zip |
man.vim: remove K mapping #11472
Since #11457 this mapping is no longer necessary.
'keywordprg' defaults to :Man in options.lua
-rw-r--r-- | runtime/ftplugin/man.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/ftplugin/man.vim b/runtime/ftplugin/man.vim index 7c535dc839..081181cfe9 100644 --- a/runtime/ftplugin/man.vim +++ b/runtime/ftplugin/man.vim @@ -26,7 +26,6 @@ if !exists('g:no_plugin_maps') && !exists('g:no_man_maps') nnoremap <silent> <buffer> j gj nnoremap <silent> <buffer> k gk nnoremap <silent> <buffer> gO :call man#show_toc()<CR> - nnoremap <silent> <buffer> K :Man<CR> if 1 == bufnr('%') || s:pager nnoremap <silent> <buffer> <nowait> q :lclose<CR>:q<CR> else |