diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-05-11 13:42:38 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-05-11 13:47:12 +0200 |
commit | 486fa1010df847bfd8823b4492623afc7c935709 (patch) | |
tree | e379720ec7ec1ec4461d6c079338d2432c7c3c40 /lib/misc.zsh | |
parent | 4585c6662be4cefafd6e67df1d859abb7988168e (diff) | |
download | zsh-486fa1010df847bfd8823b4492623afc7c935709.tar.gz zsh-486fa1010df847bfd8823b4492623afc7c935709.tar.bz2 zsh-486fa1010df847bfd8823b4492623afc7c935709.zip |
lib: add ability to disable magic functions
Fixes #5499
Fixes #5569
Fixes #6338
Fixes #6654
Fixes #6255
Fixes #7632
Closes #7763
Co-authored-by: Daniel Galán y Martins <git@galan.de>
Diffstat (limited to 'lib/misc.zsh')
-rw-r--r-- | lib/misc.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/misc.zsh b/lib/misc.zsh index b30822b50..40ffa479d 100644 --- a/lib/misc.zsh +++ b/lib/misc.zsh @@ -1,7 +1,7 @@ -## Load smart urls if available -# bracketed-paste-magic is known buggy in zsh 5.1.1 (only), so skip it there; see #4434 autoload -Uz is-at-least -if [[ $ZSH_VERSION != 5.1.1 ]]; then + +# *-magic is known buggy in some versions; disable if so +if [[ $DISABLE_MAGIC_FUNCTIONS != true ]]; then for d in $fpath; do if [[ -e "$d/url-quote-magic" ]]; then if is-at-least 5.1; then |