summaryrefslogtreecommitdiff
path: root/src/common/weeconfig.h
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2005-07-09 15:30:51 +0000
committerSebastien Helleu <flashcode@flashtux.org>2005-07-09 15:30:51 +0000
commit54d4fc12a69ca6398f8f5d41d73bba22cf6788aa (patch)
tree1ec405acd240e1b3b9ac69ba4ded5e35028bda05 /src/common/weeconfig.h
parent55125beee4aa5489f6976521f8ac899398fea836 (diff)
downloadweechat-54d4fc12a69ca6398f8f5d41d73bba22cf6788aa.zip
- new keyboard management: keys are setup in config file, new command /key was added and some new default keys were added
- added seconds in infobar time (optional with new config flag) - fixed some curses refreshs
Diffstat (limited to 'src/common/weeconfig.h')
-rw-r--r--src/common/weeconfig.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/common/weeconfig.h b/src/common/weeconfig.h
index 9d25aea60..5a8c98684 100644
--- a/src/common/weeconfig.h
+++ b/src/common/weeconfig.h
@@ -33,9 +33,10 @@
#define CONFIG_SECTION_IRC 4
#define CONFIG_SECTION_DCC 5
#define CONFIG_SECTION_PROXY 6
-#define CONFIG_SECTION_ALIAS 7
-#define CONFIG_SECTION_SERVER 8
-#define CONFIG_NUMBER_SECTIONS 9
+#define CONFIG_SECTION_KEYS 7
+#define CONFIG_SECTION_ALIAS 8
+#define CONFIG_SECTION_SERVER 9
+#define CONFIG_NUMBER_SECTIONS 10
#define OPTION_TYPE_BOOLEAN 1 /* values: on/off */
#define OPTION_TYPE_INT 2 /* values: from min to max */
@@ -97,6 +98,7 @@ extern char *cfg_look_no_nickname;
extern char *cfg_look_completor;
extern int cfg_look_infobar;
extern char *cfg_look_infobar_timestamp;
+extern int cfg_look_infobar_seconds;
extern int cfg_look_infobar_delay_highlight;
extern int cfg_col_title;
@@ -120,6 +122,7 @@ extern int cfg_col_status_data_other;
extern int cfg_col_status_more;
extern int cfg_col_status_bg;
extern int cfg_col_infobar;
+extern int cfg_col_infobar_delimiters;
extern int cfg_col_infobar_highlight;
extern int cfg_col_infobar_bg;
extern int cfg_col_input;