summaryrefslogtreecommitdiffstats
path: root/doc/it/weechat_user.it.adoc
blob: d6d507c4dc968f50b15fcdd55c055614444d2f1d (plain) (blame)
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
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
= Guida per l'Utente di WeeChat
:author: Sébastien Helleu
:email: flashcode@flashtux.org
:lang: it
:toc: left
:toclevels: 4
:toc-title: Indice
:sectnums:
:sectnumlevels: 3
:docinfo1:


// TRANSLATION MISSING
Translators:

* Marco Paolone <marcopaolone@gmail.com>, 2009-2012


Questo manuale documenta il client di chat WeeChat, ed è parte
del programma stesso.

È possibile trovare l'ultima versione di questo documento qui:
https://weechat.org/doc


[[introduction]]
== Introduzione

WeeChat (Wee Enhanced Environment for Chat) è un client di chat
libero, veloce e leggero, realizzato per diversi sistemi operativi.

[[features]]
=== Caratteristiche

Le principali caratteristiche:

// TRANSLATION MISSING
* multi-protocollo (mainly IRC)
* connessione a server multipli (con SSL, IPv6, proxy)
* piccolo, veloce e leggero
* personalizzabile ed estensibile con plugin e script
* conforme alle RFC di IRC
  https://tools.ietf.org/html/rfc1459[1459],
  https://tools.ietf.org/html/rfc2810[2810],
  https://tools.ietf.org/html/rfc2811[2811],
  https://tools.ietf.org/html/rfc2812[2812] e
  https://tools.ietf.org/html/rfc2813[2813]
// TRANSLATION MISSING
* IRC proxy and relay for remote interfaces
* multi-piattaforma (GNU/Linux, *BSD, macOS, Windows ed altre)
* 100% GPL, software libero

La home page di WeeChat si trova qui: https://weechat.org/

[[prerequisites]]
=== Requisiti

Per poter installare WeeChat, è necessario:

* un sistema GNU/Linux in esecuzione (con gli strumenti di
  compilazione per i sorgenti), oppure OS compatibile
* privilegi di _root_ (per installare WeeChat in una directory di
  sistema)
// TRANSLATION MISSING
* some libraries (see <<dependencies,dependencies>>).

[[install]]
== Installazione

[[binary_packages]]
=== Pacchetti binari

I pacchetti binari sono disponibili per molte distribuzioni, incluse:

* Arch Linux: `pacman -S weechat`
// TRANSLATION MISSING
* Cygwin (Windows): select WeeChat packages in setup.exe
* Debian/Ubuntu (o qualunque distribuzione compatibile):
  `apt-get install weechat-curses weechat-plugins`
* Fedora Core: `dnf install weechat`
* Gentoo: `emerge weechat`
* Mandriva/RedHat (o qualunque distribuzione compatibile con RPM):
  `rpm -i /path/per/weechat-x.y.z-1.i386.rpm`
* openSUSE: `zypper in weechat`
* Sourcemage: `cast weechat`

Potrebbero risultare utili alcuni pacchetti addizionali, come
weechat-plugins.

Per altre distribuzioni, consultare il manuale per le istruzioni di
installazione.

[[source_package]]
=== Sorgenti

WeeChat può essere compilato con cmake oppure autotools
(tuttavia si raccomanda cmake).

// TRANSLATION MISSING
[NOTE]
On macOS, you can use https://brew.sh/[Homebrew]:
`brew install weechat --with-python --with-perl`
(for help: `brew info weechat`).

[[dependencies]]
==== Dipendenze

La seguente tabella mostra l'elenco di pacchetti richiesti o opzionali per
compilare WeeChat.

[width="100%",cols="6,^3,^3,.^13",options="header"]
|===
| Pacchetto ^(1)^        | Versione      | Richiesto | Caratteristica
// TRANSLATION MISSING
| C compiler
  (gcc, clang, ...)      |               | *sì*      | Build.
// TRANSLATION MISSING
| C++ compiler           |               |           | Build and run tests, plugin JavaScript.
| cmake                  |               | *sì*      | Compilazione (ancora possibile con autotools, ma si raccomanda cmake).
// TRANSLATION MISSING
| pkg-config             |               | *sì*      | Detect installed libraries.
| libncursesw5-dev ^(2)^ |               | *sì*      | Interfaccia ncurses.
| libcurl4-gnutls-dev    |               | *sì*      | Trasferimento URL.
// TRANSLATION MISSING
| zlib1g-dev             |               | *sì*      | Compression of packets in relay plugin (weechat protocol), script plugin.
// TRANSLATION MISSING
| libgcrypt20-dev        |               | *sì*      | Secured data, IRC SASL authentication (DH-BLOWFISH/DH-AES), script plugin.
// TRANSLATION MISSING
| libgnutls28-dev        | ≥ 2.2.0 ^(3)^ |           | Connessione SSL al server IRC, support of SSL in relay plugin, IRC SASL authentication (ECDSA-NIST256P-CHALLENGE).
| gettext                |               |           | Internazionalizzazione (traduzione dei messaggi; la lingua base è l'inglese).
| ca-certificates        |               |           | Certificati per le connessioni SSL.
| libaspell-dev
  ∥ libenchant-dev       |               |           | Plugin spell.
| python-dev             | ≥ 2.6 ^(4)^   |           | Plugin python.
| libperl-dev            |               |           | Plugin perl.
| ruby2.5, ruby2.5-dev   | ≥ 1.8         |           | Plugin ruby.
| liblua5.3-dev          |               |           | Plugin lua.
| tcl-dev                | ≥ 8.5         |           | Plugin tcl.
| guile-2.0-dev          | ≥ 2.0         |           | Plugin guile (scheme).
| libv8-dev              | ≤ 3.24.3      |           | Plugin javascript.
| php-dev, libphp-embed  | ≥ 7.0         |           | Plugin php.
| libxml2-dev            |               |           | Plugin php.
// TRANSLATION MISSING
| libargon2-0-dev        |               |           | Plugin php (if PHP ≥ 7.2).
// TRANSLATION MISSING
| libsodium-dev          |               |           | Plugin php (if PHP ≥ 7.2).
// TRANSLATION MISSING
| asciidoctor            | ≥ 1.5.4       |           | Build man page and documentation.
// TRANSLATION MISSING
| libcpputest-dev        | ≥ 3.4         |           | Build and run tests.
|===

// TRANSLATION MISSING (note 3)
[NOTE]
^(1)^ Il nome viene dalla distribuzione Debian GNU/Linux, nomi e versioni dei pacchetti
potrebbero essere differenti in versioni e distribuzioni differenti. +
// TRANSLATION MISSING
^(2)^ It is recommended to compile with libncurses**w**5-dev (the *w* is
important). WeeChat can compile with libncurses5-dev, but it is *NOT* recommended:
you may experience display bugs with wide chars. +
// TRANSLATION MISSING
^(3)^ GnuTLS ≥ 3.0.21 is required for IRC SASL authentication with mechanism
ECDSA-NIST256P-CHALLENGE. +
^(4)^ La versione raccomandata di Python è la 2.7 (tutti gli script funzionano
correttamente con la versione 2.7, ma non con le versioni < 2.7 o ≥ 3.0).

// TRANSLATION MISSING
If you are using a Debian/Ubuntu based distribution, and if you have some
"deb-src" source entries in your file _/etc/apt/sources.list_, you can install
all dependencies with the command:

----
# apt-get build-dep weechat
----

[[compile_with_cmake]]
==== Compilazione con cmake

* Installazione nelle directory di sistema (richiede privilegi di _root_):

----
$ mkdir build
$ cd build
$ cmake ..
$ make
$ sudo make install
----

// TRANSLATION MISSING
* Installazione in una directory personalizzata (for example your home):

----
$ mkdir build
$ cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=/path/della/directory
$ make
$ make install
----

// TRANSLATION MISSING
Options can be used for cmake, with format: "-DOPTION=VALUE".

// TRANSLATION MISSING
List of commonly used options:

// TRANSLATION MISSING
[width="100%",cols="2m,2,5m,12",options="header"]
|===
| Option | Values | Default value | Description

| CMAKE_BUILD_TYPE | `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel` | |
  The type of build: `Debug` (or `RelWithDebInfo`) is recommended if you are
  running development version of WeeChat.

| CMAKE_INSTALL_PREFIX | directory | /usr/local |
  The directory where WeeChat will be installed.

| WEECHAT_HOME | directory | ~/.weechat |
  The default home directory when running WeeChat.

| CA_FILE | file | /etc/ssl/certs/ca-certificates.crt |
  File containing the certificate authorities.
  This is the default value of option
  <<option_weechat.network.gnutls_ca_file,weechat.network.gnutls_ca_file>>.

| ENABLE_ALIAS | `ON`, `OFF` | ON |
  Compile <<alias_plugin,Alias plugin>>.

| ENABLE_BUFLIST | `ON`, `OFF` | ON |
  Compile <<buflist_plugin,Buflist plugin>>.

| ENABLE_CHARSET | `ON`, `OFF` | ON |
  Compile <<charset_plugin,Charset plugin>>.

| ENABLE_MAN | `ON`, `OFF` | OFF |
  Build man page.

| ENABLE_DOC | `ON`, `OFF` | OFF |
  Build HTML documentation.

| ENABLE_ENCHANT | `ON`, `OFF` | OFF |
  Compile <<spell_plugin,Spell plugin>> with Enchant.

| ENABLE_EXEC | `ON`, `OFF` | ON |
  Compile <<exec_plugin,Exec plugin>>.

| ENABLE_FIFO | `ON`, `OFF` | ON |
  Compile <<fifo_plugin,Fifo plugin>>.

| ENABLE_FSET | `ON`, `OFF` | ON |
  Compile <<fset_plugin,Fset plugin>>.

| ENABLE_GNUTLS | `ON`, `OFF` | ON |
  Enable GnuTLS (for SSL).

| ENABLE_GUILE | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,Guile plugin>> (Scheme).

| ENABLE_IRC | `ON`, `OFF` | ON |
  Compile <<irc_plugin,IRC plugin>>.

| ENABLE_JAVASCRIPT | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,JavaScript plugin>>.

| ENABLE_LARGEFILE | `ON`, `OFF` | ON |
  Support of large files.

| ENABLE_LOGGER | `ON`, `OFF` | ON |
  Compile <<logger_plugin,Logger plugin>>.

| ENABLE_LUA | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,Lua plugin>>.

| ENABLE_NCURSES | `ON`, `OFF` | ON |
  Compile Ncurses interface.

| ENABLE_NLS | `ON`, `OFF` | ON |
  Enable NLS (translations).

| ENABLE_PERL | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,Perl plugin>>.

| ENABLE_PHP | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,PHP plugin>>.

| ENABLE_PYTHON | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,Python plugin>>.

| ENABLE_PYTHON3 | `ON`, `OFF` | OFF |
  Compile <<scripts_plugins,Python plugin>> using Python 3. +
  This option is not recommended because many scripts are not yet compatible
  with Python 3. +
  You can follow the progress of Python 3 transition on this page:
  https://weechat.org/scripts/python3/

| ENABLE_RELAY | `ON`, `OFF` | ON |
  Compile <<relay_plugin,Relay plugin>>.

| ENABLE_RUBY | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,Ruby plugin>>.

| ENABLE_SCRIPT | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,Script plugin>>.

| ENABLE_SCRIPTS | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,script plugins>> (Python, Perl, Ruby, Lua, Tcl,
  Guile, JavaScript, PHP).

| ENABLE_SPELL | `ON`, `OFF` | ON |
  Compile <<spell_plugin,Spell plugin>>.

| ENABLE_TCL | `ON`, `OFF` | ON |
  Compile <<scripts_plugins,Tcl plugin>>.

| ENABLE_TRIGGER | `ON`, `OFF` | ON |
  Compile <<trigger_plugin,Trigger plugin>>.

| ENABLE_XFER | `ON`, `OFF` | ON |
  Compile <<xfer_plugin,Xfer plugin>>.

| ENABLE_TESTS | `ON`, `OFF` | OFF |
  Compile tests.

| ENABLE_CODE_COVERAGE | `ON`, `OFF` | OFF |
  Compile with code coverage options. +
  This option should be used only for tests, to measure test coverage.
|===

The other options can be displayed with this command:

----
$ cmake -LA
----

Or with Curses interface:

----
$ ccmake ..
----

[[compile_with_autotools]]
==== Compilazione con autotools

// TRANSLATION MISSING
[WARNING]
Only cmake is officially supported to build WeeChat. You should use autotools
only if you are not able to use cmake. +
Build with autotools requires more dependencies and is slower than with cmake.

* Installazione nelle directory di sistema (richiede privilegi di _root_):

----
$ ./autogen.sh
$ mkdir build
$ cd build
$ ../configure
$ make
$ sudo make install
----

// TRANSLATION MISSING
* Installazione in una directory personalizzata (for example your home):

----
$ ./autogen.sh
$ mkdir build
$ cd build
$ ../configure --prefix=/path/to/directory
$ make
$ make install
----

// TRANSLATION MISSING
Options can be used for _configure_ script, they can be displayed with this
command:

----
$ ./configure --help
----

// TRANSLATION MISSING
[[run_tests]]
==== Run tests

Following packages are *required* to compile tests:

* libcpputest-dev
* C++ compiler

Tests must be enabled when compiling WeeChat (with cmake):

----
$ cmake .. -DENABLE_TESTS=ON
----

They can be launched after compilation from the build directory (with cmake):

----
$ ctest -V
----

[[git_sources]]
=== Sorgenti git

Attenzione: i sorgenti git sono per gli utenti avanzati: potrebbero non
compilare o essere instabili. Siete avvisati!

Per ottenere i sorgenti git, dare il comando:

----
$ git clone https://github.com/weechat/weechat.git
----

Poi seguire le istruzioni per i sorgenti (consultare
<<source_package,sorgenti>>).

[[report_crashes]]
=== Segnalare gli errori

Nel caso in cui si verifichino errori, o si desideri segnalare qualsiasi errore
futuro di WeeChat, è necessario:

* compilarlo con informazioni di debug (o installare il pacchetto binario con
  le informazioni di debug)
* abilitare i file _core_ sul proprio sistema
* installare gdb

[[debug_info]]
==== Informazioni di debug

Se si compila con cmake:

----
$ cmake .. -DCMAKE_BUILD_TYPE=Debug
----

Se compilato con gli autotools, il debug è attivato automaticamente (`--with-debug=1`).

Se è stato installato il pacchetto binario, installare il pacchetto _weechat-gdb_.

[[core_files]]
==== File core

// TRANSLATION MISSING
To enable _core_ files, you can use option
<<option_weechat.startup.sys_rlimit,weechat.startup.sys_rlimit>>:

----
/set weechat.startup.sys_rlimit "core:-1"
----

// TRANSLATION MISSING
For WeeChat ≤ 0.3.8 or if you want to enable core files even before WeeChat
starts, you can use `ulimit` command.

Ad esempio su Linux con la shell _bash_, aggiungere questa riga al proprio
`~/.bashrc`:

----
ulimit -c unlimited
----

Oppure impostare una dimensione massima:

----
ulimit -c 200000
----

[[gdb_backtrace]]
==== Ottenere un backtrace con gdb

// TRANSLATION MISSING
When WeeChat crashes, your system will create a file _core_ or _core.12345_
(_12345_ is process id) if the <<core_files,option is enabled>>.
Questo file viene creato nella directory in cui è in esecuzione WeeChat (e
*non* la directory dove WeeChat è installato!).

Ad esempio, se _weechat_ è installato in _/usr/bin/_ ed il file _core_
si trova in _/home/xxx/_, allora eseguire gdb con questo comando:

----
gdb /usr/bin/weechat /home/xxx/core
----

All'interno di gdb, usare il comando `bt full` per visualizzare
il backtrace. Verrà mostrato qualcosa di simile a questo:

----
(gdb) set logging file /tmp/crash.txt
(gdb) set logging on
Copying output to /tmp/crash.txt.
(gdb) bt full
#0  0x00007f9dfb04a465 in raise () from /lib/libc.so.6
#1  0x00007f9dfb04b8e6 in abort () from /lib/libc.so.6
#2  0x0000000000437f66 in weechat_shutdown (return_code=1, crash=1)
    at /some_path/src/core/weechat.c:351
#3  <signal handler called>
#4  0x000000000044cb24 in hook_process_timer_cb (arg_hook_process=0x254eb90,
    remaining_calls=<value optimized out>) at /some_path/src/core/wee-hook.c:1364
        hook_process = 0x254eb90
        status = <value optimized out>
#5  0x000000000044cc7d in hook_timer_exec ()
    at /some_path/src/core/wee-hook.c:1025
        tv_time = {tv_sec = 1272693881, tv_usec = 212665}
        ptr_hook = 0x2811f40
        next_hook = 0x0
#6  0x000000000041b5b0 in gui_main_loop ()
    at /some_path/src/gui/curses/gui-curses-main.c:319
        hook_fd_keyboard = 0x173b600
        tv_timeout = {tv_sec = 0, tv_usec = 0}
        read_fds = {fds_bits = {0 <repeats 16 times>}}
        write_fds = {fds_bits = {0 <repeats 16 times>}}
        except_fds = {fds_bits = {0 <repeats 16 times>}}
        max_fd = <value optimized out>
----

Bisogna riportare l'errore agli sviluppatori, e specificare quale azione ha causato
l'errore.

Grazie per il vostro aiuto!

[[debug_running_weechat]]
==== Debug di WeeChat durante l'esecuzione

Per eseguire il debug di un'istanza di WeeChat in esecuzione (ad esempio se
WeeChat sembra sia bloccato), è possibile usare gdb con l'id del processo
(sostituire _12345_ con il PID del processo weechat):

----
gdb /usr/bin/weechat 12345
----

Poi, come per un crash, usare il comando `bt full`:

----
(gdb) bt full
----

[[usage]]
== Utilizzo

[[running_weechat]]
=== Esecuzione di WeeChat

Per avviare WeeChat, digitare questo comando:

----
$ weechat
----

Argomenti a riga di comando:

include::cmdline_options.it.adoc[]

// TRANSLATION MISSING
When you run WeeChat for the first time, the default configuration files are
created in _~/.weechat_ with default options and values
(see <<files_and_directories,Files and directories>>).

// TRANSLATION MISSING
[[environment_variables]]
=== Environment variables

Some environment variables are used by WeeChat if they are defined:

[width="100%",cols="1m,6",options="header"]
|===
| Name                 | Description
| WEECHAT_HOME         | The WeeChat home (with configuration files, logs, scripts, ...).
| WEECHAT_PASSPHRASE   | The passphrase used to decrypt secured data.
| WEECHAT_EXTRA_LIBDIR | An extra directory to load plugins (from the "plugins" directory in this path).
|===

// TRANSLATION MISSING
[[files_and_directories]]
=== Files and directories

WeeChat writes configuration files and other data in directory `~/.weechat`
by default.

The directories are:

[width="100%",cols="1m,3",options="header"]
|===
| Path/file         | Description
| ~/.weechat/       | WeeChat home directory (can be changed, see <<running_weechat,Running WeeChat>>).
|    logs/          | Log files (one file per buffer).
|    python/        | Python scripts.
|       autoload/   | Python scripts auto-loaded on startup ^(1)^.
|    perl/          | Perl scripts.
|       autoload/   | Perl scripts auto-loaded on startup ^(1)^.
|    ruby/          | Ruby scripts.
|       autoload/   | Ruby scripts auto-loaded on startup ^(1)^.
|    lua/           | Lua scripts.
|       autoload/   | Lua scripts auto-loaded on startup ^(1)^.
|    tcl/           | Tcl scripts.
|       autoload/   | Tcl scripts auto-loaded on startup ^(1)^.
|    guile/         | Guile scripts.
|       autoload/   | Guile scripts auto-loaded on startup ^(1)^.
|    javascript/    | JavaScript scripts.
|       autoload/   | JavaScript scripts auto-loaded on startup ^(1)^.
|    php/           | PHP scripts.
|       autoload/   | PHP scripts auto-loaded on startup ^(1)^.
|===

[NOTE]
^(1)^ This directory often contains only symbolic links to scripts in parent directory.

The files in the WeeChat home directory are:

[width="100%",cols="1m,3,6",options="header"]
|===
| File            | Description                                | Sensitive data
| weechat.conf    | Main WeeChat configuration file            | Possible (example: list of channels in a saved buffers layout).
| sec.conf        | Configuration file with secured data       | *Yes, highly sensitive*: this file must never be shared with anyone.
| plugins.conf    | Plugins configuration file                 | Possible, depends on plugins/scripts.
| alias.conf      | Configuration file for _alias_ plugin      | Possible, depends on aliases.
| buflist.conf    | Configuration file for _buflist_ plugin    | No.
| charset.conf    | Configuration file for _charset_ plugin    | No.
| exec.conf       | Configuration file for _exec_ plugin       | No.
| fifo.conf       | Configuration file for _fifo_ plugin       | No.
| fset.conf       | Configuration file for _fset_ plugin       | No.
| guile.conf      | Configuration file for _guile_ plugin      | No.
| irc.conf        | Configuration file for _irc_ plugin        | *Yes*: it can contain passwords for servers, nickserv and channels (if not stored in `sec.conf`).
| javascript.conf | Configuration file for _javascript_ plugin | No.
| logger.conf     | Configuration file for _logger_ plugin     | No.
| lua.conf        | Configuration file for _lua_ plugin        | No.
| perl.conf       | Configuration file for _perl_ plugin       | No.
| php.conf        | Configuration file for _php_ plugin        | No.
| python.conf     | Configuration file for _python_ plugin     | No.
| relay.conf      | Configuration file for _relay_ plugin      | No.
| ruby.conf       | Configuration file for _ruby_ plugin       | No.
| script.conf     | Configuration file for _script_ plugin     | No.
| spell.conf      | Configuration file for _spell_ plugin      | No.
| tcl.conf        | Configuration file for _tcl_ plugin        | No.
| trigger.conf    | Configuration file for _trigger_ plugin    | Possible, depends on triggers.
| xfer.conf       | Configuration file for _xfer_ plugin       | No.
| weechat.log     | WeeChat log file                           | No.
|===

[IMPORTANT]
It is *not recommended* to edit configuration files by hand because WeeChat
may write them at any time (for example on <<command_weechat_quit,/quit>>)
and after any change you must run the command <<command_weechat_reload,/reload>>
(with the risk of losing other changes that were not yet saved with
<<command_weechat_save,/save>>). +
You can use the command <<command_weechat_set,/set>>, which checks the value
and applies immediately the changes.

[[screen_layout]]
=== Layout dello schermo

Esempio di terminale con WeeChat:

// TRANSLATION MISSING
....
 ▼ bar "buflist"   ▼ bar "title"
┌──────────────────────────────────────────────────────────────────────────────────────┐
│1.freenode│Welcome to #test, this is a test channel                                   │
│  weechat │12:52:27   --> | Flashy (flashcode@weechat.org) has joined #test   │@Flashy│
│2.  #test │12:52:27    -- | Nicks #test: [@Flashy @joe +weebot peter]         │@joe   │
│3.  #abc  │12:52:27    -- | Channel #test: 4 nicks (2 ops, 1 voice, 1 normal) │+weebot│
│4.  #def  │12:52:27    -- | Channel created on Tue Jan 27 06:30:17 2009       │peter  │
│5.  #ghi  │12:54:15 peter | hey!                                              │       │
│          │12:55:01  @joe | hello                                             │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │[12:55] [5] [irc/freenode] 2:#test(+n){4}* [Act: 3:#abc(2,5), 5]           │
│          │[@Flashy(i)] hi peter!█                                                    │
└──────────────────────────────────────────────────────────────────────────────────────┘
            ▲ bars "status" and "input"                               bar "nicklist" ▲
....

Lo schermo è composto dalle seguenti aree:

* area di chat (centro dello schermo) con le righe di chat, e per ogni riga:
** ora
** prefisso (prima di "|")
** messaggio (dopo di "|")
* barre che circondano l'area di chat, quelle predefinite sono:
// TRANSLATION MISSING
** barra _buflist_, on the left
** barra _titolo_, in alto rispetto all'area di chat
** barra _stato_, in basso rispetto all'area di chat
** barra _input_, in basso rispetto alla barra di stato
** barra _nicklist_, sulla destra

La barra _buflist_ ha i seguenti elementi predefiniti:

[width="100%",cols="^3,^4,10",options="header"]
|===
| Elemento | Esempio     | Descrizione
// TRANSLATION MISSING
| buflist  | `1.weechat` | List of buffers.
|===

La barra _title_ ha i seguenti elementi predefiniti:

[width="100%",cols="^3,^4,10",options="header"]
|===
| Elemento     | Esempio            | Descrizione
// TRANSLATION MISSING
| buffer_title | `Welcome to #test` | Buffer title.
|===

La barra _status_ ha i seguenti elementi predefiniti:

