summaryrefslogtreecommitdiff
path: root/src/fe-text/gui-windows.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-04-22 23:20:42 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-04-22 23:20:42 +0000
commita321ad015068d162a1bab52c0c08c6060c5c0d9e (patch)
treede55d7245c42db9ba21edc405cd55586911d0316 /src/fe-text/gui-windows.c
parentc2483eff4eec8eaec4dcea7c4fd639071d5303bf (diff)
downloadirssi-a321ad015068d162a1bab52c0c08c6060c5c0d9e.zip
/SET indent_always - should we indent the long words that are forcibly
wrapped to next line. Default is ON. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1456 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/gui-windows.c')
-rw-r--r--src/fe-text/gui-windows.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fe-text/gui-windows.c b/src/fe-text/gui-windows.c
index 57a2b488..f25a12a6 100644
--- a/src/fe-text/gui-windows.c
+++ b/src/fe-text/gui-windows.c
@@ -45,7 +45,8 @@ static GUI_WINDOW_REC *gui_window_init(WINDOW_REC *window,
gui->parent = parent;
gui->view = textbuffer_view_create(textbuffer_create(),
window->width, window->height,
- settings_get_int("indent"));
+ settings_get_int("indent"),
+ settings_get_bool("indent_always"));
return gui;
}
@@ -283,7 +284,8 @@ static void read_settings(void)
WINDOW_REC *rec = tmp->data;
textbuffer_view_set_default_indent(WINDOW_GUI(rec)->view,
- settings_get_int("indent"));
+ settings_get_int("indent"),
+ settings_get_bool("indent_always"));
}
special_vars_add_signals(prompt, 4, funcs);
@@ -296,6 +298,7 @@ void gui_windows_init(void)
{
settings_add_bool("lookandfeel", "autostick_split_windows", TRUE);
settings_add_int("lookandfeel", "indent", 10);
+ settings_add_bool("lookandfeel", "indent_always", FALSE);
settings_add_str("lookandfeel", "prompt", "[$[.15]T] ");
settings_add_str("lookandfeel", "prompt_window", "[$winname] ");