diff options
Diffstat (limited to 'runtime/plugin')
| -rw-r--r-- | runtime/plugin/man.vim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/plugin/man.vim b/runtime/plugin/man.vim index b5b118fbe3..12762f1854 100644 --- a/runtime/plugin/man.vim +++ b/runtime/plugin/man.vim @@ -12,8 +12,4 @@ nnoremap <silent> <Plug>(Man) :<C-U>call man#open_page(v:count, v:count1, &filet augroup man autocmd! autocmd BufReadCmd man://* call man#read_page(matchstr(expand('<amatch>'), 'man://\zs.*')) - " Need this because without it, if you do ':Man printf(3)' and then later, - " open a session that contains a buffer named 'man://printf(3)', the buffer - " will become listed. - autocmd BufEnter man://* set nobuflisted augroup END |