mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
16 lines
363 B
Bash
16 lines
363 B
Bash
# snownews(1) completion -*- shell-script -*-
|
|
|
|
_snownews()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
# return list of available options
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
fi
|
|
} &&
|
|
complete -F _snownews snownews
|
|
|
|
# ex: filetype=sh
|