fish documentation manpages: omit NAME for non-commands

Documents like fish-tutorial don't need the NAME portion below.

(they also shoudln't be in section 1! These should be section 7,
they aren't for programs.)

the manpage writer will skip NAME if given an empty sstring as
the description.

--

FISH-TUTORIAL(1)     fish-shell     FISH-TUTORIAL(1)

NAME
       fish-tutorial - fish-shell tutorial
This commit is contained in:
Aaron Gyes
2021-11-05 07:46:27 -07:00
parent d54c8a42a9
commit 3078d0a252
3 changed files with 11 additions and 13 deletions

View File

@@ -77,7 +77,7 @@ Debug messages output to stderr by default. Note that if ``fish_trace`` is set,
::
> fish --debug='complete,*history*' --debug-output=/tmp/fish.log --init-command='set fish_trace on'
These options can also be changed via the :envvar:`FISH_DEBUG` and :envvar:`FISH_DEBUG_OUTPUT` variables.
The categories enabled via ``--debug`` are *added* to the ones enabled by $FISH_DEBUG, so they can be disabled by prefixing them with ``-`` (``reader-*,-ast*`` enables reader debugging and disables ast debugging).