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