2016-09-22 10:41:30 -07:00
|
|
|
# copy the active line from the command line buffer
|
2020-02-27 14:47:06 -07:00
|
|
|
# onto the system clipboard
|
2016-09-22 10:41:30 -07:00
|
|
|
|
|
|
|
copybuffer () {
|
|
|
|
if which clipcopy &>/dev/null; then
|
2020-02-27 14:47:06 -07:00
|
|
|
printf "%s" "$BUFFER" | clipcopy
|
2016-09-22 10:41:30 -07:00
|
|
|
else
|
2021-07-12 08:34:34 -07:00
|
|
|
zle -M "clipcopy not found. Please make sure you have Oh My Zsh installed correctly."
|
2016-09-22 10:41:30 -07:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
zle -N copybuffer
|
|
|
|
|
2021-09-10 08:06:24 -07:00
|
|
|
bindkey -M emacs "^O" copybuffer
|
|
|
|
bindkey -M viins "^O" copybuffer
|
|
|
|
bindkey -M vicmd "^O" copybuffer
|