diff options
author | Marc Cornellà <hello@mcornella.com> | 2022-03-10 20:41:10 +0100 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2022-03-14 13:19:00 +0100 |
commit | c4699f8ee11ab74cd5ef1d7ae13c170fd5e7f976 (patch) | |
tree | 6b53d7c10b436f18c4f5bc936ad2e5f847d1b381 /plugins/dash/dash.plugin.zsh | |
parent | c10241f3d1d7bf77d483e11869a6a00f1d2e5e88 (diff) | |
download | zsh-c4699f8ee11ab74cd5ef1d7ae13c170fd5e7f976.tar.gz zsh-c4699f8ee11ab74cd5ef1d7ae13c170fd5e7f976.tar.bz2 zsh-c4699f8ee11ab74cd5ef1d7ae13c170fd5e7f976.zip |
fix(dash): fix "no application knows how to open URL" error (#10767)
Fixes #10767
Diffstat (limited to 'plugins/dash/dash.plugin.zsh')
-rw-r--r-- | plugins/dash/dash.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dash/dash.plugin.zsh b/plugins/dash/dash.plugin.zsh index ace2e33c1..0a627cb7d 100644 --- a/plugins/dash/dash.plugin.zsh +++ b/plugins/dash/dash.plugin.zsh @@ -1,5 +1,5 @@ # Usage: dash [keyword:]query -dash() { open dash://"$*" } +dash() { open -a Dash.app dash://"$*" } compdef _dash dash _dash() { |