Remove custom zsh history bindings

As fzf is now enabled and provides mappings.
Re mapping ^r will replace fzf with own definition preventing fzf from
working.
This commit is contained in:
Daniel Siepmann 2023-03-01 16:49:18 +01:00
parent 93cfecc706
commit dc3120fab4
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -9,14 +9,6 @@ autoload -U edit-command-line
zle -N edit-command-line
bindkey -M vicmd v edit-command-line
# ctrl-r search history backward to keep old pattern
bindkey '^r' history-incremental-search-backward
# ctrl-j search history backward to have vim like binding
# TODO: Find out why this breaks within neoterminal when sending commands like from test or repl
# bindkey '^j' history-incremental-search-backward
# # ctrl-k search history forward to have vim like binding
bindkey '^k' history-search-forward
# Use vim keys within completion
zmodload zsh/complist
bindkey -M menuselect 'h' vi-backward-char