From 821c0fd80d084b5c4d047e18649c74c86eac0b9d Mon Sep 17 00:00:00 2001 From: Felix Rosencrantz Date: Mon, 15 Aug 2005 14:39:54 +0000 Subject: 21611: Added Firefox completion support. --- Completion/X/Command/_mozilla | 55 ++++++++++++++++++++++++++++++++----------- 1 file changed, 41 insertions(+), 14 deletions(-) (limited to 'Completion/X') diff --git a/Completion/X/Command/_mozilla b/Completion/X/Command/_mozilla index 890aa7b53..ff0f23bf0 100644 --- a/Completion/X/Command/_mozilla +++ b/Completion/X/Command/_mozilla @@ -1,37 +1,42 @@ -#compdef mozilla mozilla-firefox mozilla-xremote-client +#compdef mozilla mozilla-firefox mozilla-xremote-client firefox local curcontext="$curcontext" state line expl ret=1 suf typeset -A opt_args local popts="-installer -CreateProfile -P -ProfileWizard -ProfileManager -SelectProfile" +local -a mozopts if [[ $service = *remote* ]]; then state=remote else - _x_arguments -C \ + if [[ $service != *firefox* ]]; then + mozopts=( + "($popts)-installer[start with 4.x migration window]" + "($popts)-CreateProfile:profile" + "($popts)-ProfileWizard[start with profile wizard]" + "($popts)-SelectProfile[start with profile selection dialog]" + '-splash[enable splash screen]' + '-chat[start with IRC client]' + '-news[start with news]' + '-venkman[start with JavaScript debugger]' + '-terminal[start with command line terminal]' + '-mail[start with mail]' + '-compose[start with messenger compose]:URL:_urls' + ) + fi + _x_arguments -C $mozopts \ '-height[height of startup window]:height' \ '(-)'{-h,-help}'[show usage message]' \ - "($popts)-installer[start with 4.x migration window]" \ '-width[width of startup window]:width' \ '(-)'{-v,-version}'[show the version number and build date]' \ - "($popts)-CreateProfile:profile" \ - "($popts)-P[start with profile]:profile:compadd ~/.mozilla/*/*.slt(\:h\:t)" \ - "($popts)-ProfileWizard[start with profile wizard]" \ + "($popts)-P[start with profile]:profile:->profile" \ "($popts)-ProfileManager[start with profile manager]" \ - "($popts)-SelectProfile[start with profile selection dialog]" \ '-UILocale:locale' \ '-contentLocale:locale' \ '-remote[execute a command in an existing Mozilla]:remote command:->remote' \ - '-splash[enable splash screen]' \ - '-chat[start with IRC client]' \ - '-news[start with news]' \ '-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' \ - '-mail[start with mail]' \ - '-compose[start with messenger compose]:URL:_urls' \ '*:location:->urls' && ret=0 fi @@ -104,4 +109,26 @@ if [[ "$state" = "urls" ]]; then fi fi +if [[ $state == "profile" ]]; then + if [[ $service == *firefox* ]]; then + local -a profiles text profiledir + case "$OSTYPE" in + darwin*) profiledir=~/"Library/Application Support/Firefox" ;; + *) profiledir=~/.mozilla/firefox/ ;; + esac + profiles=(${(f)"$(< ${profiledir}/profiles.ini)"}) + profiles=(${(M)${profiles}:#(\[Profile|(Path|Name)=)*}) + text=${(F)profiles} + profiles=(${(f)text//(#b)\[Profile([0-9]##)\] +Name=([^ +]##|) +Path=([^ +]##|)/$match[2]}) + profiles=(${profiles%:}) + compadd $profiles + else + compadd ~/.mozilla/*/*.slt(\:h\:t) + fi +fi + return ret -- cgit 1.4.1