2021-09-08 23:04:42 +00:00
|
|
|
# bash completion for terminator -*- shell-script -*-
|
|
|
|
|
|
|
|
_terminator()
|
|
|
|
{
|
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
|
|
|
|
2021-12-18 13:49:45 +00:00
|
|
|
# TODO implement completion for --profile and --layout
|
2021-10-11 10:04:47 +00:00
|
|
|
|
2021-09-08 23:04:42 +00:00
|
|
|
COMPREPLY=($(compgen -W "$($1 --help | tr ',' '\n' |
|
2021-10-10 13:35:46 +00:00
|
|
|
command sed -n -e 's/^ *\(--\?[a-zA-Z\-]\+=\?\).*/\1/p')"\
|
2021-09-08 23:04:42 +00:00
|
|
|
-- "$cur"))
|
|
|
|
} &&
|
|
|
|
complete -F _terminator terminator
|
|
|
|
|
|
|
|
# ex: filetype=sh
|