rc man: Drop helper command

The mappings declaration code is not necessarily more readable and
the resulting command is shorter by a single flag.
This commit is contained in:
Frank LENORMAND 2021-11-04 07:17:54 +03:00
parent 28559bc1e7
commit 924ca6b43a

View File

@ -137,11 +137,7 @@ man-jump %{
# Suggested keymaps for a user mode
declare-user-mode man
define-command man-mode-map -params 3 %{
map global man %arg[1] %arg[2] -docstring %arg[3]
} -hidden
man-mode-map 'g' ': man-jump<ret>' 'Jump to a man page using selected man page link'
man-mode-map 'j' ': try %{ man-link-next }<ret>' 'Go to next man page link'
man-mode-map 'k' ': try %{ man-link-prev }<ret>' 'Go to previous man page link'
man-mode-map 'm' ': man<space>' 'Look up a man page'
map global man 'g' -docstring 'Jump to a man page using selected man page link' ': man-jump<ret>'
map global man 'j' -docstring 'Go to next man page link' ': try %{ man-link-next }<ret>'
map global man 'k' -docstring 'Go to previous man page link' ': try %{ man-link-prev }<ret>'
map global man 'm' -docstring 'Look up a man page' ': man<space>'