fixes vi mode indicators for fish
This commit is contained in:
parent
96953438ef
commit
d4225498ae
1 changed files with 6 additions and 6 deletions
|
|
@ -99,22 +99,22 @@
|
||||||
switch $fish_bind_mode
|
switch $fish_bind_mode
|
||||||
case default
|
case default
|
||||||
set_color --bold blue
|
set_color --bold blue
|
||||||
echo 'N'
|
echo '[N] '
|
||||||
case insert
|
case insert
|
||||||
set_color --bold green
|
set_color --bold green
|
||||||
echo 'I'
|
echo '[I] '
|
||||||
case replace_one
|
case replace_one
|
||||||
set_color --bold green
|
set_color --bold green
|
||||||
echo 'R'
|
echo '[R] '
|
||||||
case replace
|
case replace
|
||||||
set_color --bold bryellow
|
set_color --bold bryellow
|
||||||
echo 'R'
|
echo '[R] '
|
||||||
case visual
|
case visual
|
||||||
set_color --bold brmagenta
|
set_color --bold brmagenta
|
||||||
echo 'V'
|
echo '[V] '
|
||||||
case '*'
|
case '*'
|
||||||
set_color --bold red
|
set_color --bold red
|
||||||
echo '?'
|
echo '[?] '
|
||||||
end
|
end
|
||||||
set_color normal
|
set_color normal
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue