/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
completions-core/file.bash
32 строки
774 B
Ville Skyttä
chore: remove most editor mode config comments
01 июн 2026, 21:26
01 июн 2026, 21:26
bdeca44
Код
Авторство
О чём код?
# file(1) completion _comp_cmd_file() { local cur prev words cword comp_args _comp_initialize -- "$@" || return local noargopts='!(-*|*[Fmfe]*)' # shellcheck disable=SC2254 case $prev in --help | --version | --separator | -${noargopts}[vF]) return ;; --magic-file | --files-from | -${noargopts}[mf]) _comp_compgen_filedir return ;; --exclude | -${noargopts}e) _comp_compgen -- -W 'apptype ascii cdf compress elf encoding soft tar text tokens troff' return ;; esac if [[ $cur == -* ]]; then _comp_compgen_help return fi _comp_compgen_filedir } && complete -F _comp_cmd_file file