terminator/completion/bash

17 lines
423 B
Plaintext
Raw Permalink Normal View History

2021-09-08 23:04:42 +00:00
# bash completion for terminator -*- shell-script -*-
_terminator()
{
local cur prev words cword
_init_completion || return
# TODO implement completion for --profile and --layout
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