Remove `ref_test` option from configuration file

This removes the `debug.ref_test` option from the configuration file,
after this change was originally requested from kchibisov in
https://github.com/alacritty/alacritty/pull/3396.

While this option is valueable for the CLI, it provides no value in the
configuration file.
This commit is contained in:
Christian Duerr 2020-03-04 11:32:07 +00:00 committed by GitHub
parent f7561850b4
commit 33cabfc3d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -558,6 +558,3 @@
# Print all received window events.
#print_events: false
# Record all characters and escape sequences as test data.
#ref_test: false

View File

@ -22,7 +22,7 @@ pub struct Debug {
pub render_timer: bool,
/// Record ref test
#[serde(deserialize_with = "failure_default")]
#[serde(skip)]
pub ref_test: bool,
}