diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2004-02-26 12:57:21 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2004-02-26 12:57:21 +0000 |
commit | 060e8f4eed4e0193549f1b3143b7bb47e9fcabe1 (patch) | |
tree | 2d5fd0840b7aa99b47e0f385201daeb1ba7f45f5 /Completion/X/Command | |
parent | 8b8cc745d952bbeebb474d884b0a63e4ff08400f (diff) | |
download | zsh-060e8f4eed4e0193549f1b3143b7bb47e9fcabe1.tar.gz zsh-060e8f4eed4e0193549f1b3143b7bb47e9fcabe1.tar.xz zsh-060e8f4eed4e0193549f1b3143b7bb47e9fcabe1.zip |
19468: capitalize URL abbreviation in completion descriptions
Diffstat (limited to 'Completion/X/Command')
-rw-r--r-- | Completion/X/Command/_mozilla | 6 | ||||
-rw-r--r-- | Completion/X/Command/_mplayer | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Completion/X/Command/_mozilla b/Completion/X/Command/_mozilla index 1ad572c1b..f6ade49fc 100644 --- a/Completion/X/Command/_mozilla +++ b/Completion/X/Command/_mozilla @@ -28,10 +28,10 @@ else '-jsconsole[start with JavaScript Console]' \ '-venkman[start with JavaScript debugger]' \ '-terminal[start with command line terminal]' \ - '-edit[start with editor]:url:_urls' \ - '-chrome[load the specified chrome]:url:_urls' \ + '-edit[start with editor]:URL:_urls' \ + '-chrome[load the specified chrome]:URL:_urls' \ '-mail[start with mail]' \ - '-compose[start with messenger compose]:url:_urls' \ + '-compose[start with messenger compose]:URL:_urls' \ '*:location:->urls' && ret=0 fi diff --git a/Completion/X/Command/_mplayer b/Completion/X/Command/_mplayer index 9aad7a0c1..d4918f5df 100644 --- a/Completion/X/Command/_mplayer +++ b/Completion/X/Command/_mplayer @@ -117,7 +117,7 @@ case "$state" in _requested files expl 'video file' _files -g \ "*.(#i)(avi|mp3|mpg|mpe|mpeg|m1v|mov|asf|vob|mjpg|wma|wmv|asx|qt|rm|mkv|mka|ogm|ogg)(-.)" && ret=0 if _requested urls; then - while _next_label urls expl url; do + while _next_label urls expl URL; do _urls "$expl[@]" && ret=0 compadd -S '' "$expl[@]" {dvd,vcd,cdda,cddb,tv}:// && ret=0 done |