From d20b80ea278f864dc0b26448847c3d264bb84b11 Mon Sep 17 00:00:00 2001 From: Tom Whitwell Date: Wed, 6 Sep 2017 15:48:29 +0100 Subject: [PATCH] Fix Spotify share url copying cecho caused the plugin to copy "[1m[32m-n(B[m" to the clipboard, not the url. Changing to 'echo' fixes that --- plugins/osx/osx.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/osx/osx.plugin.zsh b/plugins/osx/osx.plugin.zsh index e8488ebc9..4909e2c14 100644 --- a/plugins/osx/osx.plugin.zsh +++ b/plugins/osx/osx.plugin.zsh @@ -533,7 +533,7 @@ function spotify() { url=${url#$remove} url="http://open.spotify.com/track/$url" cecho "Share URL: $url"; - cecho -n "$url" | pbcopy + echo -n "$url" | pbcopy break;; -h|--help| *)