mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-06 22:51:14 -03:00
`set_color normal` is too ambiguous and easily misinterpreted since it actually reset all colors and modes instead of resetting just the foreground color as one without prior knowledge might expect. Closes #12548
30 lines
614 B
Fish
30 lines
614 B
Fish
# name: Simple Pythonista
|
|
# author: davbo
|
|
|
|
function fish_prompt
|
|
if not set -q VIRTUAL_ENV_DISABLE_PROMPT
|
|
set -g VIRTUAL_ENV_DISABLE_PROMPT true
|
|
end
|
|
set_color yellow
|
|
printf '%s' $USER
|
|
set_color --reset
|
|
printf ' at '
|
|
|
|
set_color magenta
|
|
echo -n (prompt_hostname)
|
|
set_color --reset
|
|
printf ' in '
|
|
|
|
set_color $fish_color_cwd
|
|
printf '%s' (prompt_pwd)
|
|
set_color --reset
|
|
|
|
# Line 2
|
|
echo
|
|
if test -n "$VIRTUAL_ENV"
|
|
printf "(%s) " (set_color blue)(path basename $VIRTUAL_ENV)(set_color --reset)
|
|
end
|
|
printf '↪ '
|
|
set_color --reset
|
|
end
|