aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-05-13 12:10:17 -0700
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2016-05-13 23:19:53 +0100
commit768277a312e1f91248d00d80af814d2c6721dc85 (patch)
treecdb6ba70be75f148a6a3eae6563d7802d60effa4 /share
parentc53951b9b3a340de049c6b5417b99f88f4427f47 (diff)
Remove the errant newline in __fish_cancel_commandline again
(cherry picked from commit 149e601743f2ad85df8a3bd0cc857bfd0387ef67)
Diffstat (limited to 'share')
-rw-r--r--share/functions/__fish_cancel_commandline.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/functions/__fish_cancel_commandline.fish b/share/functions/__fish_cancel_commandline.fish
index fb378f25..e48d32ad 100644
--- a/share/functions/__fish_cancel_commandline.fish
+++ b/share/functions/__fish_cancel_commandline.fish
@@ -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