mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
Remove the errant newline in __fish_cancel_commandline again
(cherry picked from commit 149e601743
)
This commit is contained in:
parent
c53951b9b3
commit
768277a312
1 changed files with 1 additions and 1 deletions
|
@ -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
|
# Set reverse fg/bg color mode, output ^C, restore normal mode, clear to EOL (to erase any
|
||||||
# autosuggestion).
|
# autosuggestion).
|
||||||
echo (tput smso)"^C"(tput rmso)(tput el)
|
echo -n (tput smso)"^C"(tput rmso)(tput el)
|
||||||
for i in (seq (commandline -L))
|
for i in (seq (commandline -L))
|
||||||
echo ""
|
echo ""
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue