aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/config/ui_config.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2020-11-25 22:49:19 +0000
committerGitHub <noreply@github.com>2020-11-26 01:49:19 +0300
commit07684281901b8d287221ade9b7c93a0f437a26f1 (patch)
tree3da9515f8090904f2777955bfeed5cdd077d5c37 /alacritty/src/config/ui_config.rs
parent26479bb9f5c42e3294204c2923a67f3185dd061c (diff)
downloadr-alacritty-07684281901b8d287221ade9b7c93a0f437a26f1.tar.gz
r-alacritty-07684281901b8d287221ade9b7c93a0f437a26f1.tar.bz2
r-alacritty-07684281901b8d287221ade9b7c93a0f437a26f1.zip
Remove redundant CLI flags
This removes some of Alacritty's CLI flags since the same functionality is provided by the '--option' flag now. The removed flags are: * '--persistent-logging' * '--live-config-reload' * '--no-live-config-reload' * '--dimensions' * '--position' Fixes #4246.
Diffstat (limited to 'alacritty/src/config/ui_config.rs')
-rw-r--r--alacritty/src/config/ui_config.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/alacritty/src/config/ui_config.rs b/alacritty/src/config/ui_config.rs
index 31654c6c..87b27b3e 100644
--- a/alacritty/src/config/ui_config.rs
+++ b/alacritty/src/config/ui_config.rs
@@ -97,11 +97,6 @@ impl UIConfig {
self.live_config_reload.0
}
- #[inline]
- pub fn set_live_config_reload(&mut self, live_config_reload: bool) {
- self.live_config_reload.0 = live_config_reload;
- }
-
/// Send escape sequences using the alt key.
#[inline]
pub fn alt_send_esc(&self) -> bool {