alacritty/alacritty-completions.fish

81 lines
1.6 KiB
Fish
Raw Normal View History

2018-03-12 17:13:48 +00:00
# Meta
complete -c alacritty \
-s "v" \
-l "version" \
-d "Prints version information"
complete -c alacritty \
-s "h" \
-l "help" \
-d "Prints help information"
# Config
complete -c alacritty \
-l "live-config-reload" \
-d "Enable automatic config reloading"
complete -c alacritty \
-l "no-live-config-reload" \
-d "Disable automatic config reloading"
Display errors and warnings To make sure that all error and information reporting to the user is unified, all instances of `print!`, `eprint!`, `println!` and `eprintln!` have been removed and replaced by logging. When `RUST_LOG` is not specified, the default Alacritty logger now also prints to both the stderr and a log file. The log file is only created when a message is written to it and its name is printed to stdout the first time it is used. Whenever a warning or an error has been written to the log file/stderr, a message is now displayed in Alacritty which points to the log file where the full error is documented. The message is cleared whenever the screen is cleared using either the `clear` command or the `Ctrl+L` key binding. To make sure that log files created by root don't prevent normal users from interacting with them, the Alacritty log file is `/tmp/Alacritty-$PID.log`. Since it's still possible that the log file can't be created, the UI error/warning message now informs the user if the message was only written to stderr. The reason why it couldn't be created is then printed to stderr. To make sure the deletion of the log file at runtime doesn't create any issues, the file is re-created if a write is attempted without the file being present. To help with debugging Alacritty issues, a timestamp and the error level are printed in all log messages. All log messages now follow this format: [YYYY-MM-DD HH:MM] [LEVEL] Message 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 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
2018-11-17 14:39:13 +00:00
complete -c alacritty \
-l "persistent-logging" \
-d "Keep the log file after quitting Alacritty"
2018-03-12 17:13:48 +00:00
complete -c alacritty \
-f \
-l "config-file" \
-d "Specify an alternative config file"
complete -c alacritty \
-l "title" \
-d "Defines the window title"
complete -c alacritty \
-x \
-a '(__fish_complete_directories (commandline -ct))' \
-l "working-directory" \
-d "Start shell in specified directory"
# Output
complete \
-c alacritty \
-l "print-events" \
-d "Print all events to stdout"
complete \
-c alacritty \
-s "q" \
-d "Reduces the level of verbosity (min is -qq)"
complete \
-c alacritty \
-s "qq" \
-d "Reduces the level of verbosity"
complete \
-c alacritty \
-s "v" \
-d "Increases the level of verbosity"
complete \
-c alacritty \
-s "vv" \
-d "Increases the level of verbosity"
complete \
-c alacritty \
-s "vvv" \
-d "Increases the level of verbosity"
complete \
-c alacritty \
-l "ref-test" \
-d "Generates ref test"
2018-03-13 01:16:05 +00:00
complete \
-c alacritty \
-s "d" \
-l "dimensions" \
-d "Window dimensions <columns> <lines>"
complete \
-c alacritty \
-l "position" \
-d "Window position <x-pos> <y-pos>"
2018-03-13 01:16:05 +00:00
complete \
-c alacritty \
-s "e" \
-l "command" \
-d "Execute command (must be last arg)"