mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
09bd938e25
Allows the length of each shortened path component to be customized by setting the `fish_prompt_pwd_dir_length` variable to the number of characters to include (plus a leading dot because that's special). Maintains the default behavior of shortening path components to just one character. You can also set `fish_prompt_pwd_dir_length` to an empty or invalid value or 0 to disable shortening completely.
16 lines
624 B
Fish
16 lines
624 B
Fish
function prompt_pwd --description "Print the current working directory, shortened to fit the prompt"
|
|
# This allows overriding fish_prompt_pwd_dir_length from the outside (global or universal) without leaking it
|
|
set -q fish_prompt_pwd_dir_length; or set -l fish_prompt_pwd_dir_length 1
|
|
|
|
# Replace $HOME with "~"
|
|
set realhome ~
|
|
set -l tmp (string replace -r '^'"$realhome"'($|/)' '~$1' $PWD)
|
|
|
|
if [ $fish_prompt_pwd_dir_length -eq 0 ]
|
|
echo $tmp
|
|
else
|
|
# Shorten to at most $fish_prompt_pwd_dir_length characters per directory
|
|
string replace -ar '(\.?[^/]{'"$fish_prompt_pwd_dir_length"'})[^/]*/' '$1/' $tmp
|
|
end
|
|
end
|