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