mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-12 18:02:46 +00:00
12 lines
368 B
Fish
12 lines
368 B
Fish
set fail 1
|
|
|
|
function _pure_prompt_current_folder --argument-names current_prompt_width
|
|
|
|
if test -z "$current_prompt_width"; return $fail; end
|
|
|
|
set --local current_folder (_pure_parse_directory (math $COLUMNS - $current_prompt_width - 1))
|
|
set --local current_folder_color "$pure_color_current_directory"
|
|
|
|
echo "$current_folder_color$current_folder"
|
|
end
|