mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 03:54:04 +08:00
349eff0df7
This allows the user to define how they want the "^C" rendered when a pending command line is interrupted.
18 lines
518 B
Fish
18 lines
518 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 -ns (set_color $fish_color_cancel) "^C" (set_color normal)
|
|
if command -sq tput
|
|
# Clear to EOL (to erase any autosuggestion).
|
|
echo -n (tput el; or tput ce)
|
|
end
|
|
for i in (seq (commandline -L))
|
|
echo ""
|
|
end
|
|
commandline ""
|
|
commandline -f repaint
|
|
end
|
|
end
|