expose option for wrapping scrollback search
This commit is contained in:
parent
7a3e1991c5
commit
9c8d7c3490
|
@ -351,6 +351,9 @@ static void load_config(GtkWindow *window, VteTerminal *vte,
|
||||||
if (get_config_boolean(config, "options", "clickable_url", &cfgbool)) {
|
if (get_config_boolean(config, "options", "clickable_url", &cfgbool)) {
|
||||||
*clickable_url = cfgbool;
|
*clickable_url = cfgbool;
|
||||||
}
|
}
|
||||||
|
if (get_config_boolean(config, "options", "search_wrap", &cfgbool)) {
|
||||||
|
vte_terminal_search_set_wrap_around(vte, cfgbool);
|
||||||
|
}
|
||||||
|
|
||||||
g_free(browser_cmd[0]);
|
g_free(browser_cmd[0]);
|
||||||
if (get_config_string(config, "options", "browser", &cfgstr)) {
|
if (get_config_string(config, "options", "browser", &cfgstr)) {
|
||||||
|
|
|
@ -11,6 +11,7 @@ urgent_on_bell = true
|
||||||
clickable_url = true
|
clickable_url = true
|
||||||
font = Monospace 9
|
font = Monospace 9
|
||||||
scrollback_lines = 1000
|
scrollback_lines = 1000
|
||||||
|
search_wrap = true
|
||||||
#icon_name = terminal
|
#icon_name = terminal
|
||||||
|
|
||||||
# 0.0: opaque, 1.0: transparent
|
# 0.0: opaque, 1.0: transparent
|
||||||
|
|
Loading…
Reference in New Issue