2022-01-27 16:21:22 -08:00
|
|
|
function fish_default_mode_prompt --description "Display vi prompt mode"
|
2017-01-13 02:07:41 +11:00
|
|
|
# Do nothing if not in vi mode
|
2020-03-09 19:36:12 +01:00
|
|
|
if test "$fish_key_bindings" = fish_vi_key_bindings
|
|
|
|
or test "$fish_key_bindings" = fish_hybrid_key_bindings
|
2017-01-13 02:07:41 +11:00
|
|
|
switch $fish_bind_mode
|
|
|
|
case default
|
2021-02-23 09:28:25 +01:00
|
|
|
set_color --bold red
|
2017-01-13 02:07:41 +11:00
|
|
|
echo '[N]'
|
|
|
|
case insert
|
2021-02-23 09:28:25 +01:00
|
|
|
set_color --bold green
|
2017-01-13 02:07:41 +11:00
|
|
|
echo '[I]'
|
2017-04-17 14:47:40 +03:00
|
|
|
case replace_one
|
2021-02-23 09:28:25 +01:00
|
|
|
set_color --bold green
|
2017-01-13 02:07:41 +11:00
|
|
|
echo '[R]'
|
2019-11-23 13:30:19 +09:00
|
|
|
case replace
|
2021-02-23 09:28:25 +01:00
|
|
|
set_color --bold cyan
|
2019-11-23 13:30:19 +09:00
|
|
|
echo '[R]'
|
2017-01-13 02:07:41 +11:00
|
|
|
case visual
|
2021-02-23 09:28:25 +01:00
|
|
|
set_color --bold magenta
|
2017-01-13 02:07:41 +11:00
|
|
|
echo '[V]'
|
|
|
|
end
|
|
|
|
set_color normal
|
|
|
|
echo -n ' '
|
|
|
|
end
|
|
|
|
end
|