mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
20 lines
464 B
Fish
20 lines
464 B
Fish
function dirs --description 'Print directory stack'
|
|
set -l options 'h/help' 'c'
|
|
argparse -n dirs --max-args=0 $options -- $argv
|
|
or return
|
|
|
|
if set -q _flag_help
|
|
__fish_print_help dirs
|
|
return 0
|
|
end
|
|
|
|
if set -q _flag_c
|
|
# Clear directory stack.
|
|
set -e -g dirstack
|
|
return 0
|
|
end
|
|
|
|
# Replace $HOME with ~.
|
|
string replace -r '^'"$HOME"'($|/)' '~$1' -- $PWD $dirstack | string join " "
|
|
echo
|
|
end
|