diff options
author | Anmol Sethi <hi@nhooyr.io> | 2019-11-24 19:50:08 -0500 |
---|---|---|
committer | Anmol Sethi <hi@nhooyr.io> | 2019-11-24 20:31:18 -0500 |
commit | 078f279691f7d2b87128f7abc932634027d6dbd5 (patch) | |
tree | 3581227224ef4c985c888adf4bfc10bc4895b8e6 | |
parent | d5aaad14ecdd2047089e1a018e97af1f790b3e42 (diff) | |
download | rneovim-078f279691f7d2b87128f7abc932634027d6dbd5.tar.gz rneovim-078f279691f7d2b87128f7abc932634027d6dbd5.tar.bz2 rneovim-078f279691f7d2b87128f7abc932634027d6dbd5.zip |
man.vim: Document how to disable bold highlighting
Closes #11435
-rw-r--r-- | runtime/doc/filetype.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt index c579c390c6..e46869d46e 100644 --- a/runtime/doc/filetype.txt +++ b/runtime/doc/filetype.txt @@ -549,7 +549,9 @@ 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. +*g:man_hardwrap* Hard-wrap to $MANWIDTH or window width if $MANWIDTH is + empty. Enabled by default. Disable to enable soft + wrapping. To use Nvim as a manpager: > export MANPAGER='nvim +Man!' @@ -563,6 +565,9 @@ soft wrapped as with `:Man`. You can set in your environment: > So `groff`'s pre-formatting output will be the same as with `:Man` i.e soft-wrapped. +To disable bold highlighting: > + :highlight link manBold Normal + PDF *ft-pdf-plugin* Two maps, <C-]> and <C-T>, are provided to simulate a tag stack for navigating |