From 33cabfc3d2e9dca3267199c822d2a37ed6d72260 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Wed, 4 Mar 2020 11:32:07 +0000 Subject: 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. --- alacritty_terminal/src/config/debug.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty_terminal/src/config') diff --git a/alacritty_terminal/src/config/debug.rs b/alacritty_terminal/src/config/debug.rs index f3489693..f5ebe974 100644 --- a/alacritty_terminal/src/config/debug.rs +++ b/alacritty_terminal/src/config/debug.rs @@ -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, } -- cgit v1.2.3-54-g00ecf