blog.ari.lt/completions/blog.bash
Ari Archer ffe2a53e32
update @ Sun 5 Jun 21:49:56 EEST 2022
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-06-05 21:49:56 +03:00

12 lines
315 B
Bash

# blog completion -*- shell-script -*-
_blog() {
local cur
_init_completion -s || return
COMPREPLY=($(compgen -W "help new build ls\
rm edit defcfg clean metadata static" -- "$cur"))
} && complete -F _blog -o bashdefault -o default blog
# ex: filetype=sh