diff options
| author | ZyX <kp-pav@yandex.ru> | 2017-10-30 00:49:12 +0300 |
|---|---|---|
| committer | ZyX <kp-pav@yandex.ru> | 2017-10-30 00:49:12 +0300 |
| commit | b29a776550dadefefb891d01054ea21eb942bad1 (patch) | |
| tree | 799bb2c0e926a20ac5b1af262f0849208eae699a /runtime/ftplugin | |
| parent | 538af1c90a4ac9928f60e97338869e516def4956 (diff) | |
| parent | 45296b331fa462eeabb141037ad10a3ad24ab8a6 (diff) | |
| download | rneovim-b29a776550dadefefb891d01054ea21eb942bad1.tar.gz rneovim-b29a776550dadefefb891d01054ea21eb942bad1.tar.bz2 rneovim-b29a776550dadefefb891d01054ea21eb942bad1.zip | |
Merge branch 'master' into expression-parser
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> |