Forked from floam/gist:e89ed4a882eb629b0a70040f876479c6
Created
February 20, 2020 01:22
-
-
Save gbailey4/c65e9b3021acf2c8a5bcf381dca7e6fc to your computer and use it in GitHub Desktop.
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