From cb4d2c0a3b20adc4c0603dcfb9447e9ebf72eae5 Mon Sep 17 00:00:00 2001 From: Christian Dürr Date: Fri, 16 Nov 2018 11:13:38 +0100 Subject: Add option for keeping log files 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 --- alacritty-completions.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty-completions.bash') 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 -- cgit v1.2.3-54-g00ecf