1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- ********* WARNING! *********
This file is automatically built with a Perl script. DO NOT EDIT!
-->
<row>
<entry><option>look_set_title</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Set title for window (terminal for Curses GUI) with name and version</entry>
</row>
<row>
<entry><option>look_startup_logo</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display WeeChat logo at startup</entry>
</row>
<row>
<entry><option>look_startup_version</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display WeeChat version at startup</entry>
</row>
<row>
<entry><option>look_weechat_slogan</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>WeeChat slogan (if empty, slogan is not used)</entry>
</row>
<row>
<entry><option>look_charset_decode_iso</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>ISO charset for decoding messages from server (used only if locale is UTF-8) (if empty, messages are not converted if locale is UTF-8</entry>
</row>
<row>
<entry><option>look_charset_decode_utf</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>UTF charset for decoding messages from server (used only if locale is not UTF-8) (if empty, messages are not converted if locale is not UTF-8</entry>
</row>
<row>
<entry><option>look_charset_encode</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Charset for encoding messages sent to server, examples: UFT-8, ISO-8859-1 (if empty, messages are not converted)</entry>
</row>
<row>
<entry><option>look_charset_internal</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Forces internal WeeChat charset (should be empty in most cases, that means detected charset is used)</entry>
</row>
<row>
<entry><option>look_one_server_buffer</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Use same buffer for all servers</entry>
</row>
<row>
<entry><option>look_open_near_server</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Open new channels/privates near server</entry>
</row>
<row>
<entry><option>look_scroll_amount</option></entry>
<entry>integer</entry>
<entry>between 1 and 2147483647</entry>
<entry></entry>
<entry>How many lines to scroll by with scroll_up and scroll_down</entry>
</row>
<row>
<entry><option>look_buffer_timestamp</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Timestamp for buffers</entry>
</row>
<row>
<entry><option>look_color_nicks_number</option></entry>
<entry>integer</entry>
<entry>between 1 and 10</entry>
<entry></entry>
<entry>Number of colors to use for nicks colors</entry>
</row>
<row>
<entry><option>look_color_actions</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display actions with different colors</entry>
</row>
<row>
<entry><option>look_nicklist</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display nicklist window (for channel windows)</entry>
</row>
<row>
<entry><option>look_nicklist_position</option></entry>
<entry>string</entry>
<entry>'left', 'right', 'top', 'bottom'</entry>
<entry></entry>
<entry>Nicklist position (top, left, right (default), bottom)</entry>
</row>
<row>
<entry><option>look_nicklist_min_size</option></entry>
<entry>integer</entry>
<entry>between 0 and 100</entry>
<entry></entry>
<entry>Min size for nicklist (width or height, depending on look_nicklist_position (0 = no min size))</entry>
</row>
<row>
<entry><option>look_nicklist_max_size</option></entry>
<entry>integer</entry>
<entry>between 0 and 100</entry>
<entry></entry>
<entry>Max size for nicklist (width or height, depending on look_nicklist_position (0 = no max size; if min == max and > 0, then size is fixed))</entry>
</row>
<row>
<entry><option>look_no_nickname</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Text to display instead of nick when not connected</entry>
</row>
<row>
<entry><option>look_nickmode</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display nick mode ((half)op/voice) before each nick</entry>
</row>
<row>
<entry><option>look_nickmode_empty</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display space if nick mode is not (half)op/voice</entry>
</row>
<row>
<entry><option>look_nick_completor</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>The string inserted after nick completion</entry>
</row>
<row>
<entry><option>look_nick_completion_ignore</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Chars ignored for nick completion</entry>
</row>
<row>
<entry><option>look_nick_complete_first</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Complete only with first nick found</entry>
</row>
<row>
<entry><option>look_infobar</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Enable info bar</entry>
</row>
<row>
<entry><option>look_infobar_timestamp</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Timestamp for time in infobar</entry>
</row>
<row>
<entry><option>look_infobar_seconds</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display seconds in infobar time</entry>
</row>
<row>
<entry><option>look_infobar_delay_highlight</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Delay (in seconds) for highlight messages in infobar (0 = disable highlight notifications in infobar)</entry>
</row>
<row>
<entry><option>look_hotlist_names_count</option></entry>
<entry>integer</entry>
<entry>between 0 and 32</entry>
<entry></entry>
<entry>Max number of names in hotlist (0 = no name displayed, only buffer numbers)</entry>
</row>
<row>
<entry><option>look_hotlist_names_level</option></entry>
<entry>integer</entry>
<entry>between 1 and 15</entry>
<entry></entry>
<entry>Level for displaying names in hotlist (combination of: 1=join/part, 2=message, 4=private, 8=highlight, for example: 12=private+highlight)</entry>
</row>
<row>
<entry><option>look_hotlist_names_length</option></entry>
<entry>integer</entry>
<entry>between 0 and 32</entry>
<entry></entry>
<entry>Max length of names in hotlist (0 = no limit)</entry>
</row>
<row>
<entry><option>look_day_change</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display special message when day changes</entry>
</row>
<row>
<entry><option>look_day_change_timestamp</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Timestamp for date displayed when day changed</entry>
</row>
<row>
<entry><option>look_read_marker</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Use a marker on servers/channels to show first unread line</entry>
</row>
<row>
<entry><option>col_real_white</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>If set, uses real white color, disabled by default for terms with white background (if you never use white background, you should turn on this option to see real white instead of default term foreground color)</entry>
</row>
<row>
<entry><option>col_separator</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for window separators (when splited)</entry>
</row>
<row>
<entry><option>col_title</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for title bar</entry>
</row>
<row>
<entry><option>col_title_bg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Background for title bar</entry>
</row>
<row>
<entry><option>col_chat</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for chat text</entry>
</row>
<row>
<entry><option>col_chat_time</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for time in chat window</entry>
</row>
<row>
<entry><option>col_chat_time_sep</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for time separator (chat window)</entry>
</row>
<row>
<entry><option>col_chat_prefix1</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for 1st and 3rd char of prefix</entry>
</row>
<row>
<entry><option>col_chat_prefix2</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for middle char of prefix</entry>
</row>
<row>
<entry><option>col_chat_server</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for server name</entry>
</row>
<row>
<entry><option>col_chat_join</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for join arrow (prefix)</entry>
</row>
<row>
<entry><option>col_chat_part</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for part/quit arrow (prefix)</entry>
</row>
<row>
<entry><option>col_chat_nick</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nicks in actions (chat window)</entry>
</row>
<row>
<entry><option>col_chat_host</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for hostnames (chat window)</entry>
</row>
<row>
<entry><option>col_chat_channel</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for channel names in actions (chat window)</entry>
</row>
<row>
<entry><option>col_chat_dark</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for dark separators (chat window)</entry>
</row>
<row>
<entry><option>col_chat_highlight</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for highlighted nick (chat window)</entry>
</row>
<row>
<entry><option>col_chat_bg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Background for chat window</entry>
</row>
<row>
<entry><option>col_chat_read_marker</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for unread data marker</entry>
</row>
<row>
<entry><option>col_chat_read_marker_bg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Background for unread data marker</entry>
</row>
<row>
<entry><option>col_status</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for status bar</entry>
</row>
<row>
<entry><option>col_status_delimiters</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for status bar delimiters</entry>
</row>
<row>
<entry><option>col_status_channel</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for current channel in status bar</entry>
</row>
<row>
<entry><option>col_status_data_msg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for window with new messages (status bar)</entry>
</row>
<row>
<entry><option>col_status_private</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for window with private message (status bar)</entry>
</row>
<row>
<entry><option>col_status_highlight</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for window with highlight (status bar)</entry>
</row>
<row>
<entry><option>col_status_data_other</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for window with new data (not messages) (status bar)</entry>
</row>
<row>
<entry><option>col_status_more</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for window with new data (status bar)</entry>
</row>
<row>
<entry><option>col_status_bg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Background for status window</entry>
</row>
<row>
<entry><option>col_infobar</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for info bar text</entry>
</row>
<row>
<entry><option>col_infobar_delimiters</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for infobar delimiters</entry>
</row>
<row>
<entry><option>col_infobar_highlight</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for info bar highlight notification</entry>
</row>
<row>
<entry><option>col_infobar_bg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Background for info bar window</entry>
</row>
<row>
<entry><option>col_input</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for input text</entry>
</row>
<row>
<entry><option>col_input_channel</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for input text (channel name)</entry>
</row>
<row>
<entry><option>col_input_nick</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for input text (nick name)</entry>
</row>
<row>
<entry><option>col_input_delimiters</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for input text (delimiters)</entry>
</row>
<row>
<entry><option>col_input_bg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Background for input window</entry>
</row>
<row>
<entry><option>col_nick</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nicknames</entry>
</row>
<row>
<entry><option>col_nick_away</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for away nicknames</entry>
</row>
<row>
<entry><option>col_nick_chanowner</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for chan owner symbol (specific to unrealircd)</entry>
</row>
<row>
<entry><option>col_nick_chanadmin</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for chan admin symbol (specific to unrealircd)</entry>
</row>
<row>
<entry><option>col_nick_op</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for operator symbol</entry>
</row>
<row>
<entry><option>col_nick_halfop</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for half-operator symbol</entry>
</row>
<row>
<entry><option>col_nick_voice</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for voice symbol</entry>
</row>
<row>
<entry><option>col_nick_more</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for '+' when scrolling nicks</entry>
</row>
<row>
<entry><option>col_nick_sep</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick separator</entry>
</row>
<row>
<entry><option>col_nick_self</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for local nick</entry>
</row>
<row>
<entry><option>col_nick_color1</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color2</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color3</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color4</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color5</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color6</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color7</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color8</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color9</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_color10</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for nick</entry>
</row>
<row>
<entry><option>col_nick_private</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for other nick in private window</entry>
</row>
<row>
<entry><option>col_nick_bg</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Background for nicknames</entry>
</row>
<row>
<entry><option>col_chat_dcc_selected</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for selected DCC (chat window)</entry>
</row>
<row>
<entry><option>col_dcc_waiting</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for "waiting" dcc status</entry>
</row>
<row>
<entry><option>col_dcc_connecting</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for "connecting" dcc status</entry>
</row>
<row>
<entry><option>col_dcc_active</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for "active" dcc status</entry>
</row>
<row>
<entry><option>col_dcc_done</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for "done" dcc status</entry>
</row>
<row>
<entry><option>col_dcc_failed</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for "failed" dcc status</entry>
</row>
<row>
<entry><option>col_dcc_aborted</option></entry>
<entry>color</entry>
<entry>Curses or Gtk color</entry>
<entry></entry>
<entry>Color for "aborted" dcc status</entry>
</row>
<row>
<entry><option>history_max_lines</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Maximum number of lines in history for one server/channel/private window (0 = unlimited)</entry>
</row>
<row>
<entry><option>history_max_commands</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Maximum number of user commands in history (0 = unlimited)</entry>
</row>
<row>
<entry><option>history_display_default</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Maximum number of commands to display by default in history listing (0 = unlimited)</entry>
</row>
<row>
<entry><option>log_auto_server</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically log server messages</entry>
</row>
<row>
<entry><option>log_auto_channel</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically log channel chats</entry>
</row>
<row>
<entry><option>log_auto_private</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically log private chats</entry>
</row>
<row>
<entry><option>log_plugin_msg</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Log messages from plugins (scripts)</entry>
</row>
<row>
<entry><option>log_path</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Path for WeeChat log files ('%h' will be replaced by WeeChat home, ~/.weechat by default)</entry>
</row>
<row>
<entry><option>log_timestamp</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Timestamp for log (see man strftime for date/time specifiers)</entry>
</row>
<row>
<entry><option>log_hide_nickserv_pwd</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Hide password displayed by nickserv</entry>
</row>
<row>
<entry><option>irc_display_away</option></entry>
<entry>string</entry>
<entry>'off', 'local', 'channel'</entry>
<entry></entry>
<entry>Display message when (un)marking as away</entry>
</row>
<row>
<entry><option>irc_show_away_once</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Show remote away message only once in private</entry>
</row>
<row>
<entry><option>irc_default_msg_part</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Default part message (leaving channel) ('%v' will be replaced by WeeChat version in string)</entry>
</row>
<row>
<entry><option>irc_default_msg_quit</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Default quit message ('%v' will be replaced by WeeChat version in string)</entry>
</row>
<row>
<entry><option>irc_notice_as_pv</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Display notices as private messages</entry>
</row>
<row>
<entry><option>irc_away_check</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Interval between two checks for away (in minutes, 0 = never check)</entry>
</row>
<row>
<entry><option>irc_away_check_max_nicks</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Do not check away nicks on channels with high number of nicks (0 = unlimited)</entry>
</row>
<row>
<entry><option>irc_lag_check</option></entry>
<entry>integer</entry>
<entry>between 30 and 2147483647</entry>
<entry></entry>
<entry>Interval between two checks for lag (in seconds)</entry>
</row>
<row>
<entry><option>irc_lag_min_show</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Minimum lag to show (in seconds)</entry>
</row>
<row>
<entry><option>irc_lag_disconnect</option></entry>
<entry>integer</entry>
<entry>between 0 and 2147483647</entry>
<entry></entry>
<entry>Disconnect after important lag (in minutes, 0 = never disconnect)</entry>
</row>
<row>
<entry><option>irc_fifo_pipe</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Create a FIFO pipe for remote control</entry>
</row>
<row>
<entry><option>irc_highlight</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Comma separated list of words to highlight (case insensitive comparison, words may begin or end with "*" for partial match)</entry>
</row>
<row>
<entry><option>irc_colors_receive</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>When off, colors codes are ignored in incoming messages</entry>
</row>
<row>
<entry><option>irc_colors_send</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Allow user to send colors with special codes (%B=bold, %Cxx,yy=color, %U=underline, %R=reverse)</entry>
</row>
<row>
<entry><option>dcc_auto_accept_files</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically accept incoming dcc files</entry>
</row>
<row>
<entry><option>dcc_auto_accept_chats</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically accept dcc chats (use carefully!)</entry>
</row>
<row>
<entry><option>dcc_timeout</option></entry>
<entry>integer</entry>
<entry>between 1 and 2147483647</entry>
<entry></entry>
<entry>Timeout for dcc request (in seconds)</entry>
</row>
<row>
<entry><option>dcc_blocksize</option></entry>
<entry>integer</entry>
<entry>between 1024 and 102400</entry>
<entry></entry>
<entry>Block size for dcc packets in bytes (default: 65536)</entry>
</row>
<row>
<entry><option>dcc_port_range</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Restricts outgoing dcc to use only ports in the given range (useful for NAT) (syntax: a single port, ie. 5000 or a port range, ie. 5000-5015, empty value means any port)</entry>
</row>
<row>
<entry><option>dcc_own_ip</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>IP or DNS address used for outgoing dcc (if empty, local interface IP is used)</entry>
</row>
<row>
<entry><option>dcc_download_path</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Path for writing incoming files with dcc (default: user home)</entry>
</row>
<row>
<entry><option>dcc_upload_path</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Path for reading files when sending thru dcc (when no path is specified)</entry>
</row>
<row>
<entry><option>dcc_convert_spaces</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Convert spaces to underscores when sending files</entry>
</row>
<row>
<entry><option>dcc_auto_rename</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Rename incoming files if already exists (add '.1', '.2', ...)</entry>
</row>
<row>
<entry><option>dcc_auto_resume</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically resume dcc transfer if connection with remote host is loosed</entry>
</row>
<row>
<entry><option>proxy_use</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Use a proxy server to connect to irc server</entry>
</row>
<row>
<entry><option>proxy_type</option></entry>
<entry>string</entry>
<entry>'http', 'socks4', 'socks5'</entry>
<entry></entry>
<entry>Proxy type (http (default), socks4, socks5)</entry>
</row>
<row>
<entry><option>proxy_ipv6</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Connect to proxy in ipv6</entry>
</row>
<row>
<entry><option>proxy_address</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Proxy server address (IP or hostname)</entry>
</row>
<row>
<entry><option>proxy_port</option></entry>
<entry>integer</entry>
<entry>between 0 and 65535</entry>
<entry></entry>
<entry>Port for connecting to proxy server</entry>
</row>
<row>
<entry><option>proxy_username</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Username for proxy server</entry>
</row>
<row>
<entry><option>proxy_password</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Password for proxy server</entry>
</row>
<row>
<entry><option>plugins_path</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Path for searching plugins ('%h' will be replaced by WeeChat home, ~/.weechat by default)</entry>
</row>
<row>
<entry><option>plugins_autoload</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Comma separated list of plugins to load automatically at startup, "*" means all plugins found (names may be partial, for example "perl" is ok for "libperl.so")</entry>
</row>
<row>
<entry><option>plugins_extension</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Standard plugins extension in filename, used for autoload (if empty, then all files are loaded when autoload is "*")</entry>
</row>
<row>
<entry><option>server_name</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Name associated to IRC server (for display only)</entry>
</row>
<row>
<entry><option>server_autoconnect</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically connect to server when WeeChat is starting</entry>
</row>
<row>
<entry><option>server_autoreconnect</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically reconnect to server when disconnected</entry>
</row>
<row>
<entry><option>server_autoreconnect_delay</option></entry>
<entry>integer</entry>
<entry>between 0 and 65535</entry>
<entry></entry>
<entry>Delay (in seconds) before trying again to reconnect to server</entry>
</row>
<row>
<entry><option>server_address</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>IP address or hostname of IRC server</entry>
</row>
<row>
<entry><option>server_port</option></entry>
<entry>integer</entry>
<entry>between 0 and 65535</entry>
<entry></entry>
<entry>Port for connecting to server</entry>
</row>
<row>
<entry><option>server_ipv6</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Use IPv6 protocol for server communication</entry>
</row>
<row>
<entry><option>server_ssl</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Use SSL for server communication</entry>
</row>
<row>
<entry><option>server_password</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Password for IRC server</entry>
</row>
<row>
<entry><option>server_nick1</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Nickname to use on IRC server</entry>
</row>
<row>
<entry><option>server_nick2</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Alternate nickname to use on IRC server (if nickname is already used)</entry>
</row>
<row>
<entry><option>server_nick3</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>2nd alternate nickname to use on IRC server (if alternate nickname is already used)</entry>
</row>
<row>
<entry><option>server_username</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>User name to use on IRC server</entry>
</row>
<row>
<entry><option>server_realname</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Real name to use on IRC server</entry>
</row>
<row>
<entry><option>server_command</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>First command to run when connected to server</entry>
</row>
<row>
<entry><option>server_command_delay</option></entry>
<entry>integer</entry>
<entry>between 0 and 5</entry>
<entry></entry>
<entry>Delay (in seconds) after command was executed (example: give some time for authentication)</entry>
</row>
<row>
<entry><option>server_autojoin</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Comma separated list of channels to join when connected to server (example: "#chan1,#chan2,#chan3 key1,key2")</entry>
</row>
<row>
<entry><option>server_autorejoin</option></entry>
<entry>boolean</entry>
<entry>'on' or 'off'</entry>
<entry></entry>
<entry>Automatically rejoin channels when kicked</entry>
</row>
<row>
<entry><option>server_notify_levels</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Comma separated list of notify levels for channels of this server (format: #channel:1,..)</entry>
</row>
<row>
<entry><option>server_charset_decode_iso</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Comma separated list of charsets for server and channels, to decode ISO (format: server:charset,#channel:charset,..)</entry>
</row>
<row>
<entry><option>server_charset_decode_utf</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Comma separated list of charsets for server and channels, to decode UTF (format: server:charset,#channel:charset,..)</entry>
</row>
<row>
<entry><option>server_charset_encode</option></entry>
<entry>string</entry>
<entry>any string</entry>
<entry></entry>
<entry>Comma separated list of charsets for server and channels, to encode messages (format: server:charset,#channel:charset,..)</entry>
</row>
|