aboutsummaryrefslogtreecommitdiff
path: root/modules/base/fish/functions/fish_user_key_bindings.fish
blob: 9799d46112094ae9ead8a72dd15fdf4665bcd081 (plain)
1
2
3
4
5
6
function fish_user_key_bindings
    # Make `!!` and `!$` work
    bind ! __history_previous_command
    bind '$' __history_previous_command_arguments
    bind \cr __fancy_history
end