aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/prompt_pwd.fish
diff options
context:
space:
mode:
authorGravatar Gary Peck <gary+github@realify.com>2015-10-09 15:37:43 -0700
committerGravatar Fabian Homborg <FHomborg@gmail.com>2015-10-26 13:11:13 +0100
commit09bd938e252fd983fb93a50e5c177b4a41642ce0 (patch)
tree3ca41b36b80098fff80891308764e581e63fbad7 /share/functions/prompt_pwd.fish
parentd5f3a09ce932779346d521afe1ba0ffdcb1cbfa9 (diff)
Add ability to customize the amount of path shortening in prompt_pwd
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.
Diffstat (limited to 'share/functions/prompt_pwd.fish')
-rw-r--r--share/functions/prompt_pwd.fish13
1 files changed, 12 insertions, 1 deletions
diff --git a/share/functions/prompt_pwd.fish b/share/functions/prompt_pwd.fish
index 4c766599..c519c6cc 100644
--- a/share/functions/prompt_pwd.fish
+++ b/share/functions/prompt_pwd.fish
@@ -1,4 +1,15 @@
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 ~
- string replace -r '^'"$realhome"'($|/)' '~$1' $PWD | string replace -ar '([^/.])[^/]*/' '$1/'
+ 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