mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 20:33:34 -08:00
24 lines
438 B
Bash
24 lines
438 B
Bash
# 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
|