From b064da8d38370af43d9b859087b8d919bdf40d5e Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Fri, 29 Apr 2016 15:33:46 -0700 Subject: Erase the autosuggestion in fish_cancel_commandline by clearing to EOL --- share/functions/__fish_cancel_commandline.fish | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'share') 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 -- cgit v1.2.3