glog: Explicitly set my general fzf bindings

`glog` is the most standalone tool out of my dotfiles and I know of at
least one person that uses it that way. Because of this I want to also
explicitly map all other bindings that I have in my zprofile to improve
the experience.
This commit is contained in:
2024-11-01 02:30:47 +01:00
parent 9802309f12
commit 9c099416a9

View File

@@ -89,6 +89,17 @@ elif (( $+commands[xclip] )); then
fi
local -A binds=(
# See fzf_keys in .zprofile
"esc" "cancel"
"home" "first"
"end" "last"
"ctrl-d" "half-page-down"
"ctrl-u" "half-page-up"
"ctrl-t" "toggle-track"
# Keep the current line selected while deleting the query
"bspace" "track-current+backward-delete-char"
"backward-eof" "untrack-current"
# scroll in preview window
"ctrl-alt-j" "preview-down"
"ctrl-alt-k" "preview-up"