mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
Put matching files and directories into the completion list, not only the valid arguments.
7 lines
152 B
Plaintext
7 lines
152 B
Plaintext
|
|
_XCA_WORDS="$(XCA_SPECIAL=completion xca)"
|
|
_xca() {
|
|
COMPREPLY=($(compgen -f -W "$_XCA_WORDS" -- "${COMP_WORDS[COMP_CWORD]}"))
|
|
}
|
|
complete -F _xca xca
|