/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
completions-core/inject.bash
27 строк
655 B
Ville Skyttä
chore: remove most editor mode config comments
01 июн 2026, 21:26
01 июн 2026, 21:26
bdeca44
Код
Авторство
О чём код?
# mailman inject completion _comp_cmd_inject() { local cur prev words cword was_split comp_args _comp_initialize -s -- "$@" || return case $prev in -l | --listname) # Prefer `list_lists` in the same dir as command local pathcmd pathcmd=$(type -P -- "$1") && local PATH=${pathcmd%/*}:$PATH _comp_compgen -x list_lists mailman_lists return ;; esac [[ $was_split ]] && return if [[ $cur == -* ]]; then _comp_compgen -- -W '--listname --queue --help' else _comp_compgen_filedir fi } && complete -F _comp_cmd_inject inject