aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/autoload/man.vim5
-rw-r--r--runtime/doc/filetype.txt1
2 files changed, 4 insertions, 2 deletions
diff --git a/runtime/autoload/man.vim b/runtime/autoload/man.vim
index 41c2f5a405..153f1afed8 100644
--- a/runtime/autoload/man.vim
+++ b/runtime/autoload/man.vim
@@ -150,8 +150,9 @@ endfunction
function! s:get_page(path) abort
" Disable hard-wrap by using a big $MANWIDTH (max 1000 on some systems #9065).
- " We use soft wrap: ftplugin/man.vim sets wrap/breakindent/….
- let manwidth = 999
+ " Soft-wrap: ftplugin/man.vim sets wrap/breakindent/….
+ " Hard-wrap: driven by `man`.
+ let manwidth = !get(g:,'man_hardwrap') ? 999 : (empty($MANWIDTH) ? winwidth(0) : $MANWIDTH)
" Force MANPAGER=cat to ensure Vim is not recursively invoked (by man-db).
" http://comments.gmane.org/gmane.editors.vim.devel/29085
" Set MAN_KEEP_FORMATTING so Debian man doesn't discard backspaces.
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt
index 92404440da..a4a5d6188b 100644
--- a/runtime/doc/filetype.txt
+++ b/runtime/doc/filetype.txt
@@ -552,6 +552,7 @@ Variables:
*b:man_default_sects* Comma-separated, ordered list of preferred sections.
For example in C one usually wants section 3 or 2: >
:let b:man_default_sections = '3,2'
+*g:man_hardwrap* Hard-wrap to $MANWIDTH. May improve layout.
PDF *ft-pdf-plugin*