diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-10-21 02:33:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 02:33:58 +0200 |
commit | 70683705603e8e0e225574f01bc8b6824d5320eb (patch) | |
tree | 450d984a30f9297d0ec738d4bcee1b1cef816edc /runtime/ftplugin | |
parent | 37420ef942085bf5e9344842a57c796b4d4c9684 (diff) | |
download | rneovim-70683705603e8e0e225574f01bc8b6824d5320eb.tar.gz rneovim-70683705603e8e0e225574f01bc8b6824d5320eb.tar.bz2 rneovim-70683705603e8e0e225574f01bc8b6824d5320eb.zip |
help, man.vim: change "outline" map to gO (#7405)
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/help.vim | 2 | ||||
-rw-r--r-- | runtime/ftplugin/man.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/help.vim b/runtime/ftplugin/help.vim index 9d2361b413..e6d48454d9 100644 --- a/runtime/ftplugin/help.vim +++ b/runtime/ftplugin/help.vim @@ -90,7 +90,7 @@ if !exists('g:no_plugin_maps') let w:qf_toc = bufname endfunction - nnoremap <silent><buffer> <M-]> :call <sid>show_toc()<cr> + nnoremap <silent><buffer> gO :call <sid>show_toc()<cr> endif let &cpo = s:cpo_save diff --git a/runtime/ftplugin/man.vim b/runtime/ftplugin/man.vim index 27c8b88e44..e36dfc5a90 100644 --- a/runtime/ftplugin/man.vim +++ b/runtime/ftplugin/man.vim @@ -31,7 +31,7 @@ setlocal nolist setlocal nofoldenable if !exists('g:no_plugin_maps') && !exists('g:no_man_maps') - nnoremap <silent> <buffer> <M-]> :call man#show_toc()<CR> + nnoremap <silent> <buffer> gO :call man#show_toc()<CR> nnoremap <silent> <buffer> <C-]> :Man<CR> nnoremap <silent> <buffer> K :Man<CR> nnoremap <silent> <buffer> <C-T> :call man#pop_tag()<CR> |