fix(dash): urlencode special parameters like : in query

In macOS, using queries such as `dash php:enum` does not open Dash.app,
possibly due to colon character being interpreted as a port.

URL-encoding the parameter (: -> %3A) makes this work again.

Fixes https://discord.com/channels/642496866407284746/809850042575093760/1308076125456437300
This commit is contained in:
Marc Cornellà 2024-11-18 22:55:47 +01:00
commit 05c9747734
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -1,5 +1,5 @@
# Usage: dash [keyword:]query
dash() { open -a Dash.app dash://"$*" }
dash() { open -a Dash.app "dash://$(omz_urlencode -r $*)" }
compdef _dash dash
_dash() {