aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_list_current_token.fish
blob: 0a0f2dab1759a865a07085257a50c354564be750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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

    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