1- *filetype.txt* For Vim version 8.0. Last change: 2017 Dec 05
1+ *filetype.txt* For Vim version 8.0. Last change: 2018 Feb 04
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -602,51 +602,17 @@ MANPAGER *manpager.vim*
602602The :Man command allows you to turn Vim into a manpager (that syntax highlights
603603manpages and follows linked manpages on hitting CTRL-] ).
604604
605- Tested on:
606-
607- - Linux
608- - Mac OS
609- - FreeBSD
610- - OpenBSD
611- - Cygwin
612- - Win 10 under Bash
613-
614- Untested:
615-
616- - Amiga OS
617- - BeOS
618- - OS/2
619-
620- If man sets the $MAN_PN environment variable, like man-db, the most common
621- implementation on Linux, then the "env MAN_PN=1 " part below should NOT be
622- set, that is, the "env MAN_PN=1" should be omitted! Otherwise, the Vim
623- manpager does not correctly recognize manpages whose title contains a capital
624- letter. See the discussion on
625-
626- https://groups.google.com/forum/#!topic/vim_dev/pWZmt_7GkxI
627-
628605For bash,zsh,ksh or dash, add to the config file (.bashrc,.zshrc, ...)
629606
630- export MANPAGER="env MAN_PN=1 vim -M +MANPAGER -"
607+ export MANPAGER="vim -M +MANPAGER -"
631608
632609For (t)csh, add to the config file
633610
634- setenv MANPAGER "env MAN_PN=1 vim -M +MANPAGER -"
611+ setenv MANPAGER "vim -M +MANPAGER -"
635612
636613For fish, add to the config file
637614
638- set -x MANPAGER "env MAN_PN=1 vim -M +MANPAGER -"
639-
640- On OpenBSD:
641-
642- export MANPAGER="env MAN_PN=1 vim -M +MANPAGER"
643-
644- If you experience still issues on manpages whose titles do not contain capital
645- letters, then try adding MANPATH=${MANPATH} after MAN_PN=1. If your manpages do
646- not show up localized, then try adding, LANGUAGE=${LANG} after MAN_PN=1. See
647-
648- https://github.com/vim/vim/issues/1002
649-
615+ set -x MANPAGER "vim -M +MANPAGER -"
650616
651617PDF *ft-pdf-plugin*
652618
@@ -669,7 +635,7 @@ By default the following options are set, in accordance with PEP8: >
669635 setlocal expandtab shiftwidth=4 softtabstop=4 tabstop=8
670636
671637 To disable this behaviour, set the following variable in your vimrc: >
672-
638+
673639 let g:python_recommended_style = 0
674640
675641
0 commit comments