From daf3469ce4eab8f772b03944dcf788c4608d0ca2 Mon Sep 17 00:00:00 2001 From: nulltrek Date: Thu, 12 Sep 2013 12:10:24 +0200 Subject: [PATCH] Add newline before listing current token. --- share/functions/__fish_list_current_token.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/functions/__fish_list_current_token.fish b/share/functions/__fish_list_current_token.fish index 878ac9d1b..a88978cc3 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