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
|
||||
case default
|
||||
set_color --bold blue
|
||||
echo 'N'
|
||||
echo '[N] '
|
||||
case insert
|
||||
set_color --bold green
|
||||
echo 'I'
|
||||
echo '[I] '
|
||||
case replace_one
|
||||
set_color --bold green
|
||||
echo 'R'
|
||||
echo '[R] '
|
||||
case replace
|
||||
set_color --bold bryellow
|
||||
echo 'R'
|
||||
echo '[R] '
|
||||
case visual
|
||||
set_color --bold brmagenta
|
||||
echo 'V'
|
||||
echo '[V] '
|
||||
case '*'
|
||||
set_color --bold red
|
||||
echo '?'
|
||||
echo '[?] '
|
||||
end
|
||||
set_color normal
|
||||
'';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue