mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-29 19:18:36 -07:00
27 lines
482 B
Bash
27 lines
482 B
Bash
# luac(1) completion -*- shell-script -*-
|
|
|
|
_luac()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
case $prev in
|
|
-v|-)
|
|
return
|
|
;;
|
|
-o)
|
|
_filedir
|
|
return
|
|
;;
|
|
esac
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=( $(compgen -W "$(_parse_help "$1")" -- "$cur") )
|
|
return
|
|
fi
|
|
|
|
_filedir lua
|
|
} &&
|
|
complete -F _luac luac
|
|
|
|
# ex: filetype=sh
|