Remove an errant newline in the fish_cancel_commandline output

Now the next line appears immediately after the cancelled line,
without an intervening newline
This commit is contained in:
ridiculousfish 2016-04-29 14:55:23 -07:00
parent bd2b107d37
commit ba5a55b754

View File

@ -3,7 +3,7 @@ function __fish_cancel_commandline
set -l cmd (commandline)
if test -n "$cmd"
commandline -C 1000000
echo (set_color -b bryellow black)"^C"(set_color normal)
echo -n (set_color -b bryellow black)"^C"(set_color normal)
for i in (seq (commandline -L))
echo ""
end