Artifact be6aa8e75b79fcb65e9cdb3ce84cf642de8fe0f9c43e4d1f11e7c2d30873c15e:
- File config/fish/functions/prompt_pwd.fish — part of check-in [bed5a23ae3] at 2020-02-19 21:46:19 on branch trunk — Consistent indenting for .fish files (user: js size: 453)
- File fish/functions/prompt_pwd.fish — part of check-in [24d2eb82f0] at 2020-02-20 22:07:34 on branch trunk — Remove useless config subdirectory (user: js size: 453)
function prompt_pwd --description 'Print the current working directory' set -l options 'h/help' argparse -n prompt_pwd --max-args=0 $options -- $argv or return if set -q _flag_help __fish_print_help prompt_pwd return 0 end # Replace $HOME with "~" set realhome ~ set -l tmp (basename (string replace -r '^'"$realhome"'($|/)' '~$1' $PWD)) test $PWD = "/$tmp" and set tmp $PWD echo $tmp end