dotfiles/dot_oh-my-zsh/plugins/copybuffer/copybuffer.plugin.zsh

15 lines
328 B
Bash
Raw Normal View History

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