tags:

views:

50

answers:

1

Hello

There is a plugin for vim ftplugin/man.vim

With it I can view man page directly from vim by pressing "K" But scrolling in this internal man apge viewer does not work with pgup/pgdn. Yes, there is some other variant of scroll, but how to enable pgdn/pgup in this plugin?

+1  A: 

add to vimrc:

:let manpageview_multimanpage=0

pgup-pgdn mapped to changing sections of mans (when man is called with man -a and there is the same page in different sections)

osgx