mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
ba5a55b754
Now the next line appears immediately after the cancelled line, without an intervening newline
14 lines
374 B
Fish
14 lines
374 B
Fish
# This is meant to be bound to something like \cC.
|
|
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)
|
|
for i in (seq (commandline -L))
|
|
echo ""
|
|
end
|
|
commandline ""
|
|
commandline -f repaint
|
|
end
|
|
end
|