diff options
author | Cole Helbling <cole.e.helbling@gmail.com> | 2019-03-11 05:35:49 -0700 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-03-11 12:35:49 +0000 |
commit | e240da9ab3b819a8845ced1ab72d0a4239eac789 (patch) | |
tree | 9b31f117de9ed9e6455eff1d4604379d4ea461ac /alacritty-completions.bash | |
parent | 0ec4bd28dadcf476baf6180af7cf93bea9214f19 (diff) | |
download | alacritty-e240da9ab3b819a8845ced1ab72d0a4239eac789.tar.gz alacritty-e240da9ab3b819a8845ced1ab72d0a4239eac789.zip |
Add option for window position at startup
Diffstat (limited to 'alacritty-completions.bash')
-rw-r--r-- | alacritty-completions.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty-completions.bash b/alacritty-completions.bash index 48c683e8..086e3cdc 100644 --- a/alacritty-completions.bash +++ b/alacritty-completions.bash @@ -11,7 +11,7 @@ _alacritty() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" prevprev="${COMP_WORDS[COMP_CWORD-2]}" - opts="-h --help -V --version --live-config-reload --no-live-config-reload --persistent-logging --print-events -q -qq -v -vv -vvv --ref-test -e --command --config-file -d --dimensions -t --title --working-directory" + opts="-h --help -V --version --live-config-reload --no-live-config-reload --persistent-logging --print-events -q -qq -v -vv -vvv --ref-test -e --command --config-file -d --dimensions --position -t --title --working-directory" # If `--command` or `-e` is used, stop completing for i in "${!COMP_WORDS[@]}"; do |