1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

fix(copybuffer): prevent which alias usage (#12379)

This commit is contained in:
Marc Cornellà
2024-04-25 08:04:18 +02:00
committed by GitHub
parent 5d2d35cd17
commit 803e1a784c

View File

@@ -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."