Skip to content

Commit

Permalink
make alt-L output respect multi-line prompts
Browse files Browse the repository at this point in the history
Fixes #718
  • Loading branch information
OwenAR authored and Kurtis Rader committed Mar 18, 2016
1 parent 03460a3 commit 9f0417b
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions share/functions/__fish_list_current_token.fish
@@ -1,22 +1,26 @@

#
# This function is bound to Alt-L, it is used to list the contents of
# the directory under the cursor
#
# This function is typically bound to Alt-L, it is used to list the contents
# of the directory under the cursor.

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
set dir (dirname $val)
if test $dir != . -a -d $dir
ls $dir
else
ls
end
end
commandline -f repaint
end
set val (eval echo (commandline -t))
printf "\n"
if test -d $val
ls $val
else
set dir (dirname $val)
if test $dir != . -a -d $dir
ls $dir
else
ls
end
end

set -l line_count (count (fish_prompt))
if test $line_count -gt 1
for x in (seq 2 $line_count)
printf "\n"
end
end

commandline -f repaint
end

0 comments on commit 9f0417b

Please sign in to comment.