mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(copybuffer): prevent which
alias usage (#12379)
This commit is contained in:
parent
5d2d35cd17
commit
803e1a784c
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
# onto the system clipboard
|
||||
|
||||
copybuffer () {
|
||||
if which clipcopy &>/dev/null; then
|
||||
if builtin which clipcopy &>/dev/null; then
|
||||
printf "%s" "$BUFFER" | clipcopy
|
||||
else
|
||||
zle -M "clipcopy not found. Please make sure you have Oh My Zsh installed correctly."
|
||||
|
|
Loading…
Reference in a new issue