
| Current Path : /proc/self/root/usr/share/bash-completion/completions/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/self/root/usr/share/bash-completion/completions/lua |
# 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