Update .config/zsh/env.zsh Add .config/zsh/files/functions.zsh Remove .config/zsh/files/keybinds.zsh Remove .config/zsh/files/transfer.zsh Update .config/zsh/rc.zsh
15 lines
248 B
Bash
15 lines
248 B
Bash
pet_select () {
|
|
BUFFER=$(pet search --query "$LBUFFER")
|
|
CURSOR=$#BUFFER
|
|
zle redisplay
|
|
}
|
|
zle -N pet_select
|
|
bindkey '^l' pet_select
|
|
|
|
run_ranger () {
|
|
echo
|
|
ranger < $TTY
|
|
zle redisplay
|
|
}
|
|
zle -N run_ranger
|
|
bindkey '^f' run_ranger
|