Files
dotwryn/zsh/rc.d/26.setup-unipicker.zsh
T

14 lines
335 B
Bash
Raw Normal View History

2024-05-07 16:38:40 -06:00
command -v unipicker &>/dev/null || return 0
#####################################################################
__ZSH_SHORTCUT__UNIPICKER() {
LBUFFER+="$(unipicker)"
zle reset-prompt
}
zle -N unipicker __ZSH_SHORTCUT__UNIPICKER
bindkey  unipicker
#####################################################################
return 0