7d676afbec
Issue stemmed from fzf-tmux being included in the fzf script. This was cause a race condition conflict. And would only load correctly when the imported version loaded first. This is why it only worked on the first where this resources had to be downloaded.
14 lines
351 B
Bash
14 lines
351 B
Bash
# CTRL+space to accept Autosuggest's suggestion.
|
|
bindkey '^ ' autosuggest-accept
|
|
|
|
# Open command in $EDITOR
|
|
bindkey '^E' edit-command-line
|
|
bindkey -M vicmd "v" edit-command-line
|
|
|
|
# Start of line
|
|
bindkey '^[[1~' beginning-of-line
|
|
bindkey -M vicmd '^[[1~' beginning-of-line
|
|
# End of line
|
|
bindkey '^[[4~' end-of-line
|
|
bindkey -M vicmd '^[[4~' end-of-line
|