blob: f3f8e0b599e0e89c14845761dc57db3b5c44eb69 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Starshatter completion
# for use with bash-completions
_starshatter()
{
local cur prev words cword
_init_completion || return
COMPREPLY=($(compgen -W '-nosplash -window -test -fps -dump -lan -d3d -server -dbg -filesys' -- "$cur"))
} &&
complete -F _starshatter {,./}Starshatter{,.exe}
|