aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-04-29 15:33:46 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-04-29 15:33:46 -0700
commitb064da8d38370af43d9b859087b8d919bdf40d5e (patch)
tree75019cf42f878ebbbb97af2e09df61d801161741 /share
parentba5a55b754d24270222380c1f5f722dc8b4dc4c5 (diff)
Erase the autosuggestion in fish_cancel_commandline by clearing to EOL
Diffstat (limited to 'share')
-rw-r--r--share/functions/__fish_cancel_commandline.fish3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/functions/__fish_cancel_commandline.fish b/share/functions/__fish_cancel_commandline.fish
index 5117e738..959e6800 100644
--- a/share/functions/__fish_cancel_commandline.fish
+++ b/share/functions/__fish_cancel_commandline.fish
@@ -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