aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pilling <robpilling@gmail.com>2019-11-28 22:04:40 +0000
committerJustin M. Keyes <justinkz@gmail.com>2019-11-28 14:04:40 -0800
commitee1199eaba7cafa6b60611ebece1407bc274e330 (patch)
tree31ded9d1b27ecc7446391abdf8c2a6c855201faf
parent7fef0f8db4e04b077e7cd4f195c78ea3fc4c691c (diff)
downloadrneovim-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.vim1
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