diff options
author | Ben Denhartog <3893293+sudoforge@users.noreply.github.com> | 2021-01-29 13:29:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 20:29:26 +0000 |
commit | cb46f0e1ac3baf54b15951762bdf8ffaa38d36c3 (patch) | |
tree | 182fd1636a56dfe9b69e20c44eef23549697e9cb /extra/completions | |
parent | a3bc380956f390d021b75a5741579521816c9715 (diff) | |
download | alacritty-cb46f0e1ac3baf54b15951762bdf8ffaa38d36c3.tar.gz alacritty-cb46f0e1ac3baf54b15951762bdf8ffaa38d36c3.zip |
Remove --dimensions/-d from bash completions
Diffstat (limited to 'extra/completions')
-rw-r--r-- | extra/completions/alacritty.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/completions/alacritty.bash b/extra/completions/alacritty.bash index 7d756644..e514126c 100644 --- a/extra/completions/alacritty.bash +++ b/extra/completions/alacritty.bash @@ -35,7 +35,7 @@ _alacritty() compopt -o filenames COMPREPLY=( $(compgen -f -- "${cur}") ) return 0;; - --dimensions | -d | --class | --title | -t) + --class | --title | -t) # Don't complete here return 0;; --working-directory) |