mirror of
https://github.com/sebaschi/dotfiles.git
synced 2026-04-03 05:55:14 +02:00
9 lines
155 B
Bash
9 lines
155 B
Bash
function pet-select() {
|
|
BUFFER=$(pet search --query "$LBUFFER")
|
|
CURSOR=$#BUFFER
|
|
zle redisplay
|
|
}
|
|
zle -N pet-select
|
|
stty -ixon
|
|
bindkey '^s' pet-select
|