Forked from floam/gist:e89ed4a882eb629b0a70040f876479c6
Last active
November 15, 2018 01:12
-
-
Save kyeb/476fd53774d99b2dd658789c3c9d6810 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 | |
if test $fish_bind_mode != insert | |
set_color normal | |
printf " " | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment