mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 08:18:17 +00:00

- do not create leader maps - :norm! instead of :norm - :keepjumps during layout - use blackhole reg to avoid polluting unnamed reg - format buffer name as "man://foo(2)" - simulate behavior of `man` - buffer-local mapping of q to quit - open in new tab instead of new window - set 'nolist' - set tabstop=8
7 lines
115 B
VimL
7 lines
115 B
VimL
if get(g:, 'loaded_man', 0)
|
|
finish
|
|
endif
|
|
let g:loaded_man = 1
|
|
|
|
command! -nargs=+ Man call man#get_page(<f-args>)
|