diff options
Diffstat (limited to 'extra/completions/alacritty.bash')
-rw-r--r-- | extra/completions/alacritty.bash | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/extra/completions/alacritty.bash b/extra/completions/alacritty.bash index 41547422..c1546f50 100644 --- a/extra/completions/alacritty.bash +++ b/extra/completions/alacritty.bash @@ -61,7 +61,7 @@ _alacritty() { case "${cmd}" in alacritty) - opts="-q -v -o -e -T -h -V --print-events --ref-test --embed --config-file --socket --option --working-directory --hold --command --title --class --help --version msg migrate help" + opts="-q -v -e -T -o -h -V --print-events --ref-test --embed --config-file --socket --working-directory --hold --command --title --class --option --help --version msg migrate help" if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) return 0 @@ -79,14 +79,6 @@ _alacritty() { COMPREPLY=($(compgen -f "${cur}")) return 0 ;; - --option) - COMPREPLY=($(compgen -f "${cur}")) - return 0 - ;; - -o) - COMPREPLY=($(compgen -f "${cur}")) - return 0 - ;; --working-directory) COMPREPLY=($(compgen -f "${cur}")) return 0 @@ -111,6 +103,14 @@ _alacritty() { COMPREPLY=($(compgen -f "${cur}")) return 0 ;; + --option) + COMPREPLY=($(compgen -f "${cur}")) + return 0 + ;; + -o) + COMPREPLY=($(compgen -f "${cur}")) + return 0 + ;; *) COMPREPLY=() ;; @@ -269,7 +269,7 @@ _alacritty() { return 0 ;; alacritty__msg__create__window) - opts="-e -T -h --working-directory --hold --command --title --class --help" + opts="-e -T -o -h --working-directory --hold --command --title --class --option --help" if [[ ${cur} == -* || ${COMP_CWORD} -eq 3 ]] ; then COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) return 0 @@ -299,6 +299,14 @@ _alacritty() { COMPREPLY=($(compgen -f "${cur}")) return 0 ;; + --option) + COMPREPLY=($(compgen -f "${cur}")) + return 0 + ;; + -o) + COMPREPLY=($(compgen -f "${cur}")) + return 0 + ;; *) COMPREPLY=() ;; |