From 8c6422458299496f6fa2a6984c93bd05b55c1888 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 1 Mar 2020 04:07:36 +0000 Subject: Remove `tabspaces` config option This completely removes the tabspaces option from the Alacritty configuration, due to frequent misuse of it. Based on some research, none of the terminal emulators support setting the value for tabspaces or read the terminfo to determine init_tabs value at startup. The tested terminal emulators were URxvt, XTerm, and Termite. --- alacritty/src/config/mod.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'alacritty/src') diff --git a/alacritty/src/config/mod.rs b/alacritty/src/config/mod.rs index d7b702b9..2a598714 100644 --- a/alacritty/src/config/mod.rs +++ b/alacritty/src/config/mod.rs @@ -209,6 +209,14 @@ fn print_deprecation_warnings(config: &Config) { safely removed from the config" ); } + + if config.tabspaces.is_some() { + warn!( + target: LOG_TARGET_CONFIG, + "Config tabspaces has been removed and is now always 8, it can be safely removed from \ + the config" + ); + } } #[cfg(test)] -- cgit