mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 00:17:25 +00:00
Remove stale mention of plus key name
This commit is contained in:
parent
414d9a1eb1
commit
c9793711dc
2 changed files with 1 additions and 2 deletions
|
@ -30,7 +30,6 @@ Key names are case-sensitive; for example ``alt-W`` is the same as ``alt-shift-w
|
||||||
Some keys have names, usually because they don't have an obvious printable character representation.
|
Some keys have names, usually because they don't have an obvious printable character representation.
|
||||||
They are:
|
They are:
|
||||||
|
|
||||||
``plus`` (``+``),
|
|
||||||
``minus`` (``-``),
|
``minus`` (``-``),
|
||||||
``comma`` (``,``),
|
``comma`` (``,``),
|
||||||
``backspace``,
|
``backspace``,
|
||||||
|
|
|
@ -68,7 +68,7 @@ function __fish_bind_complete
|
||||||
printf '%sctrl-\tCtrl modifier…\n' $prefix
|
printf '%sctrl-\tCtrl modifier…\n' $prefix
|
||||||
printf '%salt-\tAlt modifier…\n' $prefix
|
printf '%salt-\tAlt modifier…\n' $prefix
|
||||||
printf '%sshift-\tShift modifier…\n' $prefix
|
printf '%sshift-\tShift modifier…\n' $prefix
|
||||||
set -l key_names plus minus comma backspace delete escape \
|
set -l key_names minus comma backspace delete escape \
|
||||||
enter up down left right pageup pagedown home end insert tab \
|
enter up down left right pageup pagedown home end insert tab \
|
||||||
space F(seq 12)
|
space F(seq 12)
|
||||||
printf '%s\tNamed key\n' $prefix$key_names
|
printf '%s\tNamed key\n' $prefix$key_names
|
||||||
|
|
Loading…
Reference in a new issue