mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
21 lines
464 B
Fish
21 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 " "
|
|
return 0
|
|
end
|