update dirs to use argparse

This commit is contained in:
Kurtis Rader 2017-07-13 11:53:29 -07:00
parent 30baf8d101
commit df65ed8696

View file

@ -1,15 +1,20 @@
function dirs --description 'Print directory stack'
# process options
if set -q argv[1]
switch $argv[1]
case -c
# clear 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
end
# replace $HOME with ~
# Replace $HOME with ~.
string replace -r '^'"$HOME"'($|/)' '~$1' -- $PWD $dirstack | string join " "
echo
end