Info pages: Difference between revisions

From wikinotes
No edit summary
Line 38: Line 38:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
info --vi-keys bash  # show bash manual
info --vi-keys bash  # show bash manual
</syntaxhighlight>
<syntaxhighlight lang="yaml">
h            # help
j/k          # cursor up/down
alt + g      # open link under cursor
alt + (</>)  # top/bottom of section
g/G          # top/bototm of entire document
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->

Revision as of 03:29, 5 October 2021

GNU's successor to man pages.
Supports links between pages.
Built using texinfo.

Documentation

info docs https://www.gnu.org/software/texinfo/manual/info-stnd/info-stnd.html
texinfo docs https://www.gnu.org/software/texinfo/manual/texinfo/html_node/index.html
home https://www.gnu.org/software/texinfo/

Tutorials

gentoo wiki https://wiki.gentoo.org/wiki/Info

Locations

~/.infokey custom keybindings

Usage

info --vi-keys bash  # show bash manual
h             # help
j/k           # cursor up/down
alt + g       # open link under cursor

alt + (</>)  # top/bottom of section
g/G          # top/bototm of entire document