1
0

refactor key bindings

This commit is contained in:
Konstantin Demin 2022-05-18 10:29:39 +03:00
parent a70347e7f7
commit faae072861
Signed by: krd
GPG Key ID: 1F33CB0BA4731BC6
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +0,0 @@
#!/bin/zsh
x='/usr/share/doc/fzf/examples/key-bindings.zsh'
if [ -s "$x" ] ; then source "$x" ; fi

View File

@ -129,3 +129,8 @@ z-bind emacs viins vicmd -- Esc-w kill-region
## use emacs key bindings
bindkey -e
for i ( /usr/share/doc/fzf/examples/key-bindings.zsh ) ; do
[ -s "$i" ] || continue
source "$i"
done ; unset i