diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-24 17:37:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-24 17:37:47 -0800 |
commit | 544eeeb0d65cb30cf00196acd99d0bf93e79ae16 (patch) | |
tree | b39dd6cabbbe10ccb49ba843fcb225d0b322ae6e /runtime/autoload/man.vim | |
parent | 526798a941b4cf80fd1f128b40e51fb47c77b654 (diff) | |
parent | afaa0626430ba0150729a088234698de85174ce6 (diff) | |
download | rneovim-544eeeb0d65cb30cf00196acd99d0bf93e79ae16.tar.gz rneovim-544eeeb0d65cb30cf00196acd99d0bf93e79ae16.tar.bz2 rneovim-544eeeb0d65cb30cf00196acd99d0bf93e79ae16.zip |
Merge #11451 'man.vim: Fixes'
Diffstat (limited to 'runtime/autoload/man.vim')
-rw-r--r-- | runtime/autoload/man.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/man.vim b/runtime/autoload/man.vim index c559ca9f27..809e4a19d8 100644 --- a/runtime/autoload/man.vim +++ b/runtime/autoload/man.vim @@ -139,7 +139,7 @@ function! s:get_page(path) abort " Disable hard-wrap by using a big $MANWIDTH (max 1000 on some systems #9065). " 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) + let manwidth = !get(g:,'man_hardwrap', 1) ? 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. |