2012-03-26 09:38:33 +08:00
function fish_config --description "Launch fish's web based configuration"
2021-04-23 00:27:25 +08:00
argparse h/help -- $argv
or return
if set -q _flag_help
__fish_print_help fish_config
return 0
2016-11-28 13:27:22 +08:00
end
2021-04-23 00:27:25 +08:00
set -l cmd $argv [ 1 ]
set -e argv [ 1 ]
set -q cmd [ 1 ]
or set cmd browse
# The web-based configuration UI
# Also opened with just `fish_config` or `fish_config browse`.
if contains -- $cmd browse
set -lx __fish_bin_dir $__fish_bin_dir
if set -l python ( __fish_anypython )
$python " $__fish_data_dir /tools/web_config/webconfig.py " $argv
2023-11-20 14:20:33 +08:00
# If the execution of 'webconfig.py' fails, display python location and return.
if test $status -ne 0
echo "Please check if Python has been installed successfully."
echo " You can find the location of Python by executing the 'command -s $python ' command. "
return 1
end
2021-04-23 00:27:25 +08:00
else
echo ( set_color $fish_color_error ) Cannot launch the web configuration tool:( set_color normal)
echo ( set_color -o ) "fish_config browse" ( set_color normal) requires Python.
echo Installing python will fix this, and also enable completions to be
echo automatically generated from man pages.\n
echo To change your prompt, use ( set_color -o ) "fish_config prompt" ( set_color normal) or create a ( set_color -o ) "fish_prompt" ( set_color normal) function.
echo To list the samples use ( set_color -o ) "fish_config prompt show" ( set_color normal) .\n
echo You can tweak your colors by setting the ( set_color $fish_color_search_match ) \$ fish_color_\* ( set_color normal) variables.
end
return 0
end
2021-07-10 16:26:58 +08:00
if not contains -- $cmd prompt theme
2021-04-23 00:27:25 +08:00
echo No such subcommand: $cmd > & 2
return 1
end
2021-08-02 00:40:56 +08:00
2022-10-16 03:24:31 +08:00
# Variables a theme is allowed to set
2023-06-02 00:20:19 +08:00
set -l theme_var_filter '^fish_(?:pager_)?color.*$'
2022-10-16 03:24:31 +08:00
2021-04-23 00:27:25 +08:00
switch $cmd
2021-07-10 16:26:58 +08:00
case prompt
# prompt - for prompt switching
set -l cmd $argv [ 1 ]
set -e argv [ 1 ]
if contains -- $cmd list; and set -q argv [ 1 ]
2021-04-23 00:27:25 +08:00
echo "Too many arguments" > & 2
return 1
end
2021-07-10 16:26:58 +08:00
set -l prompt_dir $__fish_data_dir /sample_prompts $__fish_data_dir /tools/web_config/sample_prompts
switch $cmd
case show
set -l fish ( status fish -path)
set -l prompts $prompt_dir /$argv .fish
set -q prompts [ 1 ] ; or set prompts $prompt_dir /*.fish
for p in $prompts
if not test -e " $p "
continue
end
set -l promptname ( string replace -r '.*/([^/]*).fish$' '$1' $p )
echo -s ( set_color --underline ) $promptname ( set_color normal)
2021-07-16 23:28:40 +08:00
$fish -c 'functions -e fish_right_prompt ; source $argv [ 1 ] ;
2021-07-10 16:26:58 +08:00
false
fish_prompt
echo ( set_color normal)
if functions -q fish_right_prompt ;
echo right prompt: ( false ; fish_right_prompt )
2021-07-16 23:28:40 +08:00
end ' $p
2021-08-02 00:40:56 +08:00
echo
2021-07-10 16:26:58 +08:00
end
case list ''
string replace -r '.*/([^/]*).fish$' '$1' $prompt_dir /*.fish
return
case choose
if set -q argv [ 2 ]
echo "Too many arguments" > & 2
return 1
end
if not set -q argv [ 1 ]
echo "Too few arguments" > & 2
return 1
end
2021-04-23 00:27:25 +08:00
2021-09-26 21:34:04 +08:00
set -l have
2021-04-23 00:27:25 +08:00
for f in $prompt_dir /$argv [ 1 ] .fish
if test -f $f
source $f
2021-09-26 21:34:04 +08:00
set have $f
2021-07-10 16:26:58 +08:00
break
2021-04-23 00:27:25 +08:00
end
end
2021-09-26 21:34:04 +08:00
if not set -q have [ 1 ]
2021-04-23 00:27:25 +08:00
echo " No such prompt: ' $argv [1]' " > & 2
return 1
end
2021-09-26 21:34:04 +08:00
# Erase the right prompt if it didn't have any.
2021-09-29 18:12:39 +08:00
if functions -q fish_right_prompt ; and test ( functions --details fish_right_prompt ) != $have [ 1 ]
2021-09-26 21:34:04 +08:00
functions --erase fish_right_prompt
end
2021-07-10 16:26:58 +08:00
case save
read -P "Overwrite prompt? [y/N]" -l yesno
if string match -riq 'y(es)?' -- $yesno
echo Overwriting
2023-01-01 17:57:25 +08:00
# Skip the cp if unnecessary,
# or we'd throw an error on a stock fish.
path is $__fish_config_dir /functions /fish_prompt.fish
and cp $__fish_config_dir /functions /fish_prompt.fish { ,.bak}
2024-08-19 23:03:52 +08:00
path is $__fish_config_dir /functions /fish_right_prompt.fish
and cp $__fish_config_dir /functions /fish_right_prompt.fish { ,.bak}
2021-07-10 16:26:58 +08:00
2021-09-26 21:34:04 +08:00
set -l have
2021-07-10 16:26:58 +08:00
if set -q argv [ 1 ]
for f in $prompt_dir /$argv [ 1 ] .fish
if test -f $f
2021-09-26 21:34:04 +08:00
set have $f
2024-08-19 23:03:52 +08:00
# Set the functions to empty so we empty the file
# if necessary.
2024-09-17 20:44:05 +08:00
function fish_prompt
end
function fish_right_prompt
end
2021-07-10 16:26:58 +08:00
source $f
or return 2
end
end
2021-09-26 21:34:04 +08:00
if not set -q have [ 1 ]
2021-07-10 16:26:58 +08:00
echo " No such prompt: ' $argv [1]' " > & 2
return 1
end
end
funcsave fish_prompt
or return
2021-04-23 00:27:25 +08:00
2021-09-29 18:15:37 +08:00
funcsave fish_right_prompt 2 > /dev/null
2021-07-10 16:26:58 +08:00
return
else
echo Not overwriting
return 1
end
end
return 0
case theme
# Selecting themes
set -l cmd $argv [ 1 ]
set -e argv [ 1 ]
2021-04-23 00:27:25 +08:00
2021-07-10 16:26:58 +08:00
if contains -- $cmd list; and set -q argv [ 1 ]
echo "Too many arguments" > & 2
2021-04-23 00:27:25 +08:00
return 1
end
2022-10-23 02:23:44 +08:00
set -l dirs $__fish_config_dir /themes $__fish_data_dir /tools/web_config/themes
2021-07-10 16:26:58 +08:00
switch $cmd
case list ''
2022-10-23 02:23:44 +08:00
string replace -r '.*/([^/]*).theme$' '$1' $dirs /*.theme
2021-07-10 16:26:58 +08:00
return
case demo
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_command || set_color $fish_color_normal ) /bright/vixens
2021-07-10 16:26:58 +08:00
echo -ns ( set_color normal) ' '
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_param || set_color $fish_color_normal ) jump
2021-07-10 16:26:58 +08:00
echo -ns ( set_color normal) ' '
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_redirection || set_color $fish_color_normal ) '|'
2021-07-10 16:26:58 +08:00
echo -ns ( set_color normal) ' '
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_quote || set_color $fish_color_normal ) '"fowl"'
2021-07-10 16:26:58 +08:00
echo -ns ( set_color normal) ' '
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_redirection || set_color $fish_color_normal ) '> quack'
2021-07-10 16:26:58 +08:00
echo -ns ( set_color normal) ' '
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_end || set_color $fish_color_normal ) '&'
2021-07-10 16:26:58 +08:00
set_color normal
2022-03-19 04:35:32 +08:00
echo -s ( set_color $fish_color_comment || set_color $fish_color_normal ) ' # This is a comment'
2021-07-10 16:26:58 +08:00
set_color normal
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_command || set_color $fish_color_normal ) echo
2021-07-10 16:26:58 +08:00
echo -ns ( set_color normal) ' '
2022-03-19 04:35:32 +08:00
echo -s ( set_color $fish_color_error || set_color $fish_color_normal ) "'" ( set_color $fish_color_quote || set_color $fish_color_normal ) "Errors are the portal to discovery"
2021-07-10 16:26:58 +08:00
set_color normal
2022-03-19 04:35:32 +08:00
echo -ns ( set_color $fish_color_command || set_color $fish_color_normal ) Th
2021-07-10 16:26:58 +08:00
set_color normal
2022-03-19 04:35:32 +08:00
set_color $fish_color_autosuggestion || set_color $fish_color_normal
2024-03-08 08:35:41 +08:00
echo is an autosuggestion
2021-07-10 16:26:58 +08:00
echo
case show
set -l fish ( status fish -path)
2022-10-23 02:23:44 +08:00
set -l themes $dirs /$argv .theme
set -q themes [ 1 ] ; or set themes $dirs /*.theme
2021-07-10 16:26:58 +08:00
set -l used_themes
echo -s ( set_color normal; set_color --underline ) Current ( set_color normal)
fish_config theme demo
for t in $themes
not test -e " $t "
and continue
set -l themename ( string replace -r '.*/([^/]*).theme$' '$1' $t )
contains -- $themename $used_themes
and continue
set -a used_themes $themename
echo -s ( set_color normal; set_color --underline ) $themename ( set_color normal)
# Use a new, --no-config, fish to display the theme.
# So we can use this function, explicitly source it before anything else!
2021-07-16 23:28:40 +08:00
functions fish_config | $fish -C "source -" --no-config -c '
fish_config theme choose $argv
fish_config theme demo $argv
' $themename
2021-07-10 16:26:58 +08:00
end
case choose save
2021-07-15 01:48:33 +08:00
if set -q argv [ 2 ]
echo "Too many arguments" > & 2
return 1
end
2022-10-13 10:10:15 +08:00
# The name of the theme to save *from* is optional for `fish_config theme save`
if not set -q argv [ 1 ] && contains -- $cmd choose
2021-07-15 01:48:33 +08:00
echo "Too few arguments" > & 2
return 1
end
2021-07-10 16:26:58 +08:00
set -l scope -g
2022-10-13 10:10:15 +08:00
set -l have_colors
2021-07-10 16:26:58 +08:00
if contains -- $cmd save
2022-10-13 10:10:15 +08:00
read -P "Overwrite your current theme? [y/N] " -l yesno
2021-07-10 16:26:58 +08:00
if not string match -riq 'y(es)?' -- $yesno
echo Not overwriting > & 2
return 1
end
set scope -U
end
2022-03-19 20:46:16 +08:00
set -l known_colors fish_color_{ normal,command ,keyword,quote,redirection,\
end ,error,param,option,comment,selection,operator,escape,autosuggestion,\
cwd ,user,host,host_remote,cancel,search_match} \
fish_pager_color_ { progress,background,prefix,completion,description,\
selected_background ,selected_prefix,selected_completion,selected_description,\
secondary_background ,secondary_prefix,secondary_completion,secondary_description}
2022-10-13 10:10:15 +08:00
# If we are choosing a theme or saving from a named theme, load the theme now.
# Otherwise, we'll persist the currently loaded/themed variables (in case of `theme save`).
if set -q argv [ 1 ]
2022-10-23 02:23:44 +08:00
set -l files $dirs /$argv [ 1 ] .theme
2022-10-13 10:10:15 +08:00
set -l file
2022-03-19 20:46:16 +08:00
2022-10-13 10:10:15 +08:00
for f in $files
if test -e " $f "
set file $f
break
end
2021-11-09 00:47:20 +08:00
end
2021-07-10 16:26:58 +08:00
2022-10-13 10:10:15 +08:00
if not set -q file [ 1 ]
echo " No such theme: $argv [1] " > & 2
2022-10-23 02:23:44 +08:00
echo " Searched directories: $dirs " > & 2
2022-10-13 10:10:15 +08:00
return 1
end
2022-03-19 20:46:16 +08:00
2022-10-13 10:10:15 +08:00
while read -lat toks
2022-10-16 03:24:31 +08:00
# The whitelist allows only color variables.
2022-10-13 10:10:15 +08:00
# Not the specific list, but something named *like* a color variable.
# This also takes care of empty lines and comment lines.
2022-10-16 03:24:31 +08:00
string match -rq -- $theme_var_filter $toks [ 1 ]
2022-10-13 10:10:15 +08:00
or continue
# If we're supposed to set universally, remove any shadowing globals
# so the change takes effect immediately (and there's no warning).
if test x" $scope " = x-U; and set -qg $toks [ 1 ]
set -eg $toks [ 1 ]
end
set $scope $toks
set -a have_colors $toks [ 1 ]
end < $file
# Set all colors that aren't mentioned to empty
for c in $known_colors
contains -- $c $have_colors
and continue
# Erase conflicting global variables so we don't get a warning and
# so changes are observed immediately.
set -eg $c
set $scope $c
end
else
2022-10-16 03:24:31 +08:00
# We're persisting whatever current colors are loaded (maybe in the global scope)
2022-10-13 10:10:15 +08:00
# to the universal scope, without overriding them from a theme file.
2022-10-16 03:24:31 +08:00
# Like above, make sure to erase from other scopes first and ensure known color
# variables are defined, even if empty.
# This branch is only reachable in the case of `theme save` so $scope is always `-U`.
2022-10-13 10:10:15 +08:00
2022-10-16 03:24:31 +08:00
for color in ( printf "%s\n" $known_colors ( set --names | string match -r $theme_var_filter ) | sort -u )
2022-10-13 10:10:15 +08:00
if set -q $color
# Cache the value from whatever scope currently defines it
set -l value $$ color
set -eg $color
2023-10-07 04:15:35 +08:00
set -U $color $value
2022-10-13 10:10:15 +08:00
end
end
2022-03-19 20:46:16 +08:00
end
2022-10-13 10:10:15 +08:00
# If we've made it this far, we've either found a theme file or persisted the current
# state (if any). In all cases we haven't failed, so return 0.
return 0
2021-07-10 16:26:58 +08:00
case dump
# Write the current theme in .theme format, to stdout.
2022-10-16 03:24:31 +08:00
set -L | string match -r $theme_var_filter
2021-07-10 16:26:58 +08:00
case '*'
echo " No such command: $cmd " > & 2
return 1
end
end
2012-03-26 09:38:33 +08:00
end