commit 1ca15d53d75afef7d91e74a425a0757d27cac0f2 from: Omar Polo date: Tue Jan 16 16:37:54 2024 UTC sort vars commit - 3b726df7bc7919e6258dde70307c622eb06e734e commit + 1ca15d53d75afef7d91e74a425a0757d27cac0f2 blob - 2a142a5c132e43c57a9ef19b4eb45babcf9b24a6 blob + eb35860fb37a032652b98ced703e735d9ac71088 --- defaults.c +++ defaults.c @@ -540,27 +540,32 @@ config_setprfx(const char *name, const char *prfx, con int config_setvari(const char *var, int val) { - if (!strcmp(var, "fill-column")) { - if ((fill_column = val) <= 0) - fill_column = INT_MAX; - } else if (!strcmp(var, "olivetti-mode")) { - olivetti_mode = !!val; + if (!strcmp(var, "autosave")) { + autosave = val; + } else if (!strcmp(var, "dont-wrap-pre")) { + dont_wrap_pre = !!val; + } else if (!strcmp(var, "emojify-link")) { + emojify_link = !!val; } else if (!strcmp(var, "enable-colors")) { enable_colors = !!val; - } else if (!strcmp(var, "hide-pre-context")) { - hide_pre_context = !!val; + } else if (!strcmp(var, "fill-column")) { + if ((fill_column = val) <= 0) + fill_column = INT_MAX; + } else if (!strcmp(var, "fringe-ignore-offset")) { + fringe_ignore_offset = !!val; } else if (!strcmp(var, "hide-pre-blocks")) { hide_pre_blocks = !!val; } else if (!strcmp(var, "hide-pre-closing-line")) { hide_pre_closing_line = !!val; - } else if (!strcmp(var, "dont-wrap-pre")) { - dont_wrap_pre = !!val; - } else if (!strcmp(var, "emojify-link")) { - emojify_link = !!val; - } else if (!strcmp(var, "update-title") || !strcmp(var, "set-title")) { - set_title = !!val; - } else if (!strcmp(var, "autosave")) { - autosave = val; + } else if (!strcmp(var, "hide-pre-context")) { + hide_pre_context = !!val; + } else if (!strcmp(var, "load-url-use-heuristic")) { + load_url_use_heuristic = !!val; + } else if (!strcmp(var, "max-killed-tabs")) { + if (val >= 0) + max_killed_tabs = MIN(val, 128); + } else if (!strcmp(var, "olivetti-mode")) { + olivetti_mode = !!val; } else if (!strcmp(var, "tab-bar-show")) { if (val < 0) tab_bar_show = -1; @@ -568,13 +573,9 @@ config_setvari(const char *var, int val) tab_bar_show = 0; else tab_bar_show = 1; - } else if (!strcmp(var, "max-killed-tabs")) { - if (val >= 0) - max_killed_tabs = MIN(val, 128); - } else if (!strcmp(var, "fringe-ignore-offset")) { - fringe_ignore_offset = !!val; - } else if (!strcmp(var, "load-url-use-heuristic")) { - load_url_use_heuristic = !!val; + } else if (!strcmp(var, "update-title") || + !strcmp(var, "set-title")) { + set_title = !!val; } else { return 0; }