mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Erase the autosuggestion in fish_cancel_commandline by clearing to EOL
This commit is contained in:
parent
ba5a55b754
commit
b064da8d38
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,8 @@ function __fish_cancel_commandline
|
|||
set -l cmd (commandline)
|
||||
if test -n "$cmd"
|
||||
commandline -C 1000000
|
||||
echo -n (set_color -b bryellow black)"^C"(set_color normal)
|
||||
# set a color, output ^C, restore color, clear to EOL (to erase any autosuggestion)
|
||||
echo -n (set_color -b bryellow black)"^C"(set_color normal)\033"[0K"
|
||||
for i in (seq (commandline -L))
|
||||
echo ""
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue