11 lines
200 B
Plaintext
11 lines
200 B
Plaintext
|
|
#!/bin/zsh
|
|||
|
|
command -v unipicker >/dev/null 2>&1 || return 0
|
|||
|
|
|
|||
|
|
__ZSH_SHORTCUT__UNIPICKER() {
|
|||
|
|
LBUFFER+="$(unipicker)"
|
|||
|
|
zle reset-prompt
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
zle -N unipicker __ZSH_SHORTCUT__UNIPICKER
|
|||
|
|
bindkey unipicker
|