diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-21 22:03:12 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-21 22:03:12 +0100 |
commit | 79f2f46decf7ce5b6ae9a0799426b76ec2c51e62 (patch) | |
tree | 734c3e3142166bd4e79961598bb75eaf73be93bf /src/core/wee-config.h | |
parent | 26dfd69f879c7d89b35c537fb7005d8a456cb5e7 (diff) | |
download | weechat-79f2f46decf7ce5b6ae9a0799426b76ec2c51e62.zip |
core: rename option weechat.look.save_layout_on_exit to weechat.look.store_layout_on_exit, replace "save" by "store" for layouts
Diffstat (limited to 'src/core/wee-config.h')
-rw-r--r-- | src/core/wee-config.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/wee-config.h b/src/core/wee-config.h index dc744a6dc..e77578331 100644 --- a/src/core/wee-config.h +++ b/src/core/wee-config.h @@ -91,12 +91,12 @@ enum t_config_look_read_marker CONFIG_LOOK_READ_MARKER_CHAR, }; -enum t_config_look_save_layout_on_exit +enum t_config_look_store_layout_on_exit { - CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_NONE = 0, - CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_BUFFERS, - CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_WINDOWS, - CONFIG_LOOK_SAVE_LAYOUT_ON_EXIT_ALL, + CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_NONE = 0, + CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_BUFFERS, + CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_WINDOWS, + CONFIG_LOOK_STORE_LAYOUT_ON_EXIT_ALL, }; extern struct t_config_file *weechat_config_file; @@ -191,13 +191,13 @@ extern struct t_config_option *config_look_read_marker; extern struct t_config_option *config_look_read_marker_always_show; extern struct t_config_option *config_look_read_marker_string; extern struct t_config_option *config_look_save_config_on_exit; -extern struct t_config_option *config_look_save_layout_on_exit; extern struct t_config_option *config_look_scroll_amount; extern struct t_config_option *config_look_scroll_bottom_after_switch; extern struct t_config_option *config_look_scroll_page_percent; extern struct t_config_option *config_look_search_text_not_found_alert; extern struct t_config_option *config_look_separator_horizontal; extern struct t_config_option *config_look_separator_vertical; +extern struct t_config_option *config_look_store_layout_on_exit; extern struct t_config_option *config_look_tab_width; extern struct t_config_option *config_look_time_format; extern struct t_config_option *config_look_window_auto_zoom; |