summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.c b/config.c
index 9a2bed8..39a5d80 100644
--- a/config.c
+++ b/config.c
@@ -312,6 +312,12 @@ void config_read(Ted *ted, char const *filename) {
} else {
config_err(cfg, "Invalid padding: %s.", value);
}
+ } else if (streq(key, "scrolloff")) {
+ if (is_integer && integer >= 1 && integer < 100) {
+ settings->scrolloff = (u8)integer;
+ } else {
+ config_err(cfg, "Invalid scrolloff: %s.", value);
+ }
} else {
config_err(cfg, "Unrecognized core setting: %s.", key);
}