/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.11
completions/lua
23 строки
438 B
Ville Skyttä
*: run all shell code through shfmt -s
06 май 2020, 22:54
06 май 2020, 22:54
dbe0ec8
Код
Авторство
О чём код?
# lua(1) completion -*- shell-script -*- _lua() { local cur prev words cword _init_completion || return case $prev in -e | -l | -v | -) return ;; esac if [[ $cur == -* ]]; then COMPREPLY=($(compgen -W "$(_parse_help "$1")" -- "$cur")) return fi _filedir 'l@(ua|?(ua)c)' } && complete -F _lua lua # ex: filetype=sh