[width="100%",cols="^3,^4,10",options="header"]
|===
| Elemento              | Esempio                 | Descrizione
| time                  | `[12:55]`               | Ora.
// TRANSLATION MISSING
| buffer_last_number    | `[5]`                   | Number of last buffer in list.
| buffer_plugin         | `[irc/freenode]`        | Plugin del buffer attivo (il plugin irc può aggiungere il nome del server irc usato dal buffer).
| buffer_number         | `2`                     | Numero del buffer corrente.
| buffer_name           | `#test`                 | Nome del buffer attivo.
| buffer_modes          | `+n`                    | Modalità canale IRC.
| buffer_nicklist_count | `{4}`                   | Numero di nick nella lista nick.
// TRANSLATION MISSING
| buffer_zoom           | !                       | `!` means the merged buffer is zoomed (only this one is displayed), empty value means all merged buffers are displayed.
| buffer_filter         | `+*+`                   | Indicatore filtraggio: `+*+` significa che alcune righe sono filtrate (nascoste), valori vuoti indicano che tutte le righe sono visualizzate.
| scroll                | `-ANCORA(50)-`          | Indicatore di scorrimento, con il numero di righe sotto l'ultima riga visualizzata.
| lag                   | `[Ritardo: 2.5]`        | Indicatore ritardo, in secondi (nascosto se il ritardo è basso).
| hotlist               | `[Act: 3:#abc(2,5), 5]` | Elenco dei buffer con attività (messaggi non letti) (nell'esempio, 2 notifiche e 5 messaggi non letti su #abc, un messaggio non letto sul buffer #5).
| completion            | `abc(2) def(5)`         | Elenco di parole per il completamento, con il numero di completamenti possibili per ogni parola.
|===

La barra _input_ ha i seguenti elementi predefiniti:

[width="100%",cols="^3,^4,10",options="header"]
|===
| Elemento     | Esempio                                         | Descrizione
// TRANSLATION MISSING
| input_prompt | `[@Flashy(i)]`                                  | Prompt per l'input, for irc: nick and modes (mode "+i" means invisible on freenode).
| away         | `(assente)`                                     | Indicatore di assenza.
// TRANSLATION MISSING
| input_search | `[Search (~ str,msg)]`                          | Search indicator ("`~`": case insensitive, "`==`": case sensitive, "`str`": search string, "`regex`": search regular expression, "`msg`": search in messages, "`pre`": search in prefixes, "`pre\|msg`": search in prefixes and messages).
| input_paste  | `[Incollare 7 righe ? [ctrl-Y] Sì [ctrl-N] No]` | Chiede all'utente se incollare le righe.
| input_text   | `ciao peter!`                                   | Testo in input.
|===

La barra _nicklist_ ha i seguenti elementi predefiniti:

[width="100%",cols="^3,^4,10",options="header"]
|===
| Elemento        | Esempio   | Descrizione
// TRANSLATION MISSING
| buffer_nicklist | `@Flashy` | List of nicks on current buffer.
|===

// TRANSLATION MISSING
Other items available (not used in bars by default):

// TRANSLATION MISSING
[width="100%",cols="^3,^4,10",options="header"]
|===
| Item              | Example             | Description
| spell_dict        | `fr,en`             | Spelling dictionaries used on current buffer.
| spell_suggest     | `print,prone,prune` | Spelling suggestions for word under cursor (if misspelled).
| buffer_count      | `10`                | Total number of buffers opened.
| buffer_short_name | `#test`             | Current buffer short name.
| irc_channel       | `#test`             | Current IRC channel name.
| irc_nick_modes    | `@`                 | IRC modes for self nick.
| mouse_status      | `M`                 | Mouse status (empty if mouse is disabled).
| window_number     | `2`                 | Current window number.
|===

[[command_line]]
=== Riga di comando

La riga di comando di WeeChat (nella parte inferiore della finestra) consente di
inserire i comandi o di inviare del testo sul buffer.

[[command_line_syntax]]
==== Sintassi

I comandi iniziano con il carattere "/", seguito dal nome del comando. Ad esempio,
per consultare un elenco di opzioni:

----
/set
----

Il testo inviato ad un buffer è qualsiasi testo che non comincia con
il carattere "/". Per esempio, per inviare il testo _ciao_ sul buffer
attivo:

----
ciao
----

Ad ogni modo, è possibile iniziare con il carattere "/", aggiungendone
poi un altro. Ad esempio, per inviare il testo `/set` sul buffer attivo:

----
//set
----

[[command_line_colors]]
==== Codici colore

Per alcuni plugin come IRC, è possibile usare codici colori ed attributi,
come segue (digitare kbd:[Ctrl+c] poi la lettera che segue, con il valore
opzionale):

[width="60%",cols="3,5",options="header"]
|===
// TRANSLATIION MISSING
| Key                    | Description
| kbd:[Ctrl+c], kbd:[b]  | testo in grassetto.
| kbd:[Ctrl+c], kbd:[c],
  kbd:[xx]               | colore del testo `xx` (consultare la lista di colori che segue).
| kbd:[Ctrl+c], kbd:[c],
  kbd:[xx], kbd:[,],
  kbd:[yy]               | colore del testo `xx` e di sfondo `yy` (consultare la lista di colori che segue).
// TRANSLATION MISSING
| kbd:[Ctrl+c], kbd:[i]  | italic text.
| kbd:[Ctrl+c], kbd:[o]  | disabilita colori ed attributi.
| kbd:[Ctrl+c], kbd:[v]  | video inverso (inverte il colore del testo con quello di sfondo).
| kbd:[Ctrl+c], kbd:[_]  | testo sottolineato.
|===

[NOTE]
Lo stesso codice (senza numero per kbd:[Ctrl+c], kbd:[c]) può essere usato per
terminare l'attributo.

I codici colore per kbd:[Ctrl+c], kbd:[c] sono:

include::autogen/user/irc_colors.adoc[]

// TRANSLATION MISSING
[NOTE]
To show all available colors in your terminal, you can do `/color` then
kbd:[Alt+c] in WeeChat or run this command in terminal: `weechat --colors`.

Esempio: visualizza "ciao a tutti!" con "ciao" scritto in blu chiaro grassetto
e "a tutti" in rosso chiaro sottolineato:

----
^Cc12^Cbciao ^Cb^Cc04^C_a tutti^C_^Cc !
----

[NOTE]
Nel plugin irc, si possono riorganizzare i colori usando l'opzione
<<option_irc.color.mirc_remap,irc.color.mirc_remap>>.

[[colors]]
=== Colori

WeeChat può usare fino a 256 coppie di colore per visualizzare il testo nelle barre e
nell'area di chat(il terminale deve supportare 256 colori per essere utilizzati in WeeChat).

In base al valore della variabile di ambiente _TERM_, potrebbero verificarsi i
seguenti limiti per i colori in WeeChat:

[width="50%",cols="8,>2,>2",options="header"]
|===
| $TERM                                  | Colori | Coppie
| "rxvt-unicode", "xterm", ...           |     88 |    256
| "rxvt-256color", "xterm-256color", ... |    256 |    256
| "screen"                               |      8 |     64
| "screen-256color"                      |    256 |    256
| "tmux"                                 |      8 |     64
| "tmux-256color"                        |    256 |    256
|===

È possibile eseguire `weechat --colors` o utilizzare il comando `/color` in
WeeChat per visualizzare i limiti del proprio ambiente.

Alcuni valori raccomandati per _TERM_ se si desiderano 256 colori:

* con screen: _screen-256color_
// TRANSLATION MISSING
* under tmux: _screen-256color_ or _tmux-256color_
// TRANSLATION MISSING
* outside screen/tmux: _xterm-256color_, _rxvt-256color_, _putty-256color_, ...

[NOTE]
Potrebbe essere necessario installare il pacchetto "ncurses-term" per usare
questi valori nella variabile _TERM_.

Se si sta utilizzando screen, è possibile aggiungere questa riga al
proprio _~/.screenrc_:

----
term screen-256color
----

// TRANSLATION MISSING
If your _TERM_ variable has wrong value and that WeeChat is already running,
you can change it with these two commands:

----
/set env TERM screen-256color
/upgrade
----

[[colors_basic]]
==== Colori base

I colori base in WeeChat sono:

[width="50%",cols="1m,4",options="header"]
|===
| Nome         | Colore
| default      | Colore predefinito del terminale (trasparente per lo sfondo)
| black        | Nero
| darkgray     | Grigio scuro
| red          | Rosso scuro
| lightred     | Rosso chiaro
| green        | Verde scuro
| lightgreen   | Verde chiaro
| brown        | Marrone
| yellow       | Giallo
| blue         | Blu scuro
| lightblue    | Blu chiaro
| magenta      | Rosa scuro
| lightmagenta | Rosa chiaro
| cyan         | Azzurro scuro
| lightcyan    | Azzurro chiaro
| gray         | Grigio
| white        | Bianco
|===

[[colors_extended]]
==== Colori estesi

WeeChat alloca dinamicamente le coppie colore quando vengono usati i colori
sullo schermo (per mostrare buffer e barre).

In aggiunta ai colori di base, si può usare un numero per il colore compreso
tra 1 e il limite del proprio terminale.

Il comando `/color` mostra i colori attivi ed i limiti. Com kbd:[Alt+c] si può
passare temporaneamente ai colori del terminale per sceglierne uno.

Se ad esempio si desidera visualizzare l'ora in arancione nel buffer:

----
/set weechat.color.chat_time 214
----

O se si desidera uno sfondo verde scuro per la barra di stato:

----
/set weechat.bar.status.color_bg 22
----

[[colors_aliases]]
==== Alias

Si possono aggiungere degli alias ai colori con il comando `/color alias` e
usarli in ogni opzione relativa al colore.

Ad esempio:

----
/color alias 214 orange
/set weechat.color.chat_delimiters orange
----

[[colors_attributes]]
==== Attributi

Esistono alcuni attributi per i colori. Uno o più attributi vanno aggiunti prima
del nome o del numero del colore:

* `+*+` : testo in grassetto
* `+!+` : video inverso
* `+/+` : testo in corsivo
* `+_+` : testo sottolineato
* `+|+` : mantiene attributi: non ripristina grassetto/inverso/sottolineato
  al cambio di colore

Ad esempio se si vuole il proprio nick bianco e sottolineato:

----
/set weechat.color.chat_nick_self _white
----

O se si desidera l'ora nella barra di stato arancione sottolineata
e in grassetto:

----
/set weechat.color.status_time *_214
----

Per usare un attributo con il colore predefinito del terminale (-1), bisogna
usare un numero maggiore dell'ultimo colore del terminale, ad esempio il
numero massimo in WeeChat: 99999.

Esempio di grassetto con il colore di primo piano del terminale:

----
/set weechat.color.status_time *99999
----

[[buffers_and_windows]]
=== Buffer e finestre

Un _buffer_ è composto da un numero, un nome, delle righe visualizzate (e
altri dati).

Esempi di buffer:

* buffer core (creato by WeeChat all'avvio, non può essere chiuso)
* server irc (mostra i messaggi dal server)
* canale irc
* query irc

Una _finestra_ (o window) è un'area dello schermo in cui viene visualizzato
un buffer. È possibile dividere lo schermo in più finestre.

Ogni finestra visualizza un buffer. Un buffer può essere nascosto (non visualizzato
da una finestra) o visualizzato da una o più finestre.

Esempio di split orizzontale (`/window splith`):

// TRANSLATION MISSING
....
                               ▼ window #2 (buffer #4)
┌──────────────────────────────────────────────────────────────────────────────────────┐
│1.freenode│Welcome to #def                                                            │
│  weechat │12:55:12     Max | hi                                              │@Flashy│
│2.  #test │12:55:20 @Flashy | hi Max!                                         │Max    │
│3.  #abc  │                                                                   │       │
│4.  #def  │                                                                   │       │
│5.  #ghi  │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │[12:55] [5] [irc/freenode] 4:#def(+n){2}                                   │
│          │[@Flashy]                                                                  │
│          │───────────────────────────────────────────────────────────────────────────│
│          │Welcome to #abc                                                            │
│          │12:54:15 peter | hey!                                              │@Flashy│
│          │12:55:01  @joe | hello                                             │@joe   │
│          │                                                                   │+weebot│
│          │                                                                   │peter  │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │[12:55] [5] [irc/freenode] 3:#abc(+n){4}                                   │
│          │[@Flashy] hi peter!█                                                       │
└──────────────────────────────────────────────────────────────────────────────────────┘
                               ▲ window #1 (buffer #3)
....

Esempio di split verticale (`/window splitv`):

// TRANSLATION MISSING
....
┌──────────────────────────────────────────────────────────────────────────────────────┐
│1.freenode│Welcome to #abc                      │Welcome to #def                      │
│  weechat │12:54:15 peter | hey!        │@Flashy│12:55:12     Max | hi        │@Flashy│
│2.  #test │12:55:01  @joe | hello       │@joe   │12:55:20 @Flashy | hi Max!   │Max    │
│3.  #abc  │                             │+weebot│                             │       │
│4.  #def  │                             │peter  │                             │       │
│5.  #ghi  │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │[12:55] [5] [irc/freenode] 3:#abc(+n)│[12:55] [5] [irc/freenode] 4:#def(+n)│
│          │[@Flashy] hi peter!█                 │[@Flashy]                            │
└──────────────────────────────────────────────────────────────────────────────────────┘
                 ▲ window #1 (buffer #3)               ▲ window #2 (buffer #4)
....

Esempio di split orizzontale + verticale:

// TRANSLATION MISSING
....
                                                       ▼ window #3 (buffer #5)
┌──────────────────────────────────────────────────────────────────────────────────────┐
│1.freenode│Welcome to #abc                      │Welcome to #ghi                      │
│  weechat │12:54:15 peter | hey!        │@Flashy│12:55:42 @Flashy | hi        │@Flashy│
│2.  #test │12:55:01  @joe | hello       │@joe   │12:55:56    alex | hi Flashy │alex   │
│3.  #abc  │                             │+weebot│                             │       │
│4.  #def  │                             │peter  │                             │       │
│5.  #ghi  │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │[12:55] [5] [irc/freenode] 5:#ghi(+n)│
│          │                             │       │[@Flashy]                            │
│          │                             │       │─────────────────────────────────────│
│          │                             │       │Welcome to #def                      │
│          │                             │       │12:55:12     Max | hi        │@Flashy│
│          │                             │       │12:55:20 @Flashy | hi Max!   │Max    │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │                             │       │                             │       │
│          │[12:55] [5] [irc/freenode] 3:#abc(+n)│[12:55] [5] [irc/freenode] 4:#def(+n)│
│          │[@Flashy] hi peter!█                 │[@Flashy]                            │
└──────────────────────────────────────────────────────────────────────────────────────┘
                 ▲ window #1 (buffer #3)               ▲ window #2 (buffer #4)
....

// TRANSLATION MISSING
[[buffers_lines]]
=== Buffers lines

[[lines_format]]
==== Format of lines

Lines displayed in formatted buffers have following fields:

[width="100%",cols="2,2,10",options="header"]
|===
| Field               | Displayed          | Description
| date/time (message) | Yes                | Date/time of message (may be past).
| date/time (print)   | No                 | Date/time when WeeChat prints the message.
| prefix              | Yes                | Prefix of message, commonly a nick.
| message             | Yes                | The message itself.
| displayed           | No                 | Boolean: true if line is displayed, false if line is filtered with command <<command_weechat_filter,/filter>>.
| highlight           | No                 | Boolean: true if line has a highlight, false otherwise.
| tags                | With `/debug tags` | Tags associated with the line (see <<lines_tags,lines tags>>).
|===

The display of lines can be customized with many look options
(_pass:[weechat.look.*]_) and color options (_pass:[weechat.color.chat_*]_).

[[lines_tags]]
==== Lines tags

WeeChat uses tags in lines for different purposes:

* highlight
* notify level
* logging
* use of command <<command_weechat_filter,/filter>>

Tags can be displayed with the command `/debug tags` (same command to hide them).

Tag usati di frequente (elenco non esaustivo):

[width="70%",cols="1m,4",options="header"]
|===
| Tag              | Descrizione
| no_filter        | La riga non può essere filtrata.
| no_highlight     | Evidenziazione non possibile sulla riga.
| no_log           | La riga non viene scritta nel file di log.
| log0 ... log9    | Livello di log per la riga (consultare `/help logger`).
| notify_none      | Il buffer con la riga non viene aggiunto alla hotlist.
| notify_message   | Il buffer con la riga viene aggiunto alla hotlist con il livello "message".
| notify_private   | Il buffer con la riga viene aggiunto alla hotlist con il livello "private".
| notify_highlight | Il buffer con la riga viene aggiunto alla hotlist con il livello "higlight".
// TRANSLATION MISSING
| self_msg         | Self message.
| nick_xxx         | Il messaggio viene dal nick "xxx".
| prefix_nick_ccc  | Il prefisso è un nick con il colore "ccc".
// TRANSLATION MISSING
| host_xxx         | Username and host in message.
| irc_xxx          | Messaggio IRC "xxx" (può essere un comando o un numero di 3 cifre).
| irc_numeric      | Messaggio IRC numerico.
| irc_error        | Errore dal server IRC.
| irc_action       | Azione da un nic (comando `/me`).
| irc_ctcp         | Messaggio CTCP.
| irc_ctcp_reply   | Risposta ad un messaggio CTCP.
| irc_smart_filter | Messaggio IRC filtrabile tramite lo "smart filter" (filtro intelligente).
| away_info        | Messagio con informazioni sull'assenza.
|===

// TRANSLATION MISSING
[[bars]]
=== Bars

A _bar_ is an area beside the chat that can contain any type of text.

The bar options can be set with options `weechat.bar.name.option` where `name`
is the name of the bar and `option` the option for this bar.

List of bar options:

[width="100%",cols="2m,2,10",options="header"]
|===
| Option | Values | Description

| type | `root`, `window` |
// TRANSLATION MISSING
  A bar with type `root` is displayed exactly one time on screen, outside all
  windows. The default bar _buflist_ has type `root`. +
  A bar with type `window` is displayed in each window, for example if you
  split one time the screen (with `/window splith` or `/window splitv`), you
  will have one bar in each window. The default bars _title_, _status_,
  _input_ and _nicklist_ have type `window`.

| position | `top`, `bottom`, `left`, `right` |
  Position of the bar: above/below chat, on the left/right.

| priority | integer ≥ 0 |
  Priority for display of bar: this is used for ordering the bars on screen when
  many bars have same type and position. +
  The bars are displayed from the edge of the screen to the center. A higher
  priority will display bar at the beginning, so closer to the edge. +
  Example: _input_ bar has priority 1000, so it is displayed before the _status_
  bar, which has priority 500.

| size | integer ≥ 0 |
  The size of the bar: number of columns for position left/right, number
  of lines for position top/bottom. A size of `0` means automatic, so the size
  will be computed according to content displayed in bar.

| size_max | integer ≥ 0 |
  The maximum size for a bar, `0` = no limit (this option is used only if
  `size` = `0`).

| color_bg | color |
  The default background color for the bar.

| color_fg | color |
  The default text color for the bar.

| color_delim | color |
  The color for delimiters in bar.

| hidden | `on`, `off` |
  When option is `on`, the bar is hidden. +
  Note: instead of changing this option, the command `/bar` is preferred, for
  example: `/bar toggle nicklist` (see command <<command_weechat_bar,/bar>>).

| separator | `on`, `off` |
  When option is `on`, a separator (line) is displayed between this bar and
  other bars (or chat).

| items | string |
  A list of _items_ (see <<bar_items,items>> for more info).

| filling_left_right | `horizontal`, `vertical`, `columns_horizontal`, `columns_vertical` |
  Type of filling for a bar which has position `left` or `right` (see
  <<bar_filling,filling>> for more info).

| filling_top_bottom | `horizontal`, `vertical`, `columns_horizontal`, `columns_vertical` |
  Type of filling for a bar which has position `top` or `bottom` (see
  <<bar_filling,filling>> for more info).

| conditions | string |
  The conditions to display the bar (see <<bar_conditions,conditions>> for more
  info).
|===

[[bar_items]]
==== Items

The option _items_ is a string with a list of bar items, separated by a comma
(space between items on screen) or "+" (glued items).

The list of bar items is displayed with command `/bar listitems`.

// TRANSLATION MISSING
Before or after item name, you can use chars (that are not alphanumeric, "-" or
"_"). They will be displayed before/after item with the delimiters color
defined in bar (option _color_delim_).

Example of bar with items "[time],buffer_number+:+buffer_plugin+.+buffer_name":

....
┌───────────────────────────────────────────────────────────────────────────┐
│[12:55] 3:irc/freenode.#weechat                                            │
└───────────────────────────────────────────────────────────────────────────┘
....

// TRANSLATION MISSING
A special syntax can be used to force the buffer used when displaying the bar
item: "@buffer:item" (where "buffer" is the full name of buffer and "item" is
the name of a bar item).

// TRANSLATION MISSING
This is useful in root bars, to display item for a specific buffer which is
not displayed in the current window (or even not displayed at all).

// TRANSLATION MISSING
Example: nicklist of bitlbee in a root bar (if the bar is called
_bitlist_ and if bitlbee server is called _bitlbee_):

----
/set weechat.bar.bitlist.items "@irc.bitlbee.&bitlbee:buffer_nicklist"
----

[[bar_filling]]
==== Filling

There are four types of filling:

* `horizontal`: the items are displayed horizontally, from left to right. If
  there are new lines in items, a space is used to separate lines.
* `vertical`: the items are displayed from top to bottom. If there are new
  lines in items, a new line is used to separate lines.
* `columns_horizontal`: items are displayed using columns, where text is
  aligned on the left. The first item is on top left, the second is on same
  line, on the right.
* `columns_vertical`: items are displayed using columns, where text is aligned
  on the left. The first item is on top left, the second is one line below.

Default bars _title_, _status_ and _input_ have _horizontal_ filling, and
default bar _nicklist_ has _vertical_ filling.

Some examples of filling for bar _nicklist_:

....
┌───────────────────────────────────────────────────────────────────────┐
│Welcome to #test, this is a test channel                               │
│12:54:15 peter | hey!                                         │@carl   │
│12:55:01  +Max | hello                                        │@jessika│
│                                                              │@maddy  │
│                                                              │%Diego  │
│                                                              │%Melody │
│                                                              │+Max    │
│                                                              │ celia  │
│                                                              │ Eva    │
│                                                              │ freddy │
│                                                              │ Harold^│
│                                                              │ henry4 │
│                                                              │ jimmy17│
│                                                              │ jodie ▼│
│[12:55] [6] [irc/freenode] 3:#test(+n){24}                             │
│[@carl] █                                                              │
└───────────────────────────────────────────────────────────────────────┘
                                     filling_left_right = vertical ▲

┌───────────────────────────────────────────────────────────────────────┐
│Welcome to #test, this is a test channel                               │
│12:54:15 peter | hey!                                │@carl     lee    │
│12:55:01  +Max | hello                               │@jessika  louise │
│                                                     │@maddy    mario  │
│                                                     │%Diego    mark   │
│                                                     │%Melody   peter  │
│                                                     │+Max      Rachel │
│                                                     │ celia    richard│
│                                                     │ Eva      sheryl │
│                                                     │ freddy   Vince  │
│                                                     │ Harold^  warren │
│                                                     │ henry4   zack   │
│                                                     │ jimmy17         │
│                                                     │ jodie           │
│[12:55] [6] [irc/freenode] 3:#test(+n){24}                             │
│[@carl] █                                                              │
└───────────────────────────────────────────────────────────────────────┘
                             filling_left_right = columns_vertical ▲

┌───────────────────────────────────────────────────────────────────────┐
│@carl    %Diego    celia    Harold^  jodie    mario    Rachel   Vince  │
│@jessika %Melody   Eva      henry4   lee      mark     richard  warren │
│@maddy   +Max      freddy   jimmy17  louise   peter    sheryl   zack   │
│───────────────────────────────────────────────────────────────────────│
│                                                                       │
        filling_top_bottom = columns_vertical ▲

┌───────────────────────────────────────────────────────────────────────┐
│@carl    @jessika @maddy   %Diego   %Melody  +Max      celia    Eva    │
│ freddy   Harold^  henry4   jimmy17  jodie    lee      louise   mario  │
│ mark     peter    Rachel   richard  sheryl   Vince    warren   zack   │
│───────────────────────────────────────────────────────────────────────│
│                                                                       │
      filling_top_bottom = columns_horizontal ▲
....

[[bar_conditions]]
==== Conditions

// TRANSLATION MISSING
The option _conditions_ is a string which is evaluated to know if the bar
must be displayed or not.

The string can be:

* _active_: the window must be active
* _inactive_: the window must be inactive
* _nicklist_: the buffer displayed in window must have a nicklist
* an expression: it is evaluated as boolean (see command
  <<command_weechat_eval,/eval>>)

For the expression, following variables are available:

* `+${active}+`: true if window is active
* `+${inactive}+`: true if window is inactive
* `+${nicklist}+`: true if buffer displayed in window has a nicklist

Following pointers are available:

* `+${window}+`: the window where condition is evaluated
* `+${buffer}+`: the buffer of window where condition is evaluated

Example to display nicklist bar in all buffers with a nicklist, and only if
width of window is > 100 :

----
/set weechat.bar.nicklist.conditions "${nicklist} && ${window.win_width} > 100"
----

Same condition, but always display nicklist on buffer _&bitlbee_ (even if window
is small):

----
/set weechat.bar.nicklist.conditions "${nicklist} && (${window.win_width} > 100 || ${buffer.full_name} == irc.bitlbee.&bitlbee)"
----

// TRANSLATION MISSING
[[bare_display]]
=== Bare display

A special display, called "bare display" can be used for easy click on long URLs
and selection of text (using the mouse).

The bare display has following features:

* it displays only the content of current buffer: no window split neither bars
  (no title, nicklist, status, input, ...)
* the WeeChat mouse support is disabled (if it was enabled): you can use your
  mouse like you do in the terminal to click on URLs and select text
* ncurses is not used, therefore URLs are not cut at the end of lines.

The default key to enabled bare display is kbd:[Alt+l], and same key to exit (or
by default anything changing the input will exit the bare display, see option
<<option_weechat.look.bare_display_exit_on_input,weechat.look.bare_display_exit_on_input>>).

The time format can be customized with the option
<<option_weechat.look.bare_display_time_format,weechat.look.bare_display_time_format>>.

The bare display can be enabled for a specific delay using the command
<<command_weechat_window,/window>>.

If WeeChat looks like that:

....
┌──────────────────────────────────────────────────────────────────────────────────────┐
│1.freenode│Welcome to #abc                                                            │
│  weechat │12:52:27   --> | Flashy (flashcode@weechat.org) has joined #abc    │@Flashy│
│2.  #test │12:52:27    -- | Nicks #abc: [@Flashy @joe +weebot peter]          │@joe   │
│3.  #abc  │12:52:27    -- | Channel #abc: 4 nicks (2 ops, 1 voice, 1 normal)  │+weebot│
│4.  #def  │12:52:27    -- | Channel created on Tue Jan 27 06:30:17 2009       │peter  │
│5.  #ghi  │12:54:15 peter | hey!                                              │       │
│          │12:55:01  @joe | peter: hook_process: https://weechat.org/files/do │       │
│          │               | c/devel/weechat_plugin_api.en.html#_weechat_hook_ │       │
│          │               | process                                           │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │                                                                   │       │
│          │[12:55] [5] [irc/freenode] 3:#abc(+n){4}                                   │
│          │[@Flashy(i)] hi peter!█                                                    │
└──────────────────────────────────────────────────────────────────────────────────────┘
....

The screen will look like that in bare display:

....
┌──────────────────────────────────────────────────────────────────────────────────────┐
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│                                                                                      │
│12:52 --> Flashy (flashcode@weechat.org) has joined #abc                              │
│12:52 -- Nicks #abc: [@Flashy @joe +weebot peter]                                     │
│12:52 -- Channel #abc: 4 nicks (2 ops, 1 voice, 1 normal)                             │
│12:52 -- Channel created on Tue Jan 27 06:30:17 2009                                  │
│12:54 <peter> hey!                                                                    │
│12:55 <@joe> peter: hook_process: https://weechat.org/files/doc/devel/weechat_plugin_a│
│pi.en.html#_weechat_hook_process                                                      │
└──────────────────────────────────────────────────────────────────────────────────────┘
....

So you can click the URL from _joe_ without any problem in your terminal (of
course this supposes that your terminal supports click on URLs).

[[notify_levels]]
=== Livelli di notifica

// TRANSLATION MISSING
[[setup_notify_levels]]
==== Setup notify levels

Sono possibili quattro livelli per i messaggi mostrati nei buffer, dal più basso
al più alto:

* _low_: messaggio di bassa importanza (ad esempio entrata/uscita/disconnessione
  di irc)
* _message_: messaggio da un utente
* _private_: messaggio in un buffer privato
* _highlight_: messaggio con notifica

Ogni buffer ha un livello di notifica, che viene usato per decidere quale
messaggio il buffer andrà ad aggiungere nella hotlist.

Il livello predefinito di notifica può essere impostato usando l'opzione
<<option_weechat.look.buffer_notify_default,weechat.look.buffer_notify_default>>,
il valore predefinito è _all_.

[width="50%",cols="3m,10",options="header"]
|===
| Livello di notifica | Livello del messaggio aggiunto alla hotlist
| none                | (nessuno)
| highlight           | _highlight_ + _private_
| message             | _highlight_ + _private_ + _message_
| all                 | _highlight_ + _private_ + _message_ + _low_
|===

Il livello di notifica può essere definito per un set di buffer, ad esempio
tutti i buffer per il server irc "freenode":

----
/set weechat.notify.irc.freenode message
----

Imposta il livello di notifica _highlight_ solo sul canale _#weechat_:

----
/set weechat.notify.irc.freenode.#weechat highlight
----

Il livello di notifica per un buffer può essere impostato con il comando `/buffer`:

----
/buffer notify highlight
----

// TRANSLATION MISSING
[[max_hotlist_level_nicks]]
==== Max hotlist level for nicks

It is possible to set max hotlist level for some nicks, per buffer, or per group
of buffers (like IRC servers).

The buffer property "hotlist_max_level_nicks" can be set with a list of nicks
and for each nick the max hotlist level to trigger, possible levels are:

* -1: no hotlist changes for nick
* 0: low priority (like join/part messages)
* 1: message
* 2: private message
* 3: highlight (in fact useless, since it's already the default max for all messages)

For example to disable highlights from "joe" and "mike" on current buffer:

----
/buffer set hotlist_max_level_nicks_add joe:2,mike:2
----

[NOTE]
The buffer property "hotlist_max_level_nicks" is not saved in configuration. +
You can easily save it with the script _buffer_autoset.py_: you can install it
with `/script install buffer_autoset.py` and get help with `/help buffer_autoset`.

// TRANSLATION MISSING
[[highlights]]
=== Highlights

[[highlights_words]]
==== Add words to highlight

By default, WeeChat highlights messages from other users containing your nick,
therefore the highlight depends on the buffer (the nick can be different from
one buffer to another).

You can add other words to highlight with the option
<<option_weechat.look.highlight,weechat.look.highlight>>, for example to
highlight your nick and "word1", "word2" and all words beginning with "test":

----
/set weechat.look.highlight word1,word2,test*
----

If you need a more specific rule for the word, you can use regular expressions
with the option <<option_weechat.look.highlight_regex,weechat.look.highlight_regex>>,
for example to highlight words "flashcode", "flashcöde" and "flashy":

----
/set weechat.look.highlight_regex flashc[oö]de|flashy
----

The delimiters around words to highlight can be customized with the option
<<option_weechat.look.word_chars_highlight,weechat.look.word_chars_highlight>>.

[[highlights_tags]]
==== Add tags to highlight

Lines displayed can contain "tags", which give some info about the origin of
message or the message itself. +
You can display tags with the command `/debug tags` (same command to hide them).

You can add specific tags to highlight with the option
<<option_weechat.look.highlight_tags,weechat.look.highlight_tags>>.
Tags are separated by commas, and multiple tags can be separated by "+" to do
a logical "and" between them.

For example to highlight all messages from nick "FlashCode" and all notices
from nicks beginning with "toto":

----
/set weechat.look.highlight_tags "nick_flashcode,irc_notice+nick_toto*"
----

[[highlights_regex_buffer]]
==== Set extra highlights on buffer

You can force highlight using a regular expression with the buffer property
"highlight_regex".

For example to force the highlight on all messages in the current buffer:

----
/buffer set highlight_regex .*
----

[NOTE]
The buffer property "highlight_regex" is not saved in configuration. +
You can easily save it with the script _buffer_autoset.py_: you can install it
with `/script install buffer_autoset.py` and get help with `/help buffer_autoset`.

[[key_bindings]]
=== Associazione tasti predefinita

[[key_bindings_command_line]]
==== Tasti per la riga di comando

[width="100%",cols="^.^3,.^8,.^5",options="header"]
|===
| Tasti           | Descrizione | Comando
| kbd:[←] +
  kbd:[Ctrl+b]    | Passa al carattere precedente nella riga di comando. | `/input move_previous_char`
| kbd:[→] +
  kbd:[Ctrl+f]    | Passa al carattere successivo nella riga di comando. | `/input move_next_char`
| kbd:[Ctrl+←] +
  kbd:[Alt+b]     | Passa alla parola precedente nella riga di comando. | `/input move_previous_word`
| kbd:[Ctrl+→] +
  kbd:[Alt+f]     | Passa alla parola successiva nella riga di comando. | `/input move_next_word`
| kbd:[Home] +
  kbd:[Ctrl+a]    | Si sposta all'inizio della riga di comando. | `/input move_beginning_of_line`
| kbd:[End] +
  kbd:[Ctrl+e]    | Si sposta alla fine della riga di comando. | `/input move_end_of_line`
| kbd:[Ctrl+c],
  kbd:[b]         | Inserisce il codice per il testo in grassetto. | `/input insert \x02`
| kbd:[Ctrl+c],
  kbd:[c]         | Inserisce il codice per il testo colorato. | `/input insert \x03`
| kbd:[Ctrl+c],
  kbd:[i]         | Inserisce il codice per il testo in corsivo. | `/input insert \x1D`
| kbd:[Ctrl+c],
  kbd:[o]         | Inserisce il codice per il reset dei colori. | `/input insert \x0F`
| kbd:[Ctrl+c],
  kbd:[v]         | Inserisce il codice per l'inversione dei colori. | `/input insert \x16`
| kbd:[Ctrl+c],
  kbd:[_]         | Inserisce il codice per il testo sottolineato. | `/input insert \x1F`
| kbd:[Del] +
  kbd:[Ctrl+d]    | Elimina il carattere successivo nella riga di comando. | `/input delete_next_char`
| kbd:[Backsp.] +
  kbd:[Ctrl+h]    | Elimina il carattere precedente nella riga di comando. | `/input delete_previous_char`
// TRANSLATION MISSING
| kbd:[Ctrl+k]    | Elimina dal cursore fino alla fine della riga di comando (deleted string is copied to the internal clipboard). | `/input delete_end_of_line`
| kbd:[Ctrl+r]      | Cerca del testo nella cronologia del buffer (consultare <<key_bindings_search_context,tasti per il contesto search>>). | `/input search_text_here`
| kbd:[Ctrl+t]    | Inverti caratteri. | `/input transpose_chars`
// TRANSLATION MISSING
| kbd:[Ctrl+u]    | Elimina dal cursore fino all'inizio della riga di comando (deleted string is copied to the internal clipboard). | `/input delete_beginning_of_line`
// TRANSLATION MISSING
| kbd:[Ctrl+w]    | Elimina la parola precedente nella riga di comando (deleted string is copied to the internal clipboard). | `/input delete_previous_word`
// TRANSLATION MISSING
| kbd:[Ctrl+y]    | Paste the internal clipboard content. | `/input clipboard_paste`
| kbd:[Ctrl+_]    | Annulla l'ultima azione sulla riga di comando. | `/input undo`
| kbd:[Alt+_]     | Ripete l'ultima azione sulla riga di comando. | `/input redo`
| kbd:[Tab]       | Completa comando o nick (kbd:[Tab] di nuovo: trova prossimo completamento). | `/input complete_next`
| kbd:[Shift+Tab] | Senza completamento: effettua un completamento parziale, con completamento in sospeso: completa con il completamento precedente. | `/input complete_previous`
| kbd:[Invio] +
  kbd:[Ctrl+j] +
  kbd:[Ctrl+m]    | Esegue comando o invia messaggio (in modalità ricerca: ferma ricerca). | `/input return`
| kbd:[↑]         | Chiama comando/messaggio precedente (in modalità ricerca: cerca in alto). | `/input history_previous`
| kbd:[↓]         | Chiama comando/messaggio precedente (in modalità ricerca: cerca in basso). | `/input history_next`
| kbd:[Ctrl+↑]    | Chiama il comando/messaggio precedente nella cronologia globale (identico per tutti i buffer). | `/input history_global_previous`
| kbd:[Ctrl+↓]    | Chiama il comando/messaggio successivo nella cronologia globale (identico per tutti i buffer). | `/input history_global_next`
// TRANSLATION MISSING
| kbd:[Alt+d]     | Elimina la parola successiva nella riga di comando (deleted string is copied to the internal clipboard). | `/input delete_next_word`
| kbd:[Alt+k]     | Cattura un tasto ed inserisce il suo codice (e il comando associato se il tasto esiste) nella riga di comando. | `/input grab_key_command`
| kbd:[Alt+r]     | Elimina l'intera riga di comando. | `/input delete_line`
// TRANSLATION MISSING
| kbd:[Alt+s]     | Toggle spell checker. | `/mute spell toggle`
|===

[[key_bindings_buffers_windows]]
==== Tasti per buffer / finestre

[width="100%",cols="^.^3,.^8,.^5",options="header"]
|===
| Tasti           | Descrizione | Comando
| kbd:[Ctrl+l]    | Ridisegna l'intera finestra. | `/window refresh`
| kbd:[Ctrl+s],
  kbd:[ctrl-u]    | Imposta l'evidenziatore dei messaggi non letti su tutti i buffer. | `/input set_unread`
| kbd:[Ctrl+x]    | Passa al buffer attivo se i buffer sono collegati con lo stesso numero. | `/input switch_active_buffer`
// TRANSLATION MISSING
| kbd:[Alt+x]     | Zoom on merged buffer (kbd:[Alt+x] again: display all merged buffers). | `/input zoom_merged_buffer`
| kbd:[PgUp]      | Scorre in alto di una pagina nella cronologia del buffer. | `/window page_up`
| kbd:[PgDn]      | Scorre di una pagina in basso nella cronologia del buffer. | `/window page_down`
| kbd:[Alt+PgUp]  | Scorre di qualche riga in alto nella cronologia del buffer. | `/window scroll_up`
| kbd:[Alt+PgDn]  | Scorre di qualche riga in basso nella cronologia del buffer. | `/window scroll_down`
| kbd:[Alt+Home]  | Scorre in cima al buffer. | `/window scroll_top`
| kbd:[Alt+End]   | Scorre alla fine del del buffer. | `/window scroll_bottom`
// TRANSLATION MISSING
| kbd:[F1] +
  kbd:[Ctrl+F1]   | Scroll up one page in buflist. | `/bar scroll buflist * -100%`
// TRANSLATION MISSING
| kbd:[F2] +
  kbd:[Ctrl+F2]   | Scroll down one page in buflist. | `/bar scroll buflist * +100%`
// TRANSLATION MISSING
| kbd:[Alt+F1]    | Go to the beginning of buflist. | `/bar scroll buflist * b`
// TRANSLATION MISSING
| kbd:[Alt+F2]    | Go to the end of buflist. | `/bar scroll buflist * e`
| kbd:[Alt+←] +
  kbd:[Alt+↑] +
  kbd:[Ctrl+p] +
  kbd:[F5]        | Passa al buffer precedente. | `/buffer -1`
| kbd:[Alt+→] +
  kbd:[Alt+↓] +
  kbd:[Ctrl+n] +
  kbd:[F6]        | Passa al buffer successivo. | `/buffer +1`
| kbd:[F7]        | Passa alla finestra precedente. | `/window -1`
| kbd:[F8]        | Passa alla finestra successiva. | `/window +1`
| kbd:[F9]        | Scorre il titolo del buffer sulla sinistra. | `+/bar scroll title * -30%+`
| kbd:[F10]       | Scorre il titolo del buffer sulla destra. | `+/bar scroll title * +30%+`
| kbd:[F11] +
  kbd:[Ctrl+F11]  | Scorre di una pagina in alto nella lista nick. | `/bar scroll nicklist * -100%`
| kbd:[F12] +
  kbd:[Ctrl+F12]  | Scorre di una pagina in basso nella lista nick. | `/bar scroll nicklist * +100%`
| kbd:[Alt+F11]   | Sposta all'inizio della lista nick. | `/bar scroll nicklist * b`
| kbd:[Alt+F12]   | Sposta alla fine della lista nick. | `/bar scroll nicklist * e`
| kbd:[Alt+a]     | Passa al buffer successivo con attività (con priorità: highligh, messagge, altro). | `/input jump_smart`
| kbd:[Alt+h]     | Pulisce hotlist (notifica di attività su altri buffer). | `/input hotlist_clear`
// TRANSLATION MISSING
| kbd:[Alt+j],
  kbd:[alt-f]     | Switch to first buffer. | `/buffer -`
| kbd:[Alt+j],
  kbd:[alt-l]     | Passa all'ultimo buffer. | `/buffer +`
| kbd:[Alt+j],
  kbd:[alt-r]     | Passa al buffer raw IRC. | `/server raw`
| kbd:[Alt+j],
  kbd:[alt-s]     | Passa al buffer server IRC. | `/server jump`
| kbd:[Alt+0...9] | Passa al buffer numero (0 = 10). | `/buffer *N`
| kbd:[Alt+j],
  kbd:[01...99]   | Passa al buffer numero. | `/buffer *NN`
// TRANSLATION MISSING
| kbd:[Alt+l]     | Toggle bare display on/off. | `/window bare`
| kbd:[Alt+m]     | Abilita/disabilita. | `/mouse toggle`
| kbd:[Alt+n]     | Scorre fino alla notifica successiva. | `/window scroll_next_highlight`
| kbd:[Alt+p]     | Scorre fino alla notifica precedente. | `/window scroll_previous_highlight`
| kbd:[Alt+u]     | Scorre fino alla prima riga non letta nel buffer. | `/window scroll_unread`
| kbd:[Alt+w],
  kbd:[alt-↑]     | Passa alla finestra in alto. | `/window up`
| kbd:[Alt+w],
  kbd:[alt-↓]     | Passa alla finestra in basso. | `/window down`
| kbd:[Alt+w],
  kbd:[alt-←]     | Passa alla finestra sulla sinistra. | `/window left`
| kbd:[Alt+w],
  kbd:[alt-→]     | Passa alla finestrs sulla destra. | `/window right`
| kbd:[Alt+w],
  kbd:[alt-b]     | Bilancia le dimensioni di tutte le finestre. | `/window balance`
| kbd:[Alt+w],
  kbd:[alt-s]     | Scambia i buffer di due finestra. | `/window swap`
| kbd:[Alt+z]     | Ingrandimento sulla finestra attiva (kbd:[Alt+z] di nuovo: ripristina lo stato iniziale della finestra, prima dell'ingrandimento). | `/window zoom`
| kbd:[Alt+<]     | Passa al buffer precedente nella lista dei buffer visitati. | `/input jump_previously_visited_buffer`
| kbd:[Alt+>]     | Passa al buffer successivo nella lista dei buffer visitati. | `/input jump_next_visited_buffer`
| kbd:[Alt+/]     | Passa all'ultimo buffer mostrato (prima dell'ultimo passaggio ad un buffer). | `/input jump_last_buffer_displayed`
| kbd:[Alt+=]     | Attiva/disattiva filtri. | `/filter toggle`
// TRANSLATION MISSING
| kbd:[Alt+-]     | Toggle filters on/off in current buffer. | `/filter toggle @`
|===

[[key_bindings_search_context]]
==== Tasti per il contesto "search"

Questi tasti sono usati nel contesto "search" (quando viene digitato
kbd:[Ctrl+r] per cercare del testo nel buffer).

[width="100%",cols="^.^3,.^8,.^5",options="header"]
|===
| Key            | Descrizione | Comando
// TRANSLATION MISSING
| kbd:[Ctrl+r]   | Switch search type: string (default), regular expression. | `/input search_switch_regex`
| kbd:[Alt+c]    | Passa alla ricerca esatta. | `/input search_switch_case`
// TRANSLATION MISSING
| kbd:[Tab]      | Switch search in: messages (default), prefixes, prefixes + messages. | `/input search_switch_where`
| kbd:[↑]        | Cerca riga precedente. | `/input search_previous`
| kbd:[↓]        | Cerca riga successiva. | `/input search_next`
// TRANSLATION MISSING
| kbd:[Enter] +
  kbd:[Ctrl+j] +
  kbd:[Ctrl+m]   | Stop search at current position. | `/input search_stop_here`
// TRANSLATION MISSING
| kbd:[Ctrl+q]   | Stop search and scroll to bottom of buffer. | `/input search_stop`
|===

[[key_bindings_cursor_context]]
==== Tasti per il contesto "cursor"

Questi tasti sono usati nel contesto "cursor" (movimento libero del cursore
sullo schermo.

[width="100%",cols="^.^3,^.^2,.^7,.^7",options="header"]
|===
| Tasto          | Zona       | Descrizione | Comando
| kbd:[↑]        | -          | Sposta il cursore di una riga in alto. | `/cursor move up`
| kbd:[↓]        | -          | Sposta il cursore di una riga in basso. | `/cursor move down`
| kbd:[←]        | -          | Sposta il cursore di una colonna a sinistra. | `/cursor move left`
| kbd:[→]        | -          | Sposta il cursore di una colonna a destra. | `/cursor move right`
| kbd:[Alt+↑]    | -          | Sposta il cursore nell'area in alto. | `/cursor move area_up`
| kbd:[Alt+↓]    | -          | Sposta il cursore nell'area in basso. | `/cursor move area_down`
| kbd:[Alt+←]    | -          | Sposta il cursore nell'area a sinistra. | `/cursor move area_left`
| kbd:[Alt+→]    | -          | Sposta il cursore nell'area a destra. | `/cursor move area_right`
| kbd:[m]        | chat       | Cita messaggio. | `hsignal:chat_quote_message;/cursor stop`
| kbd:[q]        | chat       | Cita prefisso + messaggio. | `hsignal:chat_quote_prefix_message;/cursor stop`
| kbd:[Q]        | chat       | Cita ora + prefisso + messaggio. | `hsignal:chat_quote_time_prefix_message;/cursor stop`
| kbd:[b]        | lista nick | Ban di un nick. | `/window ${_window_number};/ban ${nick}`
| kbd:[k]        | lista nick | Kick di un nick. | `/window ${_window_number};/kick ${nick}`
| kbd:[K]        | lista nick | Kick e ban di un nick. | `/window ${_window_number};/kickban ${nick}`
| kbd:[q]        | lista nick | Apri query con il nick. | `/window ${_window_number};/query ${nick};/cursor stop`
| kbd:[w]        | lista nick | Effettua un whois sul nick. | `/window ${_window_number};/whois ${nick}`
| kbd:[Enter] +
  kbd:[Ctrl+j] +
  kbd:[Ctrl+m]   | -          | Ferma la modalità cursore. | `/cursor stop`
|===

[[key_bindings_mouse_context]]
==== Tasti per il contesto "mouse"

Questi tasti sono usati nel contesto "mouse", ovvero quando si verifica un
evento del mouse.

// TRANSLATION MISSING (6)
[width="100%",cols="^.^3,^.^3,^.^3,.^8,.^8",options="header"]
|===
| Tasto ^(1)^  | Azione           | Zona                 | Descrizione | Comando
| ◾◽◽          | -                | chat                 | Passa alla finestra. | `/window ${_window_number}`
| ◾◽◽          | sinistra         | chat                 | Passa al buffer precedente. | `/window ${_window_number};/buffer +1`
| ◾◽◽          | destra           | chat                 | Passa al buffer successivo. | `/window ${_window_number};/buffer +1`
| ◾◽◽          | sinistra (lungo) | chat                 | Switch to first buffer. | `/window ${_window_number};/buffer 1`
| ◾◽◽          | destra (lungo)   | chat                 | Passa all'ultimo buffer. | `/window ${_window_number};/input jump_last_buffer`
| ◾◽◽          | -                | chat (script buffer) | Select line in script buffer. | `/script go ${_chat_line_y}`
| ◽◽◾          | -                | chat (script buffer) | Install/remove script. | `/script go ${_chat_line_y};/script installremove -q ${script_name_with_extension}`
| ⇑            | -                | chat                 | Scorre di qualche riga in alto nella cronologia del buffer. | `/window scroll_up -window ${_window_number}`
| ⇓            | -                | chat                 | Scorre di qualche riga in basso nella cronologia del buffer. | `/window scroll_down -window ${_window_number}`
| ⇑            | -                | chat (script buffer) | Move 5 lines up in script buffer. | `/script up 5`
| ⇓            | -                | chat (script buffer) | Move 5 lines down in script buffer. | `/script down 5`
| kbd:[Ctrl+⇑] | -                | chat                 | Scroll horizontally to the left. | `/window scroll_horiz -window ${_window_number} -10%`
| kbd:[Ctrl+⇓] | -                | chat                 | Scroll horizontally to the right. | `/window scroll_horiz -window ${_window_number} +10%`
// TRANSLATION MISSING
| ◾◽◽          | up / left        | buflist              | Move buffer to a lower number. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| ◾◽◽          | down / right     | buflist              | Move buffer to a higher number. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| ◾◽◽          | -                | buflist              | Switch to buffer (previously visited buffer if the buffer is the current one). | Signal `buflist_mouse`.
// TRANSLATION MISSING
| ◽◽◾          | -                | buflist              | Switch to next visited buffer if the buffer is the current one. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| kbd:[Ctrl+⇑] | -                | buflist              | Switch to previous buffer. | Signal `buflist_mouse`.
// TRANSLATION MISSING
| kbd:[Ctrl+⇓] | -                | buflist              | Switch to next buffer. | Signal `buflist_mouse`.
| ◾◽◽          | su               | lista nick           | Scorre di una pagina in alto nella lista nick. | `/bar scroll nicklist ${_window_number} -100%`
| ◾◽◽          | giù              | lista nick           | Scorre di una pagina in basso nella lista nick. | `/bar scroll nicklist ${_window_number} +100%`
| ◾◽◽          | up (lungo)       | lista nick           | Sposta all'inizio della lista nick. | `/bar scroll nicklist ${_window_number} b`
| ◾◽◽          | giù (lungo)      | lista nick           | Sposta alla fine della lista nick. | `/bar scroll nicklist ${_window_number} e`
| ◾◽◽          | -                | lista nick           | Apre una query con un nick. | `/window ${_window_number};/query ${nick}`
| ◽◽◾          | -                | lista nick           | Effettua un whois su un nick. | `/window ${_window_number};/whois ${nick}`
| ◾◽◽          | sinistra         | lista nick           | Kick di un nick. | `/window ${_window_number};/kick ${nick}`
| ◾◽◽          | sinistra (lungo) | lista nick           | Kick e ban di un nick. | `/window ${_window_number};/kickban ${nick}`
| ◽◽◾          | sinistra         | lista nick           | Ban di un nick. | `/window ${_window_number};/ban ${nick}`
| ◽◽◾          | -                | input                | Cattura un evento del mouse e inserisce il codice nella riga di comando. | `/input grab_mouse_area`
| ⇑            | -                | ogni barra           | Scorre la barra del -20%. | `/bar scroll ${_bar_name} ${_window_number} -20%`
| ⇓            | -                | ogni barra           | Scorre la barra del +20%. | `/bar scroll ${_bar_name} ${_window_number} +20%`
| ◽◾◽          | -                | ovunque              | Avvia la modalità cursore in questo punto. | `/cursor go ${_x},${_y}`
|===

// TRANSLATION MISSING
[NOTE]
^(1)^ "⇑" and "⇓" are wheel up and down.

[[mouse]]
=== Supporto del mouse

WeeChat supporta i click e le azioni del mouse. Funziona con il terminale
locale, e da remoto via connessione ssh con o senza screen/tmux.

[[mouse_enable]]
==== Abilitare il mouse

Per abilitare il mouse all'avvio:

----
/set weechat.look.mouse on
----

Per abilitarlo subito, digitare kbd:[Alt+m] oppure eseguire il seguente comando:

----
/mouse enable
----

È possibile disabilitarlo temporaneamente, e associare il comando ad un
tasto. Ad esempio il tasto kbd:[Alt+%] per disabilitare il mouse per 10 secondi:

----
/key bind meta-% /mouse toggle 10
----

// TRANSLATION MISSING
[IMPORTANT]
When mouse is enabled in WeeChat, all mouse events are caught by WeeChat, so
actions such as copy/paste or clicks on URLs are not sent to the terminal. +
Using kbd:[Shift] key causes the events to be sent directly to the terminal,
as if the mouse was disabled (on some terminals like iTerm, you have to use
kbd:[Alt] instead of kbd:[Shift]).

[NOTE]
Per qualunque problema con il mouse, consultare
link:weechat_faq.it.html#mouse[FAQ di WeeChat / Mouse].

[[mouse_bind_events]]
==== Associare gli eventi del mouse a comandi

Molti eventi del mouse predefiniti sono già definiti da WeeChat (consultare
<<key_bindings_mouse_context,tasti per il contesto "mouse">>).

È possibile cambiare o aggiungere combinazioni con il comando `/key` usando il
contesto "mouse" (per la sintassi, consultare comando
<<command_weechat_key,/key>>).

Il nome dell'evento consiste di un modificatore (opzionale), il nome di un
pulsante/rotellina e un'azione (opzionale). Elementi diversi sono separati da "-".

Elenco di modificatori

[width="50%",cols="3m,4",options="header"]
|===
| Modificatore | Descrizione
| ctrl         | Tasto kbd:[Ctrl]
| alt          | Tasto kbd:[Alt]
| ctrl-alt     | Tasto kbd:[Ctrl] + kbd:[Alt]
|===

Elenco di pulsanti/rotellina:

[width="50%",cols="3m,4",options="header"]
|===
| Pulsante/rotellina  | Descrizione
| button1             | Click sul tasto sinistro
| button2             | Click sul tasto destro
| button3             | Click sul tasto centrale (spesso click sulla rotellina)
| button4 ... button9 | Click sui pulsanti extra
| wheelup             | Rotellina (su)
| wheeldown           | Rotellina (giù)
|===

Elenco di azioni (solo per i pulsanti, non la rotellina):

[width="50%",cols="3m,4",options="header"]
|===
| Azione             | Distanza
| gesture-up         | 3 ... 19
| gesture-up-long    | ≥ 20
| gesture-down       | 3 ... 19
| gesture-down-long  | ≥ 20
| gesture-left       | 3 ... 39
| gesture-left-long  | ≥ 40
| gesture-right      | 3 ... 39
| gesture-right-long | ≥ 40
|===

// TRANSLATION MISSING
List of incomplete events (only for buttons, useful for plugins/scripts):

[width="50%",cols="3m,4",options="header"]
|===
| Event      | Description
| event-down | Button was pressed but not released yet
| event-drag | Mouse was moved with button pressed down
|===

Esempio di eventi:

* `button1`
* `ctrl-button1`
* `button1-gesture-right`
* `button1-event-down`
* `button1-event-drag`
* `alt-button2-gesture-down-long`
* `wheelup`
* `ctrl-alt-wheeldown`
* ...

[TIP]
Quando si associa un tasto nel contesto "mouse", è possibile far corrispondere
più eventi usando `+*+` all'inizio o alla fine del nome, ad esempio
`+button1-gesture-*+` corrisponderà ad ogni azione compiuta col tasto sinistro.

[TIP]
È possibile trovare il nome di un evento con il comando `/input grab_mouse`
poi eseguire l'evento col mouse. Il comando inserisce il nome dell'evento
nella riga di comando.

// TRANSLATION MISSING
[[secured_data]]
=== Secured data

[[secured_data_storage]]
==== Storage

WeeChat can encrypt passwords or private data using secured data, stored in file
_sec.conf_.

This configuration file is read before any other file, and the values stored
inside can be used in various WeeChat or plugins/scripts options.

You can set a passphrase to encrypt data in _sec.conf_. This is not mandatory
but highly recommended, otherwise data is stored as plain text in file.

----
/secure passphrase this is my passphrase
----

When a passphrase is set, WeeChat will ask you to enter it on startup (but not
on `/upgrade`).

You can change this behavior and use a file with the passphrase (see option
<<option_sec.crypt.passphrase_file,sec.crypt.passphrase_file>>).

[[secured_data_encryption]]
===== Encryption

The encryption of data is made in 3 steps:

. Derive a key from the passphrase (with optional salt).
. Compute hash of data to encrypt.
. Encrypt the hash + data (output is: salt + encrypted hash/data).

[NOTE]
The cipher block mode is _CFB_.

The result is put as hexadecimal string in file _sec.conf_, for example:

----
[data]
__passphrase__ = on
freenode = "53B1C86FCDA28FC122A95B0456ABD79B5AB74654F21C3D099A6CCA8173239EEA59533A1D83011251F96778AC3F5166A394"
----

[[secured_data_decryption]]
===== Decryption

The decryption of data is made in 3 steps:

. Derive a key using salt and passphrase.
. Decrypt hash + data.
. Check that decrypted hash == hash of data.

[[secured_data_manage]]
==== Manage secured data

To add secured data, use `/secure set`, for example a password for _freenode_
IRC server:

----
/secure set freenode mypassword
----

For comfort, secured data can be displayed in a dedicated buffer (kbd:[Alt+v] on
buffer to see values), just do:

----
/secure
----

Secured data can be used in some options that can contain private data like
password, using this format: "${sec.data.xxx}" where "xxx" is the name of
secured data (used with `/secure set xxx ...`). +
For a complete list of supported options, see `/help secure`.

To use the _freenode_ password, for example with
<<irc_sasl_authentication,SASL authentication>>:

----
/set irc.server.freenode.sasl_password "${sec.data.freenode}"
----

// TRANSLATION MISSING
[[commands_and_options]]
=== Commands and options

[[weechat_commands]]
==== Comandi di WeeChat

include::autogen/user/weechat_commands.adoc[]

// TRANSLATION MISSING
[[sec_options]]
==== Secured data options

// TRANSLATION MISSING
Sections in file _sec.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command                    | Description
| crypt   | /set sec.crypt.*                   | Options for encryption.
| data    | <<command_weechat_secure,/secure>> | Secured data.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/sec_options.adoc[]

[[weechat_options]]
==== Opzioni di WeeChat

// TRANSLATION MISSING
Sections in file _weechat.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section    | Control command                           | Description
| debug      | <<command_weechat_debug,/debug set>>      +
               /set weechat.debug.*                      | Debug level, for core and plugins (options can be added/removed in section).
| startup    | /set weechat.startup.*                    | Startup options.
| look       | /set weechat.look.*                       | Look and feel.
| palette    | <<command_weechat_color,/color alias>>    +
               /set weechat.palette.*                    | Color aliases (options can be added/removed in section).
| color      | /set weechat.color.*                      | Colors.
| completion | /set weechat.completion.*                 | Completion options.
| history    | /set weechat.history.*                    | History options (commands and buffers).
| proxy      | <<command_weechat_proxy,/proxy>>          +
               /set weechat.proxy.*                      | Proxy options.
| network    | /set weechat.network.*                    | Network/SSL options.
| bar        | <<command_weechat_bar,/bar>>              +
               /set weechat.bar.*                        | Bar options.
| layout     | <<command_weechat_layout,/layout>>        | Layouts.
| notify     | <<command_weechat_buffer,/buffer notify>> | Notify levels for buffers (options can be added/removed in section).
| filter     | <<command_weechat_filter,/filter>>        | Filters.
| key        | <<command_weechat_key,/key>>              | Keys in default context.
| key_search | <<command_weechat_key,/key>>              | Keys in search context.
| key_cursor | <<command_weechat_key,/key>>              | Keys in cursor context.
| key_mouse  | <<command_weechat_key,/key>>              | Keys in mouse context.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/weechat_options.adoc[]

[[plugins]]
== Plugin

Un plugin è una libreria dinamica, scritta in C e compilata, che viene caricata
da WeeChat.
In GNU/Linux, il file ha estensione ".so", ".dll" in Windows.

I plugin trovati vengono caricati automaticamente all'avvio di WeeChat, ed
è possibile caricare o scaricare i plugin durante l'esecuzione del programma.

È importante evidenziare la differenza tra un _plugin_ ed uno _script_: un
_plugin_ è un file binario compilato e caricato con il comando `/plugin`,
mentre uno _script_ è un file di testo caricato con un plugin come _python_
con il comando `/python`.

È possibile utilizzare il comando `/plugin` per caricare/scaricare un plugin,
oppure elencare tutti i plugin caricati.
Quando un plugin viene scaricato, tutti i buffer creati da questo plugin
sono chiusi automaticamente.

Esempi per caricare, scaricare oppure elencare i plugin:

----
/plugin load irc
/plugin unload irc
/plugin list
----

I plugin predefiniti sono:

[width="100%",cols="1,8",options="header"]
|===
| Plugin     | Descrizione
| alias      | Definisce gli alias per i comandi.
// TRANSLATION MISSING
| buflist    | Bar item with list of buffers.
| charset    | Set di caratteri per la codifica/decodifica nei buffer.
// TRANSLATION MISSING
| exec       | Execution of external commands in WeeChat.
| fifo       | pipe FIFO utilizzata per inviare comandi da remoto su WeeChat.
// TRANSLATION MISSING
| fset       | Fast set of WeeChat and plugins options.
| irc        | protocollo chat per IRC.
| logger     | Registra i buffer su file.
| relay      | Relay dei dati via rete.
| script     | Gestore script.
| python     | API per lo scripting in Python.
| perl       | API per lo scripting in Perl.
| ruby       | API per lo scripting in Ruby.
| lua        | API per lo scripting in Lua.
| tcl        | API per lo scripting in TCL.
| guile      | API per lo scripting in Guile (scheme).
| javascript | API per lo scripting in JavaScript.
| php        | API per lo scripting in PHP.
| spell      | Controllo ortografico per la riga di comando.
// TRANSLATION MISSING
| trigger    | Text replacement and command execution on events triggered by WeeChat/plugins.
| xfer       | Trasferimento file e chat diretta.
|===

Per saperne di più riguardo lo sviluppo di plugin o script (tramite le API), per
favore consultare link:weechat_plugin_api.it.html[Riferimento API dei Plugin per WeeChat]
oppure link:weechat_scripting.it.html[Guida allo Scripting di WeeChat].

[[alias_plugin]]
=== Alias

Il plugin Alias consente di creare alias per i comandi (da WeeChat o altri
plugin).

// TRANSLATION MISSING
Some aliases are created by default, with name in upper case (to make them
different from standard commands); commands are not case sensitive in WeeChat,
so for example `/close` runs the alias `/CLOSE`.

// TRANSLATION MISSING
List of default aliases:

include::autogen/user/alias_default_aliases.adoc[]

[[alias_commands]]
==== Comandi

include::autogen/user/alias_commands.adoc[]

[[alias_options]]
==== Options

// TRANSLATION MISSING
Sections in file _alias.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section    | Control command                | Description
| cmd        | <<command_alias_alias,/alias>> +
               /set alias.cmd.*               | Commands for aliases.
| completion | <<command_alias_alias,/alias>> +
               /set alias.completion.*        | Completions for aliases.
|===

[[buflist_plugin]]
=== Buflist

// TRANSLATION MISSING
Buflist plugin displays a list of buffers in a bar item called "buflist"
(two other bar items "buflist2" and "buflist3" are available as well). +
A default bar "buflist" is created on startup with this item.

[[buflist_commands]]
==== Comandi

include::autogen/user/buflist_commands.adoc[]

[[buflist_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _buflist.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command       | Description
| format  | /set buflist.format.* | Formats used to display list of buffers.
| look    | /set buflist.look.*   | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/buflist_options.adoc[]

[[charset_plugin]]
=== Charset

Il plugin Charset consente di decodificare o codificare dati utilizzando
i set caratteri.

Esiste un set caratteri predefinito per la codifica/decodifica, e set caratteri
specifici per i buffer (o gruppi di buffer).

Questo plugin è opzionale, ma raccomandato: se non caricato, WeeChat
può leggere/scrivere soltanto dati UTF-8.

Il plugin Charset dovrebbe essere caricato automaticamente da WeeChat.
Per essere sicuri che sia caricato, provare con:

----
/charset
----

Se non trovato, allora si deve caricare il plugin con il comando:

----
/plugin load charset
----

Se il plugin non viene trovato, allora è necessario ricompilare WeeChat
con il supporto ai plugin e a Charset.

Quando viene avviato il plugin Charset, mostra i set caratteri del
terminale e quello interno. Il set caratteri dipende dal proprio
locale, mentre quello interno è UTF-8.

Per esempio:

....
set caratteri: terminale: ISO-8859-15, interno: UTF-8
....

[[charset_set]]
==== Impostare il set caratteri

Per impostare il set caratteri globale per la codifica e la decodifica,
utilizzare il comando `/set`.

Per esempio:

----
/set charset.default.decode ISO-8859-15
/set charset.default.encode ISO-8859-15
----

Se il set caratteri globale per la decodifica non è impostato (ad
esempio durante il primo caricamento del plugin Charset), verrà
impostato automaticamente sul set caratteri del terminale (se
diverso da UTF-8), oppure su _ISO-8859-1_.

Il valore di codifica predefinito è vuoto, perciò il testo viene
inviato per default con il set caratteri interno (UTF-8).

Per impostare il set caratteri del server IRC, utilizzare il comando `charset`
sul buffer del server. Se viene immesso solo il set caratteri, allora i valori
di codifica e decodifica saranno gli stessi.

Ad esempio:

----
/charset ISO-8859-15
----

È l'equivalente di:

----
/charset decode ISO-8859-15
/charset encode ISO-8859-15
----

Per impostare il set caratteri per il canale IRC (o il privato), utilizzare gli
stessi comandi per il server, ma sul buffer del canale (o quello privato).

// TRANSLATION MISSING
To set charset for all channels/privates of an IRC server:

----
/set charset.encode.irc.freenode ISO-8859-15
----

Per visualizzare tutti i set caratteri utilizzati, utilizzare il comando seguente:

----
/set charset.*
----

[[charset_troubleshooting]]
==== Risoluzione problemi

Per qualunque problema con i set caratteri, per favore consultare
le link:weechat_faq.it.html#charset[Domande Frequenti di WeeChat / Charset].

[[charset_commands]]
==== Comandi

include::autogen/user/charset_commands.adoc[]

[[charset_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _charset.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command                             | Description
| default | /set charset.default.*                      | Default decoding/encoding charset.
| decode  | <<command_charset_charset,/charset decode>> +
            /set charset.decode.*                       | Decoding charset by buffer (options can be added/removed in section).
| encode  | <<command_charset_charset,/charset encode>> +
            /set charset.encode.*                       | Encoding charset by buffer (options can be added/removed in section).
|===

// TRANSLATION MISSING
Options:

include::autogen/user/charset_options.adoc[]

// TRANSLATION MISSING
[[exec_plugin]]
=== Exec

The `/exec` command lets you execute external commands inside WeeChat and
display the output locally, or send it to a buffer.

[[exec_commands]]
==== Comandi

include::autogen/user/exec_commands.adoc[]

[[exec_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _exec.conf_:

[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command     | Description
| command | /set exec.command.* | Options for commands.
| color   | /set exec.color.*   | Colors.
|===

Options:

include::autogen/user/exec_options.adoc[]

[[fifo_plugin]]
=== Fifo

È possibile controllare da remoto WeeChat, inviando comandi o del testo ad una
pipe FIFO (se l'opzione "fifo.file.enabled" è abilitata, e lo è per default).

// TRANSLATION MISSING
The FIFO pipe is located in _~/.weechat/_ and is called _weechat_fifo_ by default.

La sintassi per i comandi/testo della pipe FIFO è una delle seguenti:

....
  plugin.buffer *testo o comando qui
  *testo o comando qui
....

Alcuni esempi:

// TRANSLATION MISSING
* Change nick on IRC server freenode to "newnick":

----
$ echo 'irc.server.freenode */nick newnick' >~/.weechat/weechat_fifo
----

// TRANSLATION MISSING
* Send a message on IRC #weechat channel:

----
$ echo 'irc.freenode.#weechat *hello!' >~/.weechat/weechat_fifo
----

// TRANSLATION MISSING
* Send a message on current buffer:

----
$ echo '*hello!' >~/.weechat/weechat_fifo
----

* Inviare due comandi per scaricare/caricare gli script Python (è necessario
  separarli con "\n"):

----
$ printf '%b' '*/python unload\n*/python autoload\n' >~/.weechat/weechat_fifo
----

[[fifo_commands]]
==== Comandi

include::autogen/user/fifo_commands.adoc[]

[[fifo_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _fifo.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command  | Description
| file    | /set fifo.file.* | FIFO pipe control.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/fifo_options.adoc[]

[[fset_plugin]]
=== Fset

// TRANSLATION MISSING
Fast Set plugin displays a list of options in a buffer, and helps to set WeeChat
and plugin options.

[[fset_commands]]
==== Comandi

include::autogen/user/fset_commands.adoc[]

[[fset_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _fset.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command    | Description
| color   | /set fset.color.*  | Colors.
| format  | /set fset.format.* | Formats used to display list of options.
| look    | /set fset.look.*   | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/fset_options.adoc[]

[[irc_plugin]]
=== IRC

Il plugin IRC è realizzato per chattare tramite protocollo IRC con altre persone.

È multi-server, ed offre tutti i comandi IRC supportati inclusi la chat DCC ed il
trasferimento file (tramite plugin xfer, consultare <<xfer_plugin,plugin Xfer>>).

[[irc_command_line_options]]
==== Opzioni a riga di comando

È possibile fornire un URL per uno o più server IRC, come segue:

----
irc[6][s]://[nick[:password]@]irc.esempio.org[:porta][/#canale][,#canale[...]]
----

Esempio per entrare in _#weechat_ e _#tizio_ sul server _chat.freenode.net_,
porta predefinita (6667), con il nick _caio_:

----
$ weechat irc://caio@chat.freenode.net/#weechat,#tizio
----

[[irc_ssl_certificates]]
==== Certificati SSL

Al momento della connessione al server IRC con SSL, WeeChat verifica in
maniera predefinita che la connessione sia completamente fidata.

Esistono alcune opzioni per controllare la connessione SSL:

weechat.network.gnutls_ca_file::
    path del file con il certificato delle autorità (predefinito: "%h/ssl/CAs.pem")

irc.server.xxx.ssl_cert::
    file del certificato SSL usato per identificare automaticamente il proprio
    nick ad esempio CertFP su oftc (a seguire)

irc.server.xxx.ssl_dhkey_size::
    dimensione della chiave usata durante lo Scambio Chiavi Diffie-Hellman
    (predefinita; 2048)

irc.server.xxx.ssl_verify::
    verifica che la connessione SSL sia totalmente fidata (opzione attivata
    in maniera predefinita)

[NOTE]
L'opzione "ssl_verify" è attivata per default, in questo modo la verifica è rigorosa
e potrebbe fallire, anche se funziona senza problemi con versioni precedenti
la 0.3.1.

[[irc_connect_oftc_with_certificate]]
===== Primo esempio: connessione a otfc e verifica del certificato

* Importare certificati nella shell:

----
$ mkdir -p ~/.weechat/ssl
$ wget -O ~/.weechat/ssl/CAs.pem https://www.spi-inc.org/ca/spi-cacert.crt
----

// TRANSLATION MISSING
[NOTE]
E possibile concatenare più certificati nel file CAs.pem.

// TRANSLATION MISSING
* In WeeChat, with "oftc" server already added:

----
/connect oftc
----

[[irc_connect_oftc_with_certfp]]
===== Secondo esempio: connessione a otfc con CertFP

* Creare un certificato nella shell:

----
$ mkdir -p ~/.weechat/ssl
$ cd ~/.weechat/ssl
$ openssl req -nodes -newkey rsa:2048 -keyout nick.pem -x509 -days 365 -out nick.pem
----

// TRANSLATION MISSING
* In WeeChat, with "oftc" server already added:

----
/set irc.server.oftc.ssl_cert "%h/ssl/nick.pem"
/connect oftc
/msg nickserv cert add
----

Per maggiori informazioni consultare https://www.oftc.net/NickServ/CertFP

[[irc_sasl_authentication]]
==== Autenticazione SASL

// TRANSLATION MISSING
WeeChat supports SASL authentication, using different mechanisms:

// TRANSLATION MISSING
* _plain_: password in chiaro (default)
// TRANSLATION MISSING
* _ecdsa-nist256p-challenge_: challenge with public/private key
* _external_: certificato SSL da lato client
// TRANSLATION MISSING
* _dh-blowfish_: blowfish encrypted password (*insecure*, not recommended)
// TRANSLATION MISSING
* _dh-aes_: AES encrypted password (*insecure*, not recommended)

Le opzioni nel server sono:

// TRANSLATION MISSING
* _sasl_mechanism_: meccanismo da usare (see above)
* _sasl_timeout_: timeout (in secondi) per l'autenticazione
// TRANSLATION MISSING
* _sasl_fail_: action to perform if authentication fails
* _sasl_username_: nome utente (nick)
* _sasl_password_: password
// TRANSLATION MISSING
* _sasl_key_: file with ECc private key (for mechanism
  _ecdsa-nist256p-challenge_)

// TRANSLATION MISSING
[[irc_sasl_ecdsa_nist256p_challenge]]
===== SASL ECDSA-NIST256P-CHALLENGE

You must generate a private key in order to authentify with the
ECDSA-NIST256P-CHALLENGE mechanism (no password is required on connection).

You can generate the key with this command:

----
$ openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem
----

Get the public key (encoded as base64) with this command:

----
$ openssl ec -noout -text -conv_form compressed -in ~/.weechat/ecdsa.pem | grep '^pub:' -A 3 | tail -n 3 | tr -d ' \n:' | xxd -r -p | base64
----

Connect to the server, identify (for example with "nickserv identify") and set
your public key in your account, using nickserv (replace the base64 value with
your public key):

----
/connect freenode
/msg nickserv identify your_password
/msg nickserv set pubkey Av8k1FOGetUDq7sPMBfufSIZ5c2I/QYWgiwHtNXkVe/q
----

Configure the SASL options in the server:

----
/set irc.server.freenode.sasl_mechanism ecdsa-nist256p-challenge
/set irc.server.freenode.sasl_username "your_nickname"
/set irc.server.freenode.sasl_key "%h/ecdsa.pem"
----

Reconnect to the server:

----
/reconnect freenode
----

[[irc_tor_freenode]]
==== Connessione a Freenode con TOR/SASL

Oltre ad SSL, i server Freenode supportano connessioni con TOR
(https://www.torproject.org), una rete di tunnel virtuali che consente ad
utenti e gruppi di migliorare la propria privacy e la sicurezza su Internet.

Il primo passo consiste nell'installare TOR. Per Debian (e derivate):

----
$ sudo apt-get install tor
----

In WeeChat è necessario creare un proxy socks5 per il servizio TOR (nome
host/IP e porta dipendono dalla propria configurazione di TOR):

----
/proxy add tor socks5 127.0.0.1 9050
----

// TRANSLATION MISSING
Now, add a new server, for example:

----
/server add freenode-tor freenodeok2gncmy.onion
----

Impostare il proxy per TOR:

----
/set irc.server.freenode-tor.proxy "tor"
----

// TRANSLATION MISSING
Set SASL authentication with ECDSA-NIST256P-CHALLENGE (see the chapter
<<irc_sasl_ecdsa_nist256p_challenge,SASL ECDSA-NIST256P-CHALLENGE>> to generate
a private key):

----
/set irc.server.freenode-tor.sasl_mechanism ecdsa-nist256p-challenge
/set irc.server.freenode-tor.sasl_username "your_nickname"
/set irc.server.freenode-tor.sasl_key "%h/ecdsa.pem"
----

E alla fine, connettersi al server:

----
/connect freenode-tor
----

Per maggiori informazioni su Freenode e TOR:
https://freenode.net/kb/answer/chat#accessing-freenode-via-tor

[[irc_smart_filter_join_part_quit]]
==== Filtro smart per i messaggi di entrata/uscita/disconnessione

Un filtro smart è disponibile per filtrare i messaggi di
entrata/uscita/disconnessione quando il nick non ha detto nulla durante
gli ultimi X minuti sul canale

Il filtro smart è abilitato per default, ma è necessario aggiungere un filtro
per nascondere le righe sul buffer, per esempio:

----
/filter add irc_smart * irc_smart_filter *
----

È possibile creare il filtro solo per un canale o per i canali che iniziano con
lo stesso nome (consultare `/help filter`):

----
/filter add irc_smart_weechat irc.freenode.#weechat irc_smart_filter *
/filter add irc_smart_weechats irc.freenode.#weechat* irc_smart_filter *
----

È possibile nascondere solo i messaggi di entrata o di
uscita/disconnessione con le seguenti opzioni:

----
/set irc.look.smart_filter_join on
/set irc.look.smart_filter_quit on
----

È possibile impostare un ritardo (in minuti):

----
/set irc.look.smart_filter_delay 5
----

Se un nick non ha parlato durante gli ultimi 5 minuti, i suoi ingressi e/o
uscite/disconnessioni verranno nascosti sul canale.

[[irc_ctcp_replies]]
==== Risposte CTCP

È possibile personalizzare le risposte CTCP, o bloccare alcune richieste CTCP
(non rispondere).

Ad esempio, per personalizzare la richiesta CTCP "VERSIONE", utilizzare il
seguente comando:

----
/set irc.ctcp.version "Uso WeeChat $version, fico!"
----

Se si desidera bloccare CTCP "VERSIONE" (non rispondere ad una query),
allora basta impostare una stringa vuota:

----
/set irc.ctcp.version ""
----

Anche un CTCP sconosciuto può essere personalizzato, per esempio si
può rispondere "BLABLA":

----
/set irc.ctcp.blabla "Questa è la mia risposta a CTCP BLABLA"
----

È possibile personalizzare CTCP per un solo server, utilizzando il suo nome
interno prima del nome CTCP:

----
/set irc.ctcp.freenode.version "WeeChat $version (per freenode)"
----

Se si desidera ripristinare la risposta CTCP standard, allora disabilitare
l'opzione:

----
/unset irc.ctcp.version
----

I codici seguenti possono essere utilizzati nelle stringhe e vengono estese
automaticamente da WeeChat quando si risponde alle CTCP

// TRANSLATION MISSING ($versiongit + $git + $username (name))
[width="100%",cols="2l,4,8",options="header"]
|===
| Codice       | Descrizione                             | Valore/esempio
| $clientinfo  | Elenco di CTCP supportate               | `ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION`
| $version     | Versione di WeeChat                     | `0.4.0-dev`
| $versiongit  | Versione di WeeChat + git version ^(1)^ | `0.4.0-dev (git: v0.3.9-104-g7eb5cc4)`
| $git         | Git version ^(1)^                       | `v0.3.9-104-g7eb5cc4`
| $compilation | Data di compilazione di WeeChat         | `Dec 16 2012`
| $osinfo      | Informazioni sull'OS                    | `Linux 2.6.32-5-amd64 / x86_64`
| $site        | Sito di WeeChat                         | `https://weechat.org/`
| $download    | Sito di WeeChat, pagina di download     | `https://weechat.org/download`
| $time        | Data/ora correnti                       | `Sun, 16 Dec 2012 10:40:48 +0100`
| $username    | Nome utente sul server IRC              | `name`
| $realname    | Nome reale sul server IRC               | `John Doe`
|===

// TRANSLATION MISSING
[NOTE]
^(1)^ The git version is the output of command `git describe`. It is known only
if WeeChat has been compiled inside the git repository and if git was installed.

Se le opzioni CTCP non sono definite (comportamento predefinito),
le risposte CTCP sono:

// TRANSLATION MISSING ($username (name))
[width="100%",cols="2,4,8",options="header"]
|===
| CTCP       | Formato risposta                     | Esempio
| CLIENTINFO | `$clientinfo`                        | `ACTION DCC CLIENTINFO FINGER PING SOURCE TIME USERINFO VERSION`
| FINGER     | `WeeChat $versiongit`                | `WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4)`
| SOURCE     | `$download`                          | `https://weechat.org/download`
| TIME       | `$time`                              | `Sun, 16 Dec 2012 10:40:48 +0100`
| USERINFO   | `$username ($realname)`              | `name (John Doe)`
| VERSION    | `WeeChat $versiongit ($compilation)` | `WeeChat 0.4.0-dev (git: v0.3.9-104-g7eb5cc4) (Dec 16 2012)`
|===

[[irc_target_buffer]]
==== Buffer di destinazione per i messaggi IRC

È possibile personalizzare il buffer di destinazione per i messaggi IRC
(buffer usato per visualizzare messaggi) con l'opzione `+irc.msgbuffer.*+`.

Per alcuni messaggi IRC (elenco in basso), si possono usare i seguenti
valori:

current::
    buffer attivo (se è il buffer IRC, oppure sul buffer del server, come
    predefinito)

private::
    buffer privato per il nick, o il buffer corrente se non trovato
    (in base all'opzione _irc.look.msgbuffer_fallback_)

server::
    buffer del server

weechat::
    Il buffer "core" di WeeChat

Quando l'opzione non è impostata (default), WeeChat sceglie il buffer
appropriato, di solito quello del server o del canale.

Ecco una lista incompleta dei messaggi IRC o degli alias che è possibile
personalizzare:

[width="60%",cols="^1m,^3m,8",options="header"]
|===
| messaggio | alias         | descrizione
| error     |               | errore
| invite    |               | invitato su un canale
| join      |               | ingresso nel canale
| kick      |               | kick
| kill      |               | kill
| mode      |               | mode
| notice    |               | notifica
| part      |               | part
| quit      |               | quit
| topic     |               | topic
| wallops   |               | wallops
|           | ctcp          | ctcp (inviato o ricevuto, in un messaggio privato o di notifica)
| 221       |               | stringa modalità utente
| 275       | whois         | whois (connessione sicura)
| 301       | whois         | whois (assente)
| 303       |               | ison
| 305       | unaway        | presente
| 306       | away          | assente
| 307       | whois         | whois (nick registrato)
| 310       | whois         | whois (modalità aiuto)
| 311       | whois         | whois (utente)
| 312       | whois         | whois (server)
| 313       | whois         | whois (operatore)
| 314       | whowas        | whowas
| 315       | who           | who (fine)
| 317       | whois         | whois (inattività)
| 318       | whois         | whois (fine)
| 319       | whois         | whois (canali)
| 320       | whois         | whois (utente identificato)
| 321       | list          | list (inizio)
| 322       | list          | list (canale)
| 323       | list          | list (fine)
| 326       | whois         | whois (con privilegi di operatore)
| 327       | whois         | whois (host)
| 328       |               | URL del canale
| 329       |               | data di creazione del canale
| 330       | whois         | whois (loggato come)
| 331       |               | nessun argomento per il canale
| 332       |               | argomento del canale
| 333       |               | informazioni sull'argomento
| 335       | whois         | whois (è un bot su)
| 338       | whois         | whois (host)
| 341       |               | invito
| 343       | whois         | whois (è opered come)
| 344       | reop          | reop sul canale
| 345       | reop          | reop sul canale (fine)
| 346       | invitelist    | lista di inviti
| 347       | invitelist    | lista di inviti (fine)
| 348       | exceptionlist | lista di eccezioni
| 349       | exceptionlist | lista di eccezioni (fine)
| 351       |               | versione del server
| 352       | who           | who
| 353       | names         | elenco di utenti su un canale
| 366       | names         | fine dell'elenco /names
| 367       | banlist       | elenco dei ban
| 368       | banlist       | fine della lista dei ban
| 369       | whowas        | whowas (fine)
| 378       | whois         | whois (connesso da)
| 379       | whois         | whois (usa le modalità)
// TRANSLATION MISSING
| 401       | whois         | no such nick/channel
// TRANSLATION MISSING
| 402       | whois         | no such server
| 432       |               | nick errato
| 433       |               | nick già utilizzato
| 438       |               | non autorizzato a cambiare nick
| 671       | whois         | whois (connessione sicura)
// TRANSLATION MISSING
| 728       | quietlist     | quiet list
// TRANSLATION MISSING
| 729       | quietlist     | end of quiet list
// TRANSLATION MISSING
| 732       | monitor       | list of monitored nicks
// TRANSLATION MISSING
| 733       | monitor       | list of monitored nicks (end)
| 901       |               | ora si è loggati
|===

Anche altri comandi numerici possono essere personalizzati.

Il messaggio può essere preceduto dal nome del server per essere più
precisi (ad esempio: `freenode.whois`).

Alcuni esempi:

* visualizza il risultato di `/whois` su un buffer privato:

----
/set irc.msgbuffer.whois private
----

* ripristina il buffer predefinito per il whois (buffer del server):

----
/unset irc.msgbuffer.whois
----

* visualizza inviti sul buffer corrente, solo per il server "freenode":

----
/set irc.msgbuffer.freenode.invite current
----

* visualizza messaggio "303" (ison) sul buffer "core" di WeeChat:

----
/set irc.msgbuffer.303 weechat
----

[[irc_commands]]
==== Comandi

include::autogen/user/irc_commands.adoc[]

[[irc_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _irc.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section        | Control command                | Description
| look           | /set irc.look.*                | Look and feel.
| color          | /set irc.color.*               | Colors.
| network        | /set irc.network.*             | Network options.
| msgbuffer      | /set irc.msgbuffer.*           | <<irc_target_buffer,Buffer di destinazione per i messaggi IRC>> (options can be added/removed in section).
| ctcp           | /set irc.ctcp.*                | <<irc_ctcp_replies,Risposte CTCP>> (options can be added/removed in section).
| ignore         | <<command_irc_ignore,/ignore>> | Ignore people.
| server_default | /set irc.server_default.*      | Default values for servers (used when options in server are not defined).
| server         | <<command_irc_server,/server>> +
                   /set irc.server.*              | Servers.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/irc_options.adoc[]

[[logger_plugin]]
=== Logger

Il plugin Logger consente di salvare il contenuto dei buffer su file, con
opzioni a proposito su cosa e come viene salvato.

[[logger_log_levels]]
==== Livelli di log

Il logging viene effettuato con un livello per ogni buffer. Il livello
predefinito è il 9 (registra tutti i messaggi visualizzati sul buffer).
È possibile cambiare il livello per un buffer, oppure per un gruppo di buffer.

I livelli possibili sono da 0 a 9. Zero vuol dire "non registrare nulla" mentre
9 "registra tutto".

I plugin utilizzano livelli diversi per i messaggi visualizzati.
Il plugin IRC usa i seguenti livelli:

* livello 1: messaggio da un utente (su canale o privato)
* livello 2: cambio nick (proprio o di qualcun altro)
* livello 3: ogni messaggio del server (esclui entrata/uscita/disconnessione)
* livello 4: messaggio del server entrata/uscita/disconnessione

Se viene impostato il livello 3 per un canale IRC, WeeChat registrerà
tutti i messaggi, ma non quelli di entrata/uscita/disconnessione.

Alcuni esempi:

* imposta il livello 3 per il canale IRC #weechat:

----
/set logger.level.irc.freenode.#weechat 3
----

* set level 3 for freenode server buffer:

----
/set logger.level.irc.server.freenode 3
----

* imposta il livello 3 per tutti i canali sul server freenode:

----
/set logger.level.irc.freenode 3
----

* imposta il livello 2 per tutti i buffer IRC:

----
/set logger.level.irc 2
----

[[logger_filenames_masks]]
==== Mask per il nome file

È possibile definire un mask per il nome del file di ogni buffer, ed utilizzare
le variabili buffer locali per costruire il nome del file. Per visualizzare le
variabili locali per il buffer corrente:

----
/buffer localvar
----

Ad esempio, sul buffer "irc.freenode.#weechat", WeeChat cercherà un mask con il
nome dell'opzione, in quest'ordine:

----
logger.mask.irc.freenode.#weechat
logger.mask.irc.freenode
logger.mask.irc
logger.file.mask
----

Ciò vuol dire che si hanno dei mask specifici per alcuni server
IRC ("logger.mask.irc.freenode") o per un plugin ("logger.mask.irc").

[[logger_files_by_date]]
===== File di log per data

Per avere file di log per data, è possibile usare specificatori data/ora
nei mask (consultare `man stfrtime` per i formati), ad esempio:

----
/set logger.file.mask "%Y/%m/$plugin.$name.weechatlog"
----

Si avranno i seguenti file:

....
~/.weechat/
    |--- logs/
        |--- 2010/
            |--- 11/
            |       irc.server.freenode.weechatlog
            |       irc.freenode.#weechat.weechatlog
        |--- 2010/
            |--- 12/
            |       irc.server.freenode.weechatlog
            |       irc.freenode.#weechat.weechatlog
....

[[logger_irc_files_by_server_channel]]
===== File di log IRC per server e canale

Se si desidera avere una directory per il server IRC ed una per il canale
al suo interno:

----
/set logger.mask.irc "irc/$server/$channel.weechatlog"
----

Si avranno i seguenti file:

....
~/.weechat/
    |--- logs/
        |--- irc/
            |--- freenode/
            |       freenode.weechatlog
            |       #weechat.weechatlog
            |       #mychan.weechatlog
            |--- oftc/
            |       oftc.weechatlog
            |       #chan1.weechatlog
            |       #chan2.weechatlog
....

[[logger_commands]]
==== Comandi

include::autogen/user/logger_commands.adoc[]

[[logger_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _logger.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command     | Description
| look    | /set logger.look.*  | Look and feel.
| color   | /set logger.color.* | Colors.
| file    | /set logger.file.*  | Options for log files.
| level   | /set logger.level.* | Log level by buffer (options can be added/removed in section).
| mask    | /set logger.mask.*  | Filename mask by buffer (options can be added/removed in section).
|===

// TRANSLATION MISSING
Options:

include::autogen/user/logger_options.adoc[]

[[relay_plugin]]
=== Relay

Il plugin Relay viene utilizzato per inoltrare i dati via rete, facendo uso di
protocolli differenti:

* _irc_: proxy IRC: usato per condividere le connessioni ai server IRC con uno
  o più client IRC
* _weechat_: protocollo usato dalle interfacce remote per mostrare ed interagire
  con WeeChat, ad esempio:
** Glowing Bear (HTML5): https://www.glowing-bear.org/
** QWeeChat (Qt): https://weechat.org/download
** WeeChat-Android (Android): https://github.com/ubergeek42/weechat-android
** weechat.el (Emacs): https://github.com/the-kenny/weechat.el
** WeeCloud (JavaScript): https://github.com/eirikb/weecloud

// TRANSLATION MISSING
[[relay_password]]
==== Password

It is highly recommended to set a password for relay, with command:

----
/set relay.network.password "miapass"
----

This password is used for _irc_ and _weechat_ protocols.

// TRANSLATION MISSING
[[relay_totp]]
==== TOTP

TOTP (Time-based One-Time Password) can be used as secondary authentication
factor for _weechat_ protocol, in addition to the password.

This is optional and increases the security level.

One-time passwords can be generated with applications, for example:

* FreeOTP:
  https://play.google.com/store/apps/details?id=org.fedorahosted.freeotp[Android],
  https://itunes.apple.com/fr/app/freeotp-authenticator/id872559395[iOS]
  (https://freeotp.github.io/[website])
* Google Authenticator:
  https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2[Android],
  https://itunes.apple.com/fr/app/google-authenticator/id388497605[iOS]

The TOTP secret must be set in WeeChat and the application used to generate
one-time passwords.

It must be a string encoded in base32, with only letters and digits from 2 to 7,
for example:

----
/set relay.network.totp_secret "secretpasswordbase32"
----

[[relay_ssl]]
==== SSL

È possibile usare SSL creando un certificato e una chiave privata, e usando il
prefisso "ssl." nel nome del protocollo.

Il file predefinito per il certificato/chiave è _~/.weechat/ssl/relay.pem_
(opzione <<option_relay.network.ssl_cert_key,relay.network.ssl_cert_key>>).

È possibile creare un certificato e una chiave privata con i seguenti comandi:

----
$ mkdir -p ~/.weechat/ssl
$ cd ~/.weechat/ssl
$ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out relay.pem
----

Se WeeChat è già in esecuzione, è possibile ricaricare il certificato e la
chiave privata con il comando:

----
/relay sslcertkey
----

// TRANSLATION MISSING
[[relay_irc_proxy]]
==== Proxy IRC

The Relay plugin can act as an IRC proxy: it will simulate an IRC server, and
you can connect to WeeChat with any other IRC client (including WeeChat itself).

You can define one port by IRC server, or one generic port for all servers.

When using one port for all servers, the client must send the internal name of
server in the IRC "PASS" command, with this format:

----
PASS server:miapass
----

Example: IRC proxy with SSL for any server (client will choose):

----
/relay add ssl.irc 8000
----

Example: IRC proxy without SSL only for server "freenode":

----
/relay add irc.freenode 8000
----

Now you can connect on port 8000 with any IRC client using server password
"miapass" (or "freenode:miapass" if no server was specified in the relay).

[[relay_weechat_protocol]]
==== Protocollo WeeChat

Il plugin Relay può inviare dati alle interfacce remote usando il protocollo
WeeChat.

// TRANSLATION MISSING
You can connect with a remote interface, see the list in <<relay_plugin>>.

[IMPORTANT]
// TRANSLATION MISSING
WeeChat itself can NOT connect to another WeeChat with this protocol.

Ad esempio:

----
/relay add weechat 9000
----

Ora è possibile connettersi sulla porta 9000 con un'interfaccia remota usando la
password "miapass".

// TRANSLATION MISSING
[[relay_websocket]]
==== WebSocket

WebSocket protocol (https://tools.ietf.org/html/rfc6455[RFC 6455]) is supported
in Relay plugin for all protocols.

The WebSocket handshake is automatically detected and socket becomes ready for
WebSocket if required headers are found in handshake and if origin is allowed
(see option
<<option_relay.network.websocket_allowed_origins,relay.network.websocket_allowed_origins>>).

A WebSocket can be opened in a HTML5 with a single line of JavaScript:

[source,js]
----
websocket = new WebSocket("ws://server.com:9000/weechat");
----

The port (9000 in example) is the port defined in Relay plugin.
The URI must always end with "/weechat" (for _irc_ and _weechat_ protocols).

[[relay_commands]]
==== Comandi

include::autogen/user/relay_commands.adoc[]

[[relay_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _relay.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command                    | Description
| look    | /set relay.look.*                  | Look and feel.
| color   | /set relay.color.*                 | Colors.
| network | /set relay.network.*               | Network options.
| irc     | /set relay.irc.*                   | Options specific to irc protocol (irc proxy).
| port    | <<command_relay_relay,/relay add>> +
            /set relay.port.*                  | Ports used for relay (irc and weechat protocols) (options can be added/removed in section).
|===

// TRANSLATION MISSING
Options:

include::autogen/user/relay_options.adoc[]

// TRANSLATION MISSING
[[scripts_plugins]]
=== Scripts

WeeChat fornisce 8 plugin per lo scripting: Python, Perl, Ruby, Lua, Tcl, Guile
(scheme), JavaScript, PHP.
Questi plugin possono caricare, eseguire e scaricare gli script per questi
linguaggi.

// TRANSLATION MISSING
Another plugin called "script" is a script manager and is used to load/unload
scripts of any language, and install/remove scripts of WeeChat scripts
repository, which are visible at this URL: https://weechat.org/scripts

Per maggiori informazioni su come scrivere gli script, o le API WeeChat
per gli script, consultare la link:weechat_scripting.it.html[Guida allo Scripting di WeeChat].

[[script_commands]]
==== Comandi Script

include::autogen/user/script_commands.adoc[]

[[python_commands]]
==== Comandi Python

include::autogen/user/python_commands.adoc[]

[[perl_commands]]
==== Comandi Perl

include::autogen/user/perl_commands.adoc[]

[[ruby_commands]]
==== Comandi Ruby

include::autogen/user/ruby_commands.adoc[]

[[lua_commands]]
==== Comandi Lua

include::autogen/user/lua_commands.adoc[]

[[tcl_commands]]
==== Comandi Tcl

include::autogen/user/tcl_commands.adoc[]

[[guile_commands]]
==== Comandi Guile

include::autogen/user/guile_commands.adoc[]

[[javascript_commands]]
==== Comandi JavaScript

include::autogen/user/javascript_commands.adoc[]

[[php_commands]]
==== Comandi PHP

include::autogen/user/php_commands.adoc[]

// TRANSLATION MISSING
[[script_options]]
==== Script options

// TRANSLATION MISSING
Sections in file _script.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command       | Description
| look    | /set script.look.*    | Look and feel.
| color   | /set script.color.*   | Colors.
| scripts | /set script.scripts.* | Options for download of scripts.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/script_options.adoc[]

// TRANSLATION MISSING
[[python_options]]
==== Python options

// TRANSLATION MISSING
Sections in file _python.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command    | Description
| look    | /set python.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/python_options.adoc[]

// TRANSLATION MISSING
[[perl_options]]
==== Perl options

// TRANSLATION MISSING
Sections in file _perl.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command  | Description
| look    | /set perl.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/perl_options.adoc[]

// TRANSLATION MISSING
[[ruby_options]]
==== Ruby options

// TRANSLATION MISSING
Sections in file _ruby.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command  | Description
| look    | /set ruby.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/ruby_options.adoc[]

// TRANSLATION MISSING
[[lua_options]]
==== Lua options

// TRANSLATION MISSING
Sections in file _lua.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command | Description
| look    | /set lua.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/lua_options.adoc[]

// TRANSLATION MISSING
[[tcl_options]]
==== Tcl options

// TRANSLATION MISSING
Sections in file _tcl.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command | Description
| look    | /set tcl.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/tcl_options.adoc[]

// TRANSLATION MISSING
[[guile_options]]
==== Guile options

// TRANSLATION MISSING
Sections in file _guile.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command   | Description
| look    | /set guile.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/guile_options.adoc[]

// TRANSLATION MISSING
[[javascript_options]]
==== Javascript options

// TRANSLATION MISSING
Sections in file _javascript.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command        | Description
| look    | /set javascript.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/javascript_options.adoc[]

// TRANSLATION MISSING
[[php_options]]
==== PHP options

// TRANSLATION MISSING
Sections in file _php.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command | Description
| look    | /set php.look.* | Look and feel.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/php_options.adoc[]

[[spell_plugin]]
=== Spell

Il plugin Spell consente di verificare l'ortografia nella riga di comando.
È possibile utilizzare più lingue per buffer.

// TRANSLATION MISSING
Spell checking is disabled by default and can be toggled with key kbd:[Alt+s].

// TRANSLATION MISSING
[[spell_dictionaries]]
==== Dictionaries

Before using spell checking, dictionaries must be defined, either globally or
specific to buffers.

Multiple dictionaries can be used at same time: WeeChat will check words in all
dictionaries.

For example to use English and French:

----
/set spell.check.default_dict "en,fr"
----

It is possible to use a different dictionary on a specific buffer, for example
on a German channel:

----
/spell setdict de
----

// TRANSLATION MISSING
You can also specify a dictionary for a group of buffers, for example English
for all channels on freenode IRC server:

----
/set spell.dict.irc.freenode en
----

For more information, see the command <<command_spell_spell,/spell>>.

[[spell_speller_options]]
==== Opzioni ortografiche

Le opzioni ortografiche possono essere definite aggiungendo opzioni nella
sezione "opzioni" della configurazione di aspell.

Il nome dell'opzione è un parametro di configurazione per aspell. L'elenco
delle opzioni disponibili può essere trovato nel terminale col seguente comando:

----
$ aspell config
----

Ad esempio, per abilitare l'opzione "ignore-case":

----
/set spell.option.ignore-case "true"
----

// TRANSLATION MISSING
[[spell_suggestions]]
==== Suggestions

Suggestions are displayed in a bar item called "spell_suggest". The number of
suggestions is set in option _spell.check.suggestions_.

To enable suggestions you must set option _spell.check.suggestions_ to an
integer ≥ 0 and add the bar item "spell_suggest" to a bar, like _status_.

Example of suggestions with English dictionary (`en`):

....
│[12:55] [6] [irc/freenode] 3:#test(+n){4} [print,prone,prune]                    │
│[@Flashy] prinr █                                                                │
└─────────────────────────────────────────────────────────────────────────────────┘
....

Example of suggestions with English and French dictionaries (`en,fr`):

....
│[12:55] [6] [irc/freenode] 3:#test(+n){4} [print,prone,prune/prime,primer,primé] │
│[@Flashy] prinr █                                                                │
└─────────────────────────────────────────────────────────────────────────────────┘
....

[[spell_commands]]
==== Comandi

include::autogen/user/spell_commands.adoc[]

[[spell_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _spell.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section    | Control command                        | Description
| color      | /set spell.color.*                     | Colors.
| check      | /set spell.check.*                     | Options to control spell checking.
| dict       | <<command_spell_spell,/spell setdict>> +
               /set spell.dict.*                      | Dictionaries used by buffer (options can be added/removed in section).
| look       | /set spell.look.*                      | Look and feel.
| option     | /set spell.option.*                    | <<spell_speller_options,Opzioni ortografiche>> (options can be added/removed in section).
|===

// TRANSLATION MISSING
Options:

include::autogen/user/spell_options.adoc[]

// TRANSLATION MISSING
[[trigger_plugin]]
=== Trigger

Trigger is the Swiss Army knife for WeeChat: it can hook many things (signal,
modifier, print, ...), change the content of data, and execute one or more
commands. A condition can be used to prevent the trigger to run in some
circumstances.

Using triggers require you to know how the signals, modifiers, ... are working.
So you might consider reading the
link:weechat_plugin_api.it.html#hooks[WeeChat plugin API reference / Hooks].

[[trigger_default]]
==== Default triggers

WeeChat creates 5 triggers by default, which can be disabled, updated or
deleted:

* a _beep_ trigger for notifications
* four other triggers to hide passwords on screen

List of default triggers:

[width="100%",cols="5m,3,22",options="header"]
|===
| Name | Hook | Description

| beep | print |
  Beep on highlight/private message.

| cmd_pass | modifier |
  Hide password in commands:
  `pass:[/msg nickserv id\|identify\|set password\|ghost\|release\|regain\|recover]`,
  `pass:[/oper]`,
  `pass:[/quote pass]`,
  `pass:[/set *password*]`,
  `pass:[/secure passphrase\|decrypt\|set]`.

| cmd_pass_register | modifier |
  Hide password in command `pass:[/msg nickserv register]`.

| msg_auth | modifier |
  Hide password in IRC auth message displayed (message received from server
  after the user issued the command).

| server_pass | modifier |
  Hide server password in commands `/server` and `/connect`.
|===

[[trigger_anatomy]]
==== Anatomy of a trigger

A trigger has the following options (names are
`trigger.trigger.<name>.<option>`):

[width="100%",cols="2m,2,10",options="header"]
|===
| Option | Values | Description

| enabled | `on`, `off` |
  When option is `off`, the trigger is disabled and actions are not executed
  any more.

| hook | `signal`, `hsignal`, `modifier`, `line`, `print`, `command`,
  `command_run`, `timer`, `config`, `focus` |
  The hook used in trigger. For more information, see
  link:weechat_plugin_api.it.html#hooks[WeeChat plugin API reference / Hooks].

| arguments | string |
  The arguments for the hook, it depends on the hook type used.

| conditions | string |
  Conditions to execute the trigger; they are evaluated (see command
  <<command_weechat_eval,/eval>>).

| regex | string |
  One or more POSIX extended regular expressions, to change data received in the
  hook callback (and some stuff added by trigger plugin), see
  <<trigger_regex,regular expression>>.

| command | string |
  Command to execute (many commands can be separated by semicolons); it is
  evaluated (see command <<command_weechat_eval,/eval>>).

| return_code | `ok`, `ok_eat`, `error` |
  The return code of callback (default is `ok`, which should be used in almost
  all triggers, the other values are rarely used).

| post_action | `none`, `disable`, `delete` |
  Action to take on the trigger after execution (default is `none` which should
  be used in almost all triggers, the other values are rarely used).
|===

For example, the default _beep_ trigger has following options:

----
trigger.trigger.beep.enabled = on
trigger.trigger.beep.hook = print
trigger.trigger.beep.arguments = ""
trigger.trigger.beep.conditions = "${tg_displayed} && (${tg_highlight} || ${tg_msg_pv})"
trigger.trigger.beep.regex = ""
trigger.trigger.beep.command = "/print -beep"
trigger.trigger.beep.return_code = ok
trigger.trigger.beep.post_action = none
----

[[trigger_execution]]
==== Execution

When a trigger callback is called, following actions are executed, in this
order, if triggers are globally enabled and if the trigger itself is enabled:

. check trigger conditions: if false, exit
. replace text in trigger using regular expression(s)
. execute command(s)
. exit with a return code (except for hooks _modifier_ and _focus_)
. perform post action (if different from `none`).

[[trigger_hook_arguments]]
==== Hook arguments

The arguments depend on the hook used. They are separated by semicolons.

[width="100%",cols="2,6,7,2",options="header"]
|===
| Hook | Arguments | Examples | Documentation (API)

| signal |
  1. signal name (priority allowed) (required) +
  2. signal name (priority allowed) +
  3. ... |
  `+*,irc_in_privmsg+` +
  `+*,irc_in_privmsg;*,irc_in_notice+` +
  `+signal_sigwinch+` |
  link:weechat_plugin_api.it.html#_hook_signal[hook_signal]

| hsignal |
  1. signal name (priority allowed) (required) +
  2. signal name (priority allowed) +
  3. ... |
  `+nicklist_nick_added+` |
  link:weechat_plugin_api.it.html#_hook_hsignal[hook_hsignal]

| modifier |
  1. modifier name (priority allowed) (required) +
  2. modifier name (priority allowed) +
  3. ... |
  `+weechat_print+` +
  `+5000\|input_text_display;5000\|history_add+` |
  link:weechat_plugin_api.it.html#_hook_modifier[hook_modifier]

| line |
  1. buffer type +
  2. buffer name +
  3. tags |
  `+formatted+` +
  `+free+` +
  `+*;irc.freenode.*+` +
  `+*;irc.freenode.#weechat+` +
  `+formatted;irc.freenode.#weechat;irc_notice+` |
  link:weechat_plugin_api.en.html#_hook_line[hook_line]

| print |
  1. buffer name +
  2. tags +
  3. message +
  4. strip colors (0/1) |
  `+irc.freenode.*+` +
  `+irc.freenode.#weechat+` +
  `+irc.freenode.#weechat;irc_notice+` +
  `+*;;;1+` |
  link:weechat_plugin_api.it.html#_hook_print[hook_print]

| command |
  1. command name (priority allowed) (required) +
  2. description +
  3. arguments +
  4. description of arguments +
  5. completion |
  `+test+` +
  `+5000\|test+` |
  link:weechat_plugin_api.it.html#_hook_command[hook_command]

| command_run |
  1. command (priority allowed) (required) +
  2. command (priority allowed) +
  3. ... |
  `+/cmd arguments+` |
  link:weechat_plugin_api.it.html#_hook_command_run[hook_command_run]

| timer |
  1. interval in milliseconds (required) +
  2. alignment on second (default: 0) +
  3. max number of calls (default: 0, which means "no end") |
  `+3600000+` +
  `+60000;0;5+` |
  link:weechat_plugin_api.it.html#_hook_timer[hook_timer]

| config |
  1. option name (priority allowed) (required) +
  2. option name (priority allowed) +
  3. ... |
  `+weechat.look.*+` |
  link:weechat_plugin_api.it.html#_hook_config[hook_config]

| focus |
  1. area name (priority allowed) (required) +
  2. area name (priority allowed) +
  3. ... |
  `+buffer_nicklist+` |
  link:weechat_plugin_api.it.html#_hook_focus[hook_focus]
|===

[[trigger_conditions]]
==== Conditions

The conditions are used to continue processing in trigger, or stop everything.

They are evaluated, and data available in callback can be used
(see <<trigger_callback_data,data in callbacks>> and command
<<command_weechat_eval,/eval>>).

Example: the default _beep_ trigger uses this condition to make a beep only on
highlight or private message:

----
${tg_displayed} && (${tg_highlight} || ${tg_msg_pv})
----

[[trigger_regex]]
==== Regular expression

The regular expression is used to change variables in callback hashtable.

The format is: "/regex/replace" or "/regex/replace/var" (where _var_ is a
variable of the hashtable).

// TRANSLATION MISSING
If _var_ does not exist in the hashtable, it is created automatically with an
empty value. This allows to create custom temporary variables.

If _var_ is not specified, the default variable is used, it depends on hook
type:

[width="100%",cols="2,3,7",options="header"]
|===
| Hook        | Default variable   | Update allowed ^(1)^
| signal      | tg_signal_data     |
| hsignal     |                    |
| modifier    | tg_string          | tg_string
| line        | message            | buffer, buffer_name, y, date, date_printed, str_time, tags, notify_level, highlight, prefix, message
| print       | tg_message         |
| command     | tg_argv_eol1       |
| command_run | tg_command         |
| timer       | tg_remaining_calls |
| config      | tg_value           |
| focus       |                    |
|===

[NOTE]
^(1)^ All variables can be updated in the trigger, but only these variables
have an effect on the value returned by the trigger and used by WeeChat.

Many regular expressions can be separated by a space, for example:
"/regex1/replace1/var1 /regex2/replace2/var2".

The char "/" can be replaced by any char (one or more identical chars).

Matching groups can be used in "replace":

* `+${re:0}+` to `+${re:99}+`: `+${re:0}+` is the whole match, `+${re:1}+` to
  `+${re:99}+` are groups captured
* `+${re:+++}+`: the last match (with highest number)
* `+${hide:c,${re:N}}+`: match "N" with all chars replaced by "c"
  (example: `+${hide:*,${re:2}}+` is the group #2 with all chars replaced by
  `+*+`).

Example: use bold for words between "*":

----
/\*([^ ]+)\*/*${color:bold}${re:1}${color:-bold}*/
----

Example: default trigger _server_pass_ uses this regular expression to hide
password in commands `/server` and `/connect` (chars in passwords are replaced
by `+*+`):

----
==^(/(server|connect) .*-(sasl_)?password=)([^ ]+)(.*)==${re:1}${hide:*,${re:4}}${re:5}
----

[NOTE]
In this example, the delimiter used is "==" because there is a "/" in the
regular expression.

[[trigger_command]]
==== Command

The command is executed after replacement of text with the regular expression.
Many commands can be separated by semicolons.

It is evaluated (see command <<command_weechat_eval,/eval>>) and text replaced
with a regular expression can be used in the command.

Example: default _beep_ trigger uses this command to make a beep (BEL):

----
/print -beep
----

[[trigger_callback_data]]
==== Data in callbacks

Data received in callbacks are stored in hashtables (pointers and strings) and
can be used in following options:

* _conditions_
* _regex_
* _command_

The content of hashtables depend on the hook type.

A convenient way to see data in a trigger is to open trigger monitor buffer,
using the command:

----
/trigger monitor
----

[[trigger_data_signal]]
===== Signal

The "signal" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable       | Type   | Description
| tg_signal      | string | Name of signal.
| tg_signal_data | string | Data sent with the signal.
|===

If the signal contains an IRC message, the message is parsed and following data
is added in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable             | Type    | Description
| irc_server           | pointer | Pointer to IRC server (variables in hdata of type "irc_server" can be used, like `${irc_server.name}`).
| irc_channel          | pointer | Pointer to IRC channel (variables in hdata of type "irc_channel" can be used, like `${irc_channel.name}`).
| server               | string  | Name of server (example: "freenode").
| tags                 | string  | Tags in message (rarely used).
| message_without_tags | string  | Message without tags.
| nick                 | string  | Nick.
| host                 | string  | Hostname.
| command              | string  | IRC command (example: "PRIVMSG", "NOTICE", ...).
| channel              | string  | IRC channel.
| arguments            | string  | Arguments of command (includes value of _channel_).
| text                 | string  | Text (for example user message).
| pos_command          | string  | The index of _command_ in message ("-1" if _command_ was not found).
| pos_arguments        | string  | The index of _arguments_ in message ("-1" if _arguments_ was not found).
| pos_channel          | string  | The index of _channel_ in message ("-1" if _channel_ was not found).
| pos_text             | string  | The index of _text_ in message ("-1" if _text_ was not found).
|===

When the data is a pointer, the variable `tg_signal_data` can be used like this
to read a hdata property (in this example this is a pointer on a buffer):

----
${buffer[${tg_signal_data}].full_name}
----

[[trigger_data_hsignal]]
===== Hsignal

The "hsignal" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable  | Type   | Description
| tg_signal | string | Name of signal.
|===

The hashtable contains all keys/values from hashtable received (type:
string/string).

[[trigger_data_modifier]]
===== Modifier

The "modifier" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable          | Type   | Description
| tg_modifier       | string | Name of modifier.
| tg_modifier_data  | string | Data sent with modifier.
| tg_string         | string | The string that can be modified.
| tg_string_nocolor | string | The string without color codes.
|===

For the _weechat_print_ modifier, variables using message tags are added (see
<<trigger_data_print,hook print>> below), and following variables:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable           | Type    | Description
| buffer             | pointer | Buffer where message is printed.
| tg_plugin          | string  | Plugin of buffer where message is printed.
| tg_buffer          | string  | Full name of buffer where message is printed.
| tg_prefix          | string  | Prefix of message printed.
| tg_prefix_nocolor  | string  | Prefix without color codes.
| tg_message         | string  | Message printed.
| tg_message_nocolor | string  | Message without color codes.
|===

If the modifier contains an IRC message, the message is parsed and extra data is
added in hashtable (see <<trigger_data_signal,hook signal>>).

[[trigger_data_line]]
===== Line

The "line" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable           | Type    | Description
| buffer             | pointer | Buffer.
| buffer_name        | string  | Buffer name.
| buffer_type        | string  | Buffer type ("formatted" or "free").
| y                  | string  | Line number for a buffer with free content (≥ 0), -1 for a buffer with formatted content.
| date               | string  | Line date (timestamp).
| date_printed       | string  | Date when line was displayed (timestamp).
| str_time           | string  | Date for display. It may contain color codes.
| tags               | string  | Tags of message (with comma added at beginning/end of string).
| displayed          | string  | "1" if displayed, "0" if line filtered.
| notify_level       | string  | "0" = low level, "1" = message, "2" = private message, "3" = highlight
| highlight          | string  | "1" if highlight, otherwise "0".
| prefix             | string  | Prefix.
| tg_prefix_nocolor  | string  | Prefix without color codes.
| message            | string  | Message.
| tg_message_nocolor | string  | Message without color codes.
|===

Variables set using tags in message:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable           | Type   | Description
| tg_tags_count      | string | Number of tags in message.
| tg_tag_nick        | string | Nick (from tag "nick_xxx").
| tg_tag_prefix_nick | string | Color of nick in prefix (from tag "prefix_nick_ccc").
| tg_tag_host        | string | User name and host, format: username@host (from tag "host_xxx").
| tg_tag_notify      | string | Notify level (_none_, _message_, _private_, _highlight_).
| tg_notify          | string | Notify level, if different from _none_.
| tg_msg_pv          | string | "1" for a private message, otherwise "0".
|===

[[trigger_data_print]]
===== Print

The "print" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable           | Type    | Description
| buffer             | pointer | Buffer.
| tg_date            | string  | Message date/time (format: `YYYY-MM-DD hh:mm:ss`).
| tg_displayed       | string  | "1" if displayed, "0" if line filtered.
| tg_highlight       | string  | "1" if highlight, otherwise "0".
| tg_prefix          | string  | Prefix.
| tg_prefix_nocolor  | string  | Prefix without color codes.
| tg_message         | string  | Message.
| tg_message_nocolor | string  | Message without color codes.
|===

Variables set using tags in message:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable           | Type   | Description
| tg_tags            | string | Tags of message (with comma added at beginning/end of string).
| tg_tags_count      | string | Number of tags in message.
| tg_tag_nick        | string | Nick (from tag "nick_xxx").
| tg_tag_prefix_nick | string | Color of nick in prefix (from tag "prefix_nick_ccc").
| tg_tag_host        | string | User name and host, format: username@host (from tag "host_xxx").
| tg_tag_notify      | string | Notify level (_none_, _message_, _private_, _highlight_).
| tg_notify          | string | Notify level, if different from _none_.
| tg_msg_pv          | string | "1" for a private message, otherwise "0".
|===

[[trigger_data_command]]
===== Command

The "command" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable     | Type    | Description
| buffer       | pointer | Buffer.
| tg_argvN     | string  | Argument #N.
| tg_argv_eolN | string  | From argument #N until end of arguments.
|===

[[trigger_data_command_run]]
===== Command_run

The "command_run" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable   | Type    | Description
| buffer     | pointer | Buffer.
| tg_command | string  | Command executed.
|===

[[trigger_data_timer]]
===== Timer

The "timer" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable           | Type   | Description
| tg_remaining_calls | string | Number of remaining calls.
| tg_date            | string | Current date/time (format: `YYYY-MM-DD hh:mm:ss`).
|===

[[trigger_data_config]]
===== Config

The "config" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable  | Type   | Description
| tg_option | string | Option.
| tg_value  | string | Value.
|===

[[trigger_data_focus]]
===== Focus

The "focus" callback sets following variables in hashtable:

[width="100%",cols="3m,2,14",options="header"]
|===
| Variable | Type    | Description
| window   | pointer | Window.
| buffer   | pointer | Buffer.
|===

The hashtable contains all keys/values from hashtable received (type:
string/string).

[[trigger_examples]]
==== Examples

[[trigger_example_url_color]]
===== Color for URLs

Display URLs in green:

----
/trigger add url_color modifier weechat_print "${tg_notify}" "==[a-zA-Z0-9_]+://[^ ]+==${color:green}${re:0}${color:reset}=="
----

[NOTE]
The simple regex used to detect URL may not catch well all URLs, but it is
faster than a complex regex.

[[trigger_example_auto_pong]]
===== Auto pong on ping queries

When someone sends a "ping" in a private buffer, this trigger will auto-reply
with `pong`:

----
/trigger add pong print "" "${type} == private && ${tg_message} == ping" "" "pong"
----

[[trigger_example_responsive_layout]]
===== Responsive layout

Following triggers can be used to customize things displayed when the size of
terminal is changed:

----
/trigger add resize_small signal signal_sigwinch "${info:term_width} < 100" "" "/bar hide nicklist"
/trigger add resize_big signal signal_sigwinch "${info:term_width} >= 100" "" "/bar show nicklist"
----

The triggers catch the signal "signal_sigwinch", which is sent by WeeChat when
signal SIGWINCH is received (when terminal size is changed).

The condition with `+${info:term_width}+` checks the width of terminal (you can
also use `+${info:term_height}+` if needed).

In the example, when the terminal becomes small, the nicklist is hidden. And the
bar is restored when the width is greater or equal to 100 chars.

[[trigger_example_config_save]]
===== Automatic save of configuration

You can automatically save configuration files (`+*.conf+`), for example each
hour:

----
/trigger add cfgsave timer 3600000;0;0 "" "" "/mute /save"
----

Arguments for the timer hook are:

* _3600000_: 3600 * 1000 milliseconds, the callback is called each hour
* _0_: alignment on second (not aligned here)
* _0_: max number of calls (0 = no end for the timer)

The command `/mute /save` will silently save configuration files (nothing
displayed on core buffer).

[[trigger_commands]]
==== Comandi

include::autogen/user/trigger_commands.adoc[]

[[trigger_options]]
==== Opzioni

Sections in file _trigger.conf_:

[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command                          | Description
| look    | /set trigger.look.*                      | Look and feel.
| color   | /set trigger.color.*                     | Colors.
| trigger | <<command_trigger_trigger,/trigger add>> +
            <<command_trigger_trigger,/trigger set>> +
            /set trigger.trigger.*                   | Trigger options.
|===

Options:

include::autogen/user/trigger_options.adoc[]

[[xfer_plugin]]
=== Xfer

Il plugin Xfer fornisce:

* chat diretta (tra due host, senza server): per esempio "DCC Chat"
  tramite plugin IRC
* trasferimento file, per esempio "DCC" tramite il plugin IRC

[[xfer_commands]]
==== Comandi

include::autogen/user/xfer_commands.adoc[]

[[xfer_options]]
==== Opzioni

// TRANSLATION MISSING
Sections in file _xfer.conf_:

// TRANSLATION MISSING
[width="100%",cols="3m,6m,16",options="header"]
|===
| Section | Control command     | Description
| look    | /set xfer.look.*    | Look and feel.
| color   | /set xfer.color.*   | Colors.
| network | /set xfer.network.* | Network options.
| file    | /set xfer.file.*    | Options for files sent/received.
|===

// TRANSLATION MISSING
Options:

include::autogen/user/xfer_options.adoc[]

[[support]]
== Supporto

// TRANSLATION MISSING
Before asking for support, be sure you've read documentation and FAQ provided
with WeeChat.

// TRANSLATION MISSING
For support with IRC, on server _chat.freenode.net_:

* official channels (with developers):
** _#weechat_ (English)
** _#weechat-fr_ (French)
* non-official channels:
** _#weechat-de_ (German)
** _#weechat-fi_ (Finlandese)

// TRANSLATION MISSING
For other ways of support, see: https://weechat.org/about/support