aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2020-01-20 23:03:54 +0300
committerGitHub <noreply@github.com>2020-01-20 23:03:54 +0300
commit2f1a390aaad188d1cad9fc689620ae90e027cc8a (patch)
tree37ecb2bd335f1604c4d6cd427a5366ff43035d18 /alacritty/src
parentfb1d3bef3f45e64a06e5db16f5b21cfa2aacb4df (diff)
downloadr-alacritty-2f1a390aaad188d1cad9fc689620ae90e027cc8a.tar.gz
r-alacritty-2f1a390aaad188d1cad9fc689620ae90e027cc8a.tar.bz2
r-alacritty-2f1a390aaad188d1cad9fc689620ae90e027cc8a.zip
Remove scrolling.auto_scroll feature
Fixes: #1873
Diffstat (limited to 'alacritty/src')
-rw-r--r--alacritty/src/config/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/alacritty/src/config/mod.rs b/alacritty/src/config/mod.rs
index 19889887..56e09be7 100644
--- a/alacritty/src/config/mod.rs
+++ b/alacritty/src/config/mod.rs
@@ -204,6 +204,14 @@ fn print_deprecation_warnings(config: &Config) {
lines"
);
}
+
+ if config.scrolling.auto_scroll.is_some() {
+ warn!(
+ target: LOG_TARGET_CONFIG,
+ "Config scrolling.auto_scroll has been removed and is now always disabled, it can be \
+ safely removed from the config"
+ );
+ }
}
#[cfg(test)]