aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-05-13 12:10:17 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-05-13 12:10:17 -0700
commit149e601743f2ad85df8a3bd0cc857bfd0387ef67 (patch)
tree0fabbb6b168da9acf889955fb1c724acd0cc4178 /share/functions
parenta998921f399f9657cf04313cc99e5116c6d11c98 (diff)
Remove the errant newline in __fish_cancel_commandline again
Diffstat (limited to 'share/functions')
-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