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