mirror of
https://git.ari.lt/ari.lt/blog.ari.lt.git
synced 2025-02-04 17:49:24 +01:00
13 lines
321 B
Bash
13 lines
321 B
Bash
|
# blog completion -*- shell-script -*-
|
||
|
|
||
|
_blog() {
|
||
|
local cur
|
||
|
|
||
|
_init_completion -s || return
|
||
|
COMPREPLY=($(compgen -W "help new build list\
|
||
|
rm edit new-config clean metadata static" -- "$cur"))
|
||
|
|
||
|
} && complete -F _blog -o bashdefault -o default blog
|
||
|
|
||
|
# ex: filetype=sh
|