diff options
author | Christian Dürr <contact@christianduerr.com> | 2018-11-16 11:13:38 +0100 |
---|---|---|
committer | Christian Dürr <contact@christianduerr.com> | 2018-11-16 11:13:38 +0100 |
commit | cb4d2c0a3b20adc4c0603dcfb9447e9ebf72eae5 (patch) | |
tree | 0dc4d8c62882e70a583c01770607ce3c47944048 /alacritty-completions.bash | |
parent | e66f23ad97c8df42192d07650109d42de3c767c9 (diff) | |
download | alacritty-cb4d2c0a3b20adc4c0603dcfb9447e9ebf72eae5.tar.gz alacritty-cb4d2c0a3b20adc4c0603dcfb9447e9ebf72eae5.zip |
Add option for keeping log filesdisplay-config-errors
Since it's not unusual to spawn a lot of different terminal emulators
without restarting, Alacritty can create a ton of different log files.
To combat this problem, logfiles are now removed by default after
Alacritty has been closed. If the user wants to persist the log of a
single session, the `--persistent_logging` option can be used. For
persisting all log files, the `persistent_logging` option can be set in
the configuration file
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 f8ffc107..48c683e8 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 --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 -t --title --working-directory" # If `--command` or `-e` is used, stop completing for i in "${!COMP_WORDS[@]}"; do |