conf2/zsh/.oh-my-zsh/plugins/copybuffer/copybuffer.plugin.zsh

15 lines
328 B
Bash
Raw Normal View History

2019-01-12 15:47:23 +00:00
# copy the active line from the command line buffer
2020-06-11 14:41:32 +00:00
# onto the system clipboard
2019-01-12 15:47:23 +00:00
copybuffer () {
if which clipcopy &>/dev/null; then
2020-06-11 14:41:32 +00:00
printf "%s" "$BUFFER" | clipcopy
2019-01-12 15:47:23 +00:00
else
echo "clipcopy function not found. Please make sure you have Oh My Zsh installed correctly."
fi
}
zle -N copybuffer
bindkey "^O" copybuffer