diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2021-08-16 19:36:49 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2021-08-16 19:36:49 -0600 |
commit | f8b7b6584bf1ca7e836ba9cc13fcce573047fb07 (patch) | |
tree | 3a49f51b1c5632a7d89bdea855ce873ff7b1060b /plugins/copybuffer | |
parent | 617ed3bd9f3d9519fe2354941f3dbf15b0c712ee (diff) | |
parent | 11e22ed0b5c1aebd6e990ea7a885bdf03ab6555a (diff) | |
download | zsh-f8b7b6584bf1ca7e836ba9cc13fcce573047fb07.tar.gz zsh-f8b7b6584bf1ca7e836ba9cc13fcce573047fb07.tar.bz2 zsh-f8b7b6584bf1ca7e836ba9cc13fcce573047fb07.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'plugins/copybuffer')
-rw-r--r-- | plugins/copybuffer/copybuffer.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/copybuffer/copybuffer.plugin.zsh b/plugins/copybuffer/copybuffer.plugin.zsh index 483ed5a5f..87a658d93 100644 --- a/plugins/copybuffer/copybuffer.plugin.zsh +++ b/plugins/copybuffer/copybuffer.plugin.zsh @@ -5,7 +5,7 @@ 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." + zle -M "clipcopy not found. Please make sure you have Oh My Zsh installed correctly." fi } |