Add newline before listing current token.

This commit is contained in:
nulltrek 2013-09-12 12:10:24 +02:00 committed by David Adam (zanchey)
parent 1565f9d9c3
commit daf3469ce4

View file

@ -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