You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
259 B
8 lines
259 B
5 years ago
|
# This makes zsh automatically escape certain characters when typing a url
|
||
|
autoload -Uz url-quote-magic
|
||
|
zle -N self-insert url-quote-magic
|
||
|
|
||
|
# This does the same for pasting a url
|
||
|
autoload -Uz bracketed-paste-magic
|
||
|
zle -N bracketed-paste bracketed-paste-magic
|