From 79ef4b72d7cadb094aec35ec26dce2e8bfcda417 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Sun, 7 Aug 2016 23:17:56 -0400 Subject: man.vim: doc fixes #5171 - Weird tab+space combination used for alignment. All spaces now - Added back mapping (somehow we missed that completely) - Fixed mistake that (Man) opens in a new tab. Also added note at top on how the window is chosen/opened. - Clarified q local mapping - Removed section that shows an example autocmd to add desired folding style. - Removed random line in `usr_12.txt` about `` and backslash. - :Man supports completion, not auto-completion. Closes #5171 --- runtime/ftplugin/man.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'runtime/ftplugin') diff --git a/runtime/ftplugin/man.vim b/runtime/ftplugin/man.vim index 614e1cb161..79aecb123d 100644 --- a/runtime/ftplugin/man.vim +++ b/runtime/ftplugin/man.vim @@ -41,8 +41,9 @@ setlocal nolist setlocal nofoldenable if !exists('g:no_plugin_maps') && !exists('g:no_man_maps') - nmap (Man) - nmap K (Man) + nmap (Man) + nmap K (Man) + nnoremap :call man#pop_tag() if s:pager nnoremap q :q else -- cgit