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