On 9/6/06, Andrei A. Voropaev <[EMAIL PROTECTED]> wrote:
Hello!
If I hit K in normal mode, then I get man page for the word I'm in. But
in gvim this does not quite work. First I get the warning "Terminal is
not fully functional", and then comes the man page with formatting like
this
[1mSYNOPSIS[0m
I also get "Terminal is not fully functional", but otherwise, contents of
the manpage looks normal. This is FC5 fedora core linux, vim7.0.86/gtk2.
The message "Terminal is not fully functional" comes from 'less'
pager, it seems.
Try these things:
1. export MANPAGER=more
or
set kp=man\ -P\ more
2. If that does not fix the problem, then try this:
set kp=myman
where myman is following 1-liner script which you need to puto
put it into your PATH
--------------------------- myman --------------------------------
#!/bin/sh
man "$@" | col -b | more
Yakov