You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested your fish plugin on Ubuntu 22 and Ubuntu 24.
The only thing that seems different is their respective version of starship prompt (same terminal app with same profile configuration.
For Ubuntu 22.04
> starship --version
starship 1.17.1
For Ubuntu 24.04
> starship --version
starship 1.20.1
Both Ubuntu 22 and 24 output:
> fish --version
fish, version 3.7.1
> fisher --version
fisher, version 4.4.5
> functions man
# Defined in /home/profchep/.config/fish/functions/man.fish @ line 1functionman --description 'Run man with added colors'set --local --export MANPATH $MANPATH# special case for NetBSD and FreeBSD: set MANPATH if not already set# see https://github.com/fish-shell/fish-shell/blob/555af37616893160ad1afb208a957d6a01a7a315/share/functions/man.fish#L15iftest -z "$MANPATH"ifset path (command man -p 2>/dev/null)
set MANPATH (string replace --regex '[^/]+$'''$path)
elseset MANPATH ""
end
end
# prepend the directory of fish manpages to MANPATHset fish_manpath $__fish_data_dir/man
iftest -d $fish_manpathset --prepend MANPATH $fish_manpath
end
cless (command --search man) $argv
end
> functions cless
# Defined in /home/profchep/.config/fish/functions/cless.fish @ line 1functioncless --description 'Configure less to colorize styled text using environment variables before executing a command that will use less'set -x LESS_TERMCAP_md (set_color --bold 0280A5) # start boldset -x LESS_TERMCAP_me (set_color normal) # end boldset -x LESS_TERMCAP_us (set_color --underline 5BA502) # start underlineset -x LESS_TERMCAP_ue (set_color normal) # end underlineset -x LESS_TERMCAP_so (set_color --reverse F0CB02) # start standoutset -x LESS_TERMCAP_se (set_color normal) # end standout$argv
end
>echo$PAGER
The text was updated successfully, but these errors were encountered:
I tested your fish plugin on Ubuntu 22 and Ubuntu 24.
The only thing that seems different is their respective version of starship prompt (same terminal app with same profile configuration.
For Ubuntu 22.04
> starship --version starship 1.17.1
For Ubuntu 24.04
> starship --version starship 1.20.1
Both Ubuntu 22 and 24 output:
> fish --version fish, version 3.7.1
> fisher --version fisher, version 4.4.5
The text was updated successfully, but these errors were encountered: