Forked from floam/gist:e89ed4a882eb629b0a70040f876479c6
Last active
June 25, 2021 19:41
-
-
Save ruanformigoni/4603245e16489ea27bd90285db951059 to your computer and use it in GitHub Desktop.
Fish shell VI Icons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fish_mode_prompt --description 'Displays the current mode' | |
# Do nothing if not in vi mode | |
if test "$fish_key_bindings" = "fish_vi_key_bindings" | |
switch $fish_bind_mode | |
case default | |
set_color --bold red | |
echo π ½ | |
case insert | |
set_color --bold green | |
echo π Έ | |
case replace-one | |
set_color --bold green | |
echo π | |
case visual | |
set_color --bold brmagenta | |
echo π | |
end | |
set_color normal | |
printf " " | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment