Fixing minor error in fish.

This commit is contained in:
Derek Taylor 2021-10-16 13:41:53 -05:00
parent b48c7b2d87
commit f541077476
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ function __history_previous_command_arguments
end
end
# The bindings for !! and !$
if [ $fish_key_bindings = fish_vi_key_bindings ];
if [ $fish_key_bindings = "fish_vi_key_bindings" ];
bind -Minsert ! __history_previous_command
bind -Minsert '$' __history_previous_command_arguments
else