equal
deleted
inserted
replaced
|
1 # -*- mode: sh; sh-shell-file: bash -*- |
|
2 |
|
3 _firefox() |
|
4 { |
|
5 local _opts="--sync --g-fatal-warnings -h -help -migration -ProfileManager \ |
|
6 -no-remote -new-instance -safe-mode -jsconsole -browser -new-window -new-tab -preferences -search \ |
|
7 -recording -recording-output -setDefaultBrowser" |
|
8 local cur prev |
|
9 cur=${COMP_WORDS[COMP_CWORD]} |
|
10 [[ $COMP_CWORD != 0 ]] && prev=${COMP_WORDS[COMP_CWORD-1]} |
|
11 case "$prev" in |
|
12 -P) |
|
13 local profile=~/.mozilla/firefox/profiles.ini |
|
14 if [[ ! -f $profile ]]; then |
|
15 return; |
|
16 fi |
|
17 local names=( $(sed -n '/^Name=/{s/^Name=//;p;}' $profile) ) |
|
18 COMPREPLY=( $(compgen -W '${names[@]}' -- "$cur") ) |
|
19 return ;; |
|
20 esac |
|
21 COMPREPLY=( $(compgen -W '$_opts $_help_cmds $_java_cmds $_application_cmds' -- $cur) ) |
|
22 return 0 |
|
23 } && |
|
24 complete -F _firefox firefox iceweasel |