diff options
Diffstat (limited to 'extra/completions/alacritty.bash')
-rw-r--r-- | extra/completions/alacritty.bash | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extra/completions/alacritty.bash b/extra/completions/alacritty.bash index 5cca6466..60025f5f 100644 --- a/extra/completions/alacritty.bash +++ b/extra/completions/alacritty.bash @@ -31,7 +31,7 @@ _alacritty() { case "${cmd}" in alacritty) - opts="-h -V -q -v -o -e -t --help --version --print-events --ref-test --embed --config-file --socket --option --working-directory --hold --command --title --class msg help" + opts="-h -V -q -v -o -e -T --help --version --print-events --ref-test --embed --config-file --socket --option --working-directory --hold --command --title --class msg help" if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) return 0 @@ -73,7 +73,7 @@ _alacritty() { COMPREPLY=($(compgen -f "${cur}")) return 0 ;; - -t) + -T) COMPREPLY=($(compgen -f "${cur}")) return 0 ;; @@ -147,7 +147,7 @@ _alacritty() { return 0 ;; alacritty__msg__create__window) - opts="-e -t -h --working-directory --hold --command --title --class --help" + opts="-e -T -h --working-directory --hold --command --title --class --help" if [[ ${cur} == -* || ${COMP_CWORD} -eq 3 ]] ; then COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) return 0 @@ -169,7 +169,7 @@ _alacritty() { COMPREPLY=($(compgen -f "${cur}")) return 0 ;; - -t) + -T) COMPREPLY=($(compgen -f "${cur}")) return 0 ;; |