mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
trivial fixes to make doxygen happy
This commit is contained in:
parent
f28a1c58f3
commit
b8817215dc
2 changed files with 3 additions and 3 deletions
|
@ -131,7 +131,7 @@ The following special input functions are available:
|
||||||
\subsection bind-example Examples
|
\subsection bind-example Examples
|
||||||
|
|
||||||
\fish
|
\fish
|
||||||
bind \cd 'exit'
|
bind \\cd 'exit'
|
||||||
\endfish
|
\endfish
|
||||||
Causes `fish` to exit when @key{Control,D} is pressed.
|
Causes `fish` to exit when @key{Control,D} is pressed.
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ Performs a history search when the @key{Page Up} key is pressed.
|
||||||
|
|
||||||
\fish
|
\fish
|
||||||
set -g fish_key_bindings fish_vi_key_bindings
|
set -g fish_key_bindings fish_vi_key_bindings
|
||||||
bind -M insert \cc kill-whole-line force-repaint
|
bind -M insert \\cc kill-whole-line force-repaint
|
||||||
\endfish
|
\endfish
|
||||||
Turns on Vi key bindings and rebinds @key{Control,C} to clear the input line.
|
Turns on Vi key bindings and rebinds @key{Control,C} to clear the input line.
|
||||||
|
|
||||||
|
|
|
@ -55,6 +55,6 @@ echo 'Hello World'
|
||||||
Print hello world to stdout
|
Print hello world to stdout
|
||||||
|
|
||||||
\fish
|
\fish
|
||||||
echo -e 'Top\nBottom'
|
echo -e 'Top\\nBottom'
|
||||||
\endfish
|
\endfish
|
||||||
Print Top and Bottom on separate lines, using an escape sequence
|
Print Top and Bottom on separate lines, using an escape sequence
|
||||||
|
|
Loading…
Reference in a new issue