aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar nulltrek <pumabit@gmail.com>2013-09-12 12:10:24 +0200
committerGravatar David Adam (zanchey) <zanchey@ucc.gu.uwa.edu.au>2013-09-13 14:30:13 +0800
commitdaf3469ce4eab8f772b03944dcf788c4608d0ca2 (patch)
treeaae73e2be844140e69a44d5ebd23e288674295a7 /share
parent1565f9d9c3bf5957edf7cb2665f978b34a0c6054 (diff)
Add newline before listing current token.
Diffstat (limited to 'share')
-rw-r--r--share/functions/__fish_list_current_token.fish1
1 files changed, 1 insertions, 0 deletions
diff --git a/share/functions/__fish_list_current_token.fish b/share/functions/__fish_list_current_token.fish
index 878ac9d1..a88978cc 100644
--- a/share/functions/__fish_list_current_token.fish
+++ b/share/functions/__fish_list_current_token.fish
@@ -6,6 +6,7 @@
function __fish_list_current_token -d "List contents of token under the cursor if it is a directory, otherwise list the contents of the current directory"
set val (eval echo (commandline -t))
+ printf "\n"
if test -d $val
ls $val
else