2016-04-14 10:46:18 +08:00
|
|
|
# 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
|
2016-04-30 06:34:10 +08:00
|
|
|
# TODO: Switch from using tput and standout mode to `set_color` when themes have been
|
|
|
|
# augmented to include support for background colors or has support for standout/reverse
|
|
|
|
# mode.
|
|
|
|
#
|
|
|
|
# Set reverse fg/bg color mode, output ^C, restore normal mode, clear to EOL (to erase any
|
|
|
|
# autosuggestion).
|
2016-12-31 22:12:05 +08:00
|
|
|
if command -sq tput
|
|
|
|
echo -ns (set_color -r) "^C" (set_color normal) (tput el; or tput ce)
|
2016-09-01 22:30:50 +08:00
|
|
|
else
|
|
|
|
echo -n "^C"
|
|
|
|
end
|
2016-04-14 10:46:18 +08:00
|
|
|
for i in (seq (commandline -L))
|
|
|
|
echo ""
|
|
|
|
end
|
|
|
|
commandline ""
|
|
|
|
commandline -f repaint
|
|
|
|
end
|
|
|
|
end
|