mirror of
https://codeberg.org/cage/tinmop/
synced 2025-01-10 02:02:31 +01:00
11 lines
325 B
Bash
11 lines
325 B
Bash
# bash completion for tinmop -*- shell-script -*-
|
|
|
|
_tinmop_completions() {
|
|
COMPREPLY=($(COMP_WORDS="${COMP_WORDS[*]}" \
|
|
COMP_CWORD=$COMP_CWORD \
|
|
COMP_LINE=$COMP_LINE \
|
|
tinmop --bash-complete))
|
|
}
|
|
|
|
complete -F _tinmop_completions tinmop
|