/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.14.0
completions/_keyring
9 строк
373 B
Ville Skyttä
feat(keyring): add fallback 3rd party completion loader
04 авг 2023, 08:46
04 авг 2023, 08:46
8082602
Код
Авторство
О чём код?
# 3rd party completion loader for commands emitting -*- shell-script -*- # their completion using "$cmd --print-completion bash". # For example, many Python programs using https://github.com/iterative/shtab do. # # This serves as a fallback in case the completion is not installed otherwise. eval -- "$("$1" --print-completion bash 2>/dev/null)" # ex: filetype=sh