dd3895ccbd
Multi-line description of commit, feel free to be detailed. [Ticket: X] ~ ~ ".git/COMMIT_EDITMSG" 14L, 297C
91 lines
3.4 KiB
Fish
91 lines
3.4 KiB
Fish
# Deactivate the default virtualenv prompt so that we can add our own
|
|
set --global --export VIRTUAL_ENV_DISABLE_PROMPT 1
|
|
|
|
# Whether or not is a fresh session
|
|
set --global _pure_fresh_session true
|
|
|
|
set --global _pure_root (status current-filename | string replace --regex '/[^/]+$' '' | string replace --regex '/[^/]+$' '')
|
|
|
|
# Register `_pure_prompt_new_line` as an event handler for `fish_prompt`
|
|
for fpath in $fish_function_path
|
|
test -e $fpath/_pure_prompt_new_line.fish && source $fpath/_pure_prompt_new_line.fish
|
|
end
|
|
|
|
function _pure \
|
|
--description 'Display branding for pure prompt'
|
|
|
|
printf "%s %s" \
|
|
(set_color $pure_color_warning)$pure_symbol_prompt$pure_symbol_reverse_prompt$pure_symbol_prompt \
|
|
(set_color $pure_color_primary)"pure"(set_color normal)
|
|
end
|
|
|
|
function _pure_install --on-event pure_install \
|
|
--description 'Fisher handler when pure prompt is installed'
|
|
|
|
source $_pure_root/conf.d/pure.fish
|
|
|
|
printf "Now using: %s %s\n" \
|
|
(_pure) \
|
|
(set_color --bold $pure_color_success)$pure_version(set_color normal)
|
|
end
|
|
|
|
# Fisher emit an event for all files under conf.d/.
|
|
# We listen to the event when the new conf.d/_pure_init.fish is sourced,
|
|
# to read old `pure_version` before sourcing conf.d/pure.fish happens.
|
|
function _pure_update --on-event _pure_init_update \
|
|
--description 'Fisher handler pure prompt is updated'
|
|
|
|
set --local previous_version $pure_version
|
|
source $_pure_root/conf.d/pure.fish
|
|
|
|
printf "Updating: %s %s → %s\n\t%s\n" \
|
|
(_pure) \
|
|
(set_color $pure_color_info)$previous_version(set_color normal) \
|
|
(set_color --bold $pure_color_success)$pure_version(set_color normal) \
|
|
" 📖 release notes: "(set_color $pure_color_info)"https://github.com/pure-fish/pure/releases/tag/v$pure_version"(set_color normal)
|
|
end
|
|
|
|
function _pure_uninstall --on-event pure_uninstall \
|
|
--description 'Fisher handler pure prompt is uninstalled'
|
|
|
|
rm -f $_pure_root/conf.d/pure.fish
|
|
|
|
# erase existing fish_prompt and fish_title to default
|
|
functions --erase fish_prompt
|
|
functions --erase fish_title
|
|
|
|
# restore fish_prompt and fish_title to default
|
|
# reload them into active session
|
|
# To remain compatible with both single-binary fish and traditional installations
|
|
# https://github.com/fish-shell/fish-shell/issues/11429#issuecomment-2834407208
|
|
if status list-files functions/fish_prompt.fish >/dev/null # standalone binary Fish ≥4.1.2
|
|
status get-file functions/fish_prompt.fish \
|
|
| tee $__fish_config_dir/functions/fish_prompt.fish \
|
|
| source
|
|
status get-file functions/fish_title.fish \
|
|
| tee $__fish_config_dir/functions/fish_title.fish \
|
|
| source
|
|
else # traditional installation
|
|
cat $__fish_data_dir/functions/fish_prompt.fish \
|
|
| tee $__fish_config_dir/functions/fish_prompt.fish \
|
|
| source
|
|
cat $__fish_data_dir/functions/fish_title.fish \
|
|
| tee $__fish_config_dir/functions/fish_title.fish \
|
|
| source
|
|
end
|
|
|
|
# delete _pure* files
|
|
for file in $_pure_root/{functions,conf.d}/_pure_*
|
|
rm -f $file
|
|
end
|
|
|
|
# erase _pure* variables
|
|
set --names \
|
|
| string replace --filter --regex '(^_?pure)' 'set --erase $1' \
|
|
| source
|
|
# erase _pure* functions
|
|
functions --names --all \
|
|
| string replace --filter --regex '(^_?pure)' 'functions --erase $1' \
|
|
| source
|
|
end
|