mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
Rename XCA_SPECIAL to XCA_ARGUMENTS, which is less generic. and change %1_OPTIONS to XCA_%1_OPTIONS to prefix all XCA related environment variables with "XCA_".
7 lines
154 B
Plaintext
7 lines
154 B
Plaintext
|
|
_XCA_WORDS="$(XCA_ARGUMENTS=completion xca)"
|
|
_xca() {
|
|
COMPREPLY=($(compgen -f -W "$_XCA_WORDS" -- "${COMP_WORDS[COMP_CWORD]}"))
|
|
}
|
|
complete -F _xca xca
|