Remove the errant newline in __fish_cancel_commandline again

This commit is contained in:
ridiculousfish 2016-05-13 12:10:17 -07:00
parent a998921f39
commit 149e601743

View File

@ -9,7 +9,7 @@ function __fish_cancel_commandline
#
# Set reverse fg/bg color mode, output ^C, restore normal mode, clear to EOL (to erase any
# autosuggestion).
echo (tput smso)"^C"(tput rmso)(tput el)
echo -n (tput smso)"^C"(tput rmso)(tput el)
for i in (seq (commandline -L))
echo ""
end