Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion functions/_tide_item_character.fish
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function _tide_item_character

set -q add_prefix || echo -ns ' '

test "$fish_key_bindings" = fish_default_key_bindings && echo -ns $tide_character_icon ||
test -z "$fish_key_bindings" -o "$fish_key_bindings" = fish_default_key_bindings && echo -ns $tide_character_icon ||
switch $fish_bind_mode
case insert
echo -ns $tide_character_icon
Expand Down
2 changes: 1 addition & 1 deletion functions/_tide_item_vi_mode.fish
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function _tide_item_vi_mode
test "$fish_key_bindings" != fish_default_key_bindings && switch $fish_bind_mode
test -n "$fish_key_bindings" -a "$fish_key_bindings" != fish_default_key_bindings && switch $fish_bind_mode
case default
tide_vi_mode_bg_color=$tide_vi_mode_bg_color_default tide_vi_mode_color=$tide_vi_mode_color_default \
_tide_print_item vi_mode $tide_vi_mode_icon_default
Expand Down