mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 09:39:25 +01:00
ffe2a53e32
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
12 lines
315 B
Bash
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
|