mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
mode_prompt: Use foreground instead of background colors
The default vi mode prompt is kind of ugly, mostly because we include this `[I]` with a super bright green background and white text, which is particularly grating because most prompts don't actually have a background. So we get a ton of people asking "How do I remove this [I]" when they could really benefit from having the mode shown. There's a few ways to make this look nicer, the simplest is to just keep the same colors but use them as foreground instead of background colors, which looks much more understated. The mode prompt is important, but not more than the actual contents of the commandline, so it shouldn't have ALARMING colors.
This commit is contained in:
parent
f1d3e7a0db
commit
419675b9e5
1 changed files with 5 additions and 5 deletions
|
@ -4,19 +4,19 @@ function fish_default_mode_prompt --description "Display the default mode for th
|
|||
or test "$fish_key_bindings" = fish_hybrid_key_bindings
|
||||
switch $fish_bind_mode
|
||||
case default
|
||||
set_color --bold --background red white
|
||||
set_color --bold red
|
||||
echo '[N]'
|
||||
case insert
|
||||
set_color --bold --background green white
|
||||
set_color --bold green
|
||||
echo '[I]'
|
||||
case replace_one
|
||||
set_color --bold --background green white
|
||||
set_color --bold green
|
||||
echo '[R]'
|
||||
case replace
|
||||
set_color --bold --background cyan white
|
||||
set_color --bold cyan
|
||||
echo '[R]'
|
||||
case visual
|
||||
set_color --bold --background magenta white
|
||||
set_color --bold magenta
|
||||
echo '[V]'
|
||||
end
|
||||
set_color normal
|
||||
|
|
Loading…
Reference in a new issue