diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2015-11-27 11:22:49 -0800 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2015-11-27 11:22:49 -0800 |
commit | c7c51eca164ea2e23c1f10b0e63030e66588f27a (patch) | |
tree | 15e78786da9562f49ad284e5dad2e190694a885f /Completion/Unix/Command | |
parent | 026cb6a8127dfb9a6277ec42cc251ebc77e1300e (diff) | |
parent | 8efa4b4088a9f57903954a12eb086b176109bd91 (diff) | |
download | zsh-c7c51eca164ea2e23c1f10b0e63030e66588f27a.tar.gz zsh-c7c51eca164ea2e23c1f10b0e63030e66588f27a.tar.xz zsh-c7c51eca164ea2e23c1f10b0e63030e66588f27a.zip |
Fix conflicts in ChangeLog
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_curl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_curl b/Completion/Unix/Command/_curl new file mode 100644 index 000000000..72e2e5b53 --- /dev/null +++ b/Completion/Unix/Command/_curl @@ -0,0 +1,7 @@ +#compdef curl + +# As of 7.43.0, curl upstream provides its own _curl definition. This +# definition is provided as a fallback, and should be installed later +# in $fpath than the curl-provided definition of _curl. + +_urls "$@" |