From 6c18848a903eb3ee06dccd915859ce64195c257c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 18:24:27 +0200 Subject: Adding upstream version 1:2.11. Signed-off-by: Daniel Baumann --- completions/snownews | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 completions/snownews (limited to 'completions/snownews') diff --git a/completions/snownews b/completions/snownews new file mode 100644 index 0000000..5b585d9 --- /dev/null +++ b/completions/snownews @@ -0,0 +1,15 @@ +# 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 -- cgit v1.2.3