File: tigrc.5

package info (click to toggle)
tig 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,188 kB
  • sloc: ansic: 36,941; sh: 10,934; makefile: 394
file content (2871 lines) | stat: -rw-r--r-- 54,249 bytes parent folder | download
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
'\" t
.\"     Title: tigrc
.\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\"      Date: 2025-09-16
.\"    Manual: Tig Manual
.\"    Source: Tig 2.6.0
.\"  Language: English
.\"
.TH "TIGRC" "5" "2025\-09\-16" "Tig 2\&.6\&.0" "Tig Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
tigrc \- Tig configuration file
.SH "SYNOPSIS"
.sp
.nf
\fBset\fR   \fIvariable\fR \fB=\fR \fIvalue\fR
\fBbind\fR  \fIkeymap\fR \fIkey\fR \fIaction\fR
\fBcolor\fR \fIarea\fR \fIfgcolor\fR \fIbgcolor\fR \fI[attributes]\fR
\fBsource\fR \fIpath\fR
.fi
.sp
.SH "DESCRIPTION"
.sp
You can permanently set an option by putting it in the ~/\&.tigrc file\&. The file consists of a series of \fIcommands\fR\&. Each line of the file may contain only one command\&. Commands can span multiple lines if each line is terminated by a backslash (\fI\e\fR) character\&.
.sp
The hash mark (\fI#\fR) is used as a \fIcomment\fR character\&. All text after the comment character to the end of the line is ignored\&. You can use comments to annotate your initialization file\&.
.sp
Certain options can be manipulated at runtime via the option menu\&. In addition, options can also be toggled with the :toggle prompt command or by entering the configuration command into the prompt\&.
.sp
In some environments, a user\(cqs configuration will be stored in the alternate location $XDG_CONFIG_HOME/tig/config\&. For brevity, this document will refer only to ~/\&.tigrc\&.
.SH "GIT CONFIGURATION"
.sp
Alternatively to using ~/\&.tigrc, Tig options can be set by putting them in one of the Git configuration files, which are read by Tig on startup\&. See \fIgit\-config(1)\fR for which files to use\&. The following example show the basic syntax to use for settings, bindings and colors\&.
.sp
.if n \{\
.RS 4
.\}
.nf
[tig] show\-changes = true
[tig "color"] cursor = yellow red bold
[tig "bind"] generic = P parent
.fi
.if n \{\
.RE
.\}
.sp
.sp
In addition to tig\-specific options, the following Git options are read from the Git configuration:
.PP
\fIcolor\&.*\fR
.RS 4
Colors for the various UI types\&. Can be configured via the
\fIgit\-colors\fR
setting\&.
.RE
.PP
\fIcore\&.abbrev\fR
.RS 4
The width of the commit ID\&. See also
\fIid\-width\fR
option\&.
.RE
.PP
\fIcore\&.editor\fR
.RS 4
The editor command\&. Can be overridden by setting TIG_EDITOR or GIT_EDITOR\&.
.RE
.PP
\fIcore\&.worktree\fR
.RS 4
The path to the root of the working tree\&.
.RE
.PP
\fIgui\&.encoding\fR
.RS 4
The encoding to use for displaying of file content\&.
.RE
.PP
\fIi18n\&.commitencoding\fR
.RS 4
The encoding used for commits\&. The default is UTF\-8\&.
.RE
.SH "SET COMMAND"
.sp
A few selective variables can be configured via the set command\&. The syntax is:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBset\fR variables \fB=\fR value
.fi
.if n \{\
.RE
.\}
.sp
.sp
Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
set commit\-order = topo         # Order commits topologically
set git\-colors = no             # Do not read Git\*(Aqs color settings\&.
set horizontal\-scroll = 33%     # Scroll 33% of the view width
set blame\-options = \-C \-C \-C    # Blame lines from other files

# Wrap branch names with () and tags with <>
set reference\-format = (branch) <tag>

# Configure blame view columns using command spanning multiple lines\&.
set blame\-view = \e
        date:default \e
        author:abbreviated \e
        committer:abbreviated \e
        file\-name:auto \e
        id:yes,color \e
        line\-number:yes,interval=5 text
.fi
.if n \{\
.RE
.\}
.sp
.sp
Or in the Git configuration files:
.sp
.if n \{\
.RS 4
.\}
.nf
[tig]
        line\-graphics = no      # Disable graphics characters
        tab\-size = 8            # Number of spaces per tab
.fi
.if n \{\
.RE
.\}
.sp
.sp
The type of variables is either bool, int, string, or mixed\&.
.PP
Valid bool values
.RS 4
To set a bool variable to true use either "1", "true", or "yes"\&. Any other value will set the variable to false\&.
.RE
.PP
Valid int values
.RS 4
A non\-negative integer\&.
.RE
.PP
Valid string values
.RS 4
A string of characters\&. Optionally, use either \*(Aq or " as delimiters\&.
.RE
.PP
Valid mixed values
.RS 4
These values are composites of the above types\&. The valid values are specified in the description\&.
.RE
.SS "Variables"
.sp
The following variables can be set:
.PP
\fIdiff\-options\fR (string)
.RS 4
A space\-separated string of diff options to use in the diff view\&. git\-show(1) is used for formatting and always passes \-\-patch\-with\-stat\&. Can control display of commit header metadata, passing option \-\-format\&. This option overrides any options specified in the TIG_DIFF_OPTS environment variable (described in
\fBtig\fR(1)), but is itself overridden by diff flags given on the command line invocation\&.
.RE
.PP
\fIblame\-options\fR (string)
.RS 4
A space\-separated string of default blame options\&. Can be used for telling git\-blame(1) how to detect the origin of lines\&. The options are ignored when Tig is started in blame mode and given blame options on the command line\&.
.RE
.PP
\fIlog\-options\fR (string)
.RS 4
A space\-separated string of default options that should be passed to the git\-log(1) command used by the log view\&. Options can be overridden by command line options\&. Used internally override custom \(oqpretty\&.format\(cq settings that break the log view\&.
.RE
.PP
\fImain\-options\fR (string)
.RS 4
A space\-separated string of default options that should be passed to the git\-log(1) command used by the main view\&. Options can be overridden by command line options\&.
.RE
.PP
\fIreference\-format\fR (string)
.RS 4
A space\-separated string of format strings used for formatting reference names\&. Wrap the name of the reference type with the characters you would like to use for formatting, e\&.g\&.
[tag]
and
<remote>\&. If no format is specified for
local\-tag, the format for
tag
is used\&. Similarly, if no format is specified for
tracked\-remote, the format for
remote
is used, and if no format is specified for any other reference type, the format for
branch
is used\&. Prefix with
hide:
to not show that reference type, e\&.g\&.
hide:remote\&. Supported reference types are:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
head : The current HEAD\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
tag : An annotated tag\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
local\-tag : A lightweight tag\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
remote : A remote\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
tracked\-remote : The remote tracked by current HEAD\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
replace : A replaced reference\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
branch : A branch\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
stash : The stash\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
note : Notes\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
prefetch : Refs prefetched by
git maintenance\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
other : Any other reference\&.
.RE
.RE
.PP
\fIline\-graphics\fR (mixed) [ascii|default|utf\-8|auto|<bool>]
.RS 4
What type of character graphics for line drawing\&. "auto" means "utf\-8" if the locale is UTF\-8, "default" otherwise\&.
.RE
.PP
\fItruncation\-delimiter\fR (mixed) [utf\-8|<string>]
.RS 4
A single character to draw where columns are truncated\&. The default is "~"\&. The special value "utf\-8" refers to the character "\&..." ("Midline Horizontal Ellipsis")\&.
.RE
.PP
\fIhorizontal\-scroll\fR (mixed)
.RS 4
Interval to scroll horizontally in each step\&. Can be specified either as the number of columns, e\&.g\&.
\fI5\fR, or as a percentage of the view width, e\&.g\&.
\fI33%\fR, where the maximum is 100%\&. For percentages it is always ensured that at least one column is scrolled\&. The default is to scroll
\fI50%\fR
of the view width\&.
.RE
.PP
\fIgit\-colors\fR (list)
.RS 4
A space\-separated list of "key=value" pairs where the key is a Git color name and the value is a Tig color name, e\&.g\&. "branch\&.current=main\-head" and "grep\&.filename=grep\&.file"\&. Set to "no" to disable\&.
.RE
.PP
\fIshow\-notes\fR (mixed) [<reference>|<bool>]
.RS 4
Whether to show notes for a commit\&. When set to a note reference the reference is passed to
git show \-\-notes=\&. Notes are enabled by default\&.
.RE
.PP
\fIshow\-changes\fR (bool)
.RS 4
Whether to show staged and unstaged changes in the main view\&.
.RE
.PP
\fIshow\-untracked\fR (bool)
.RS 4
Whether to show also untracked changes in the main view\&.
.RE
.PP
\fIvertical\-split\fR (mixed) [auto|<bool>]
.RS 4
Whether to split the view horizontally or vertically\&. "auto" (which is the default) means that it will depend on the window dimensions\&. When true vertical orientation is used, and false sets the orientation to horizontal\&.
.RE
.PP
\fIsplit\-view\-height\fR (mixed)
.RS 4
The height of the bottom view in a horizontally split display\&. Can be specified either as the number of rows, e\&.g\&.
\fI5\fR, or as a percentage of the view height, e\&.g\&.
\fI80%\fR, where the maximum is 100%\&. It is always ensured that the smaller of the views is at least four rows high\&. The default is
\fI67%\fR\&.
.RE
.PP
\fIsplit\-view\-width\fR (mixed)
.RS 4
Width of the right\-most view in a vertically split display\&. Can be specified either as the number of column, e\&.g\&.
\fI5\fR, or as a percentage of the view width, e\&.g\&.
\fI80%\fR, where the maximum is 100%\&. It is always ensured that the smaller of the views is at least four columns wide\&. The default is
\fI50%\fR\&.
.RE
.PP
\fIstatus\-show\-untracked\-dirs\fR (bool)
.RS 4
Show untracked directories contents in the status view (analog to
git ls\-files \-\-directory
option)\&. On by default\&.
.RE
.PP
\fIstatus\-show\-untracked\-files\fR (bool)
.RS 4
Show untracked files in the status view (mirrors Git\(cqs
status\&.showUntrackedFiles
option)\&. On by default\&.
.RE
.PP
\fItab\-size\fR (int)
.RS 4
Number of spaces per tab\&. The default is 8 spaces\&.
.RE
.PP
\fIdiff\-context\fR (int)
.RS 4
Number of context lines to show for diffs\&.
.RE
.PP
\fIword\-diff\fR (bool)
.RS 4
Show a word diff\&. Only plain mode is supported\&. Off by default\&.
.RE
.PP
\fIdiff\-highlight\fR (mixed)
.RS 4
Whether to highlight diffs using Git\(cqs
\fIdiff\-highlight\fR
program\&. Defaults to false\&. When set to true then
\fIdiff\-highlight\fR
is used, else the option value is used as the path\&. When this option is in effect, highlighted regions are governed by
color diff\-add\-highlight
and
color diff\-del\-highlight\&.
.RE
.PP
\fIdiff\-indicator\fR (bool)
.RS 4
Show +/\- signs in the diff view\&. On by default\&.
.RE
.PP
\fIignore\-space\fR (mixed) [no|all|some|at\-eol|<bool>]
.RS 4
Ignore space changes in diff view\&. By default no space changes are ignored\&. Changing this to "all", "some" or "at\-eol" is equivalent to passing "\-\-ignore\-all\-space", "\-\-ignore\-space" or "\-\-ignore\-space\-at\-eol" respectively to
git diff
or
git show\&.


\fBWarning:\fR
when
ignore\-space
is set to
some,
all
or
at\-eol, then the
\fBstatus\-update\fR
and
\fBstatus\-revert\fR
may fail when updating or reverting chunks containing lines with space changes\&. Similarly,
\fBstage\-update\-line\fR
may fail when updating a line adjacent to a line with space changes\&.
.RE
.PP
\fIcommit\-order\fR (enum) [auto|default|topo|date|author\-date|reverse]
.RS 4
Commit ordering using the default (chronological reverse) order, topological order, date order or reverse order\&. When set to "auto" (which is the default), topological order is automatically used in the main view when the commit graph is enabled\&. In repositories with a long commit history it is advised to set this option to "default" to speed up loading of the main view\&.
.RE
.PP
\fIignore\-case\fR (enum) [no|yes|smart\-case]
.RS 4
Ignore case in searches\&. "smart\-case" ignores case if the search string doesn\(cqt contain any uppercase letters\&. By default, the search is case sensitive\&.
.RE
.PP
\fImailmap\fR (bool)
.RS 4
Read canonical name and email addresses for authors and committers from
\&.mailmap\&. Off by default\&. See
git\-shortlog(1)\&.
.RE
.PP
\fIwrap\-lines\fR (bool)
.RS 4
Wrap long lines\&. By default, lines are not wrapped\&. Not compatible with line numbers enabled\&.
.RE
.PP
\fIwrap\-search\fR (bool)
.RS 4
Wrap around to top/bottom of view when searching\&. On by default\&.
.RE
.PP
\fIfocus\-child\fR (bool)
.RS 4
Whether to focus the child view when it is opened\&. When disabled the focus will remain in the parent view, avoiding reloads of the child view when navigating the parent view\&. True by default\&.
.RE
.PP
\fIsend\-child\-enter\fR (bool)
.RS 4
Whether to send "enter" key presses to the child view, even if parent view is active\&. When disabled the child view has to be explicitly focused to receive the "enter" key presses\&. In practice only relevant when
set focus\-child = no\&. True by default\&.
.RE
.PP
\fIeditor\-line\-number\fR (bool)
.RS 4
Whether to pass the selected line number to the editor command\&. The line number is passed as
+<line\-number>
in front of the file name\&. Example:
vim +10 tig\&.c
.RE
.PP
\fIhistory\-size\fR (int)
.RS 4
Size of the persistent
~/\&.tig_history
file when compiled with readline support\&. Default is 500\&. Set to 0 to disable\&.
.RE
.PP
\fImouse\fR (bool)
.RS 4
Whether to enable mouse support\&. Off by default since it makes selecting text from the terminal less intuitive\&. When enabled hold down Shift (or Option on Mac) to select text\&. Mouse support requires that ncurses itself support mouse events\&.
.RE
.PP
\fImouse\-scroll\fR (int)
.RS 4
Interval to scroll up or down using the mouse\&. The default is 3 lines\&. Mouse support requires that ncurses itself support mouse events and that you have enabled mouse support in ~/\&.tigrc with
set mouse = true\&.
.RE
.PP
\fImouse\-wheel\-cursor\fR (bool)
.RS 4
Whether to prefer moving the cursor to scrolling the view when using the mouse wheel\&. Off by default\&. Combines well with
set mouse\-scroll = 1\&. Mouse support requires that ncurses itself support mouse events and that you have enabled mouse support in ~/\&.tigrc with
set mouse = true\&.
.RE
.PP
\fIpager\-autoscroll\fR (bool)
.RS 4
Whether to scroll automatically the pager view while loading\&. Move the cursor out of the last line to stop scrolling and back in to resume\&.
.RE
.PP
\fIpgrp\fR (bool)
.RS 4
Make tig process\-group leader when starting and clean all processes when exiting\&. Off by default\&. Do not enable this option if you are using a Zsh version affected by zsh\-workers/43379\&. Run
xclip
with
setsid
to keep clipboard content after exiting tig\&. If you are using git\-credential\-cache helper, set option
credentialCache\&.ignoreSIGHUP\&.
.RE
.PP
\fIstart\-on\-head\fR (bool)
.RS 4
Start with cursor on HEAD commit\&.
.RE
.PP
\fIrefresh\-mode\fR (mixed) [manual|auto|after\-command|periodic|<bool>]
.RS 4
Configures how views are refreshed based on modifications to watched files in the repository\&. When set to
\fImanual\fR, nothing is refreshed automatically\&. When set to
\fIauto\fR, views are refreshed when a modification is detected in another view\&. When set to
\fIafter\-command\fR
only refresh after returning from an external command\&. When set to
\fIperiodic\fR, visible views are refreshed periodically using
\fIrefresh\-interval\fR\&.
.RE
.PP
\fIrefresh\-interval\fR (int)
.RS 4
Interval in seconds between view refresh update checks when
\fIrefresh\-mode\fR
is set to
\fIperiodic\fR\&.
.RE
.PP
\fIfile\-args\fR (args)
.RS 4
Command line arguments referring to files\&. These are filtered using
git\-rev\-parse(1)\&.
.RE
.PP
\fIrev\-args\fR (args)
.RS 4
Command line arguments referring to revisions\&. These are filtered using
git\-rev\-parse(1)\&.
.RE
.SS "View settings"
.sp
The view settings define the order and options for the different columns of a view\&. Each view setting expects a space\-separated list of column specifications\&. Column specifications starts with the column type, and can optionally be followed by a colon (:) and a list of column options\&. E\&.g\&. the following column specification defines an \fIauthor\fR column displaying the author email and with a fixed width of 20 characters: author:email,width=20\&.
.sp
The first option value in a column specification is always the \fIdisplay\fR option\&. When no \fIdisplay\fR value is given, \fIyes\fR is assumed\&. For \fIdisplay\fR options expecting an enumerated value this will automatically resolve to the default enum value\&. For example, file\-name will automatically have its \fIdisplay\fR setting resolve to \fIauto\fR\&.
.sp
Specifications can also be given for a single column, for example to override the defaults in the system tigrc file\&. To override a single column, use the column name as a suffix after the view setting name, e\&.g\&. main\-view\-date will allow to set the date in the main view\&.
.sp
Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
# Enable both ID and line numbers in the blame view
set blame\-view = date:default author:full committer:no file\-name:auto \e
                 id:yes,color line\-number:yes,interval=5 text

# Change grep view to be similar to `git grep` format
set grep\-view = file\-name:yes line\-number:yes,interval=1 text

# Show file sizes as units
set tree\-view = line\-number:no,interval=5 mode author:full committer:no \e
                file\-size:units date:default id:no file\-name

# Show line numbers for every 10th line in the pager view
set pager\-view = line\-number:yes,interval=10 text

# Shorthands to change view settings for a previously defined column
set main\-view\-date = custom
set main\-view\-date\-format = "%Y\-%m\-%d %H:%M"
set blame\-view\-line\-number = no
# Use Git\*(Aqs default commit order, even when the commit graph is enabled\&.
set commit\-order = default
.fi
.if n \{\
.RE
.\}
.sp
.sp
The following list shows which the available view settings and what column types they support:
.PP
blob\-view, diff\-view, log\-view, pager\-view, stage\-view
.RS 4
line\-number, text
.RE
.PP
blame\-view
.RS 4
author, committer, date, file\-name, id, line\-number, text
.RE
.PP
grep\-view
.RS 4
file\-name, line\-number, text
.RE
.PP
main\-view, reflog\-view
.RS 4
author, committer, date, commit\-title, id, line\-number, ref
.RE
.PP
refs\-view
.RS 4
author, committer, date, commit\-title, id, line\-number, ref
.RE
.PP
stash\-view
.RS 4
author, date, commit\-title, id, line\-number
.RE
.PP
status\-view
.RS 4
file\-name, line\-number, status
.RE
.PP
tree\-view
.RS 4
author, committer, date, id, file\-name, file\-size, line\-number, mode
.RE
.sp
Supported column types and their respective column options:
.PP
author, committer
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(mixed) [full|abbreviated|email|email\-user|<bool>]: How to display author/committer names\&. If set to "abbreviated" author/committer initials will be shown\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int): Fixed width for the column\&. When set to a value between 1 and 10, the author/committer name will be abbreviated to the author/committer\(cqs initials\&. When set to zero, the width is automatically sized to fit the content\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fImaxwidth\fR
(int): Maximum width of the column\&. Permit automatically sizing content, up to this limit\&. Can be specified either as the number of columns, e\&.g\&.
\fI15\fR, or as a percentage of the view width, e\&.g\&.
\fI20%\fR, where the maximum is 100%\&.
.RE
.RE
.PP
commit\-title
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIgraph\fR
(mixed) [no|v2|v1]: Whether to show the revision graph in the main view on start\-up\&. "v1" refers to the old graph rendering, which is less accurate but faster and thus recommended in large repositories\&. See also the
\fIline\-graphics\fR
options\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIrefs\fR
(bool): Whether to show references (branches, tags, and remotes) in the main view\&. Can be toggled\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIoverflow\fR
(bool or int): Whether to highlight text in commit titles exceeding a given width\&. When set to a boolean, it enables or disables the highlighting using the default width of 50 character\&. When set to an int, the assigned value is used as the maximum character width\&.
.RE
.RE
.PP
date
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(mixed) [relative|relative\-compact|custom|default|<bool>]: How to display dates\&. If set to "relative" or "relative\-compact" a relative date will be used, e\&.g\&. "2 minutes ago" or "2m"\&. If set to "custom", the strftime(3) string format specified in the "format" option is used\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIuse\-author\fR
(bool): Whether to show author date instead of committer date\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIlocal\fR
(bool): If true, use localtime(3) to convert to local timezone\&. Note that relative dates always use local offsets\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIformat\fR
(string): format string to pass to strftime(3) when
\fIcustom\fR
display mode has been selected\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int): Fixed width for the column\&. When set to zero, the width is automatically sized to fit the content\&.
.RE
.RE
.PP
file\-name
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(mixed) [auto|always|<bool>]: When to display file names\&. If set to "auto" file names are shown only when needed, e\&.g\&. when running: tig blame \-C <file>\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int): Width of the column\&. When set to zero, the width is automatically sized to fit the content\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fImaxwidth\fR
(int): Maximum width of the column\&. Permit automatically sizing content, up to this limit\&. Can be specified either as the number of columns, e\&.g\&.
\fI15\fR, or as a percentage of the view width, e\&.g\&.
\fI20%\fR, where the maximum is 100%\&.
.RE
.RE
.PP
file\-size
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(mixed) [default|units|<bool>]: How to display file sizes\&. When set to "units", sizes are shown using binary prefixes, e\&.g\&. 12524 bytes is shown as "12\&.2K"\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int): Fixed width for the filename column\&. When set to zero, the width is automatically sized to fit the content\&.
.RE
.RE
.PP
id
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(bool): Whether to show commit IDs in the main view\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int) : Fixed width for the commit ID column\&. When unset Tig will use the value of
\fIcore\&.abbrev\fR
if found\&. See git\-config(1) on how to set
\fIcore\&.abbrev\fR\&. When set to zero the width is automatically sized to fit the content of reflog (e\&.g\&.
ref/stash@{4}) IDs and otherwise default to 7\&.
.RE
.RE
.PP
line\-number
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(bool): Whether to show line numbers\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIinterval\fR
(int): Interval between line numbers\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int): Fixed width for the column\&. When set to zero, the width is automatically sized to fit the content\&.
.RE
.RE
.PP
mode
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(bool): Whether to show file modes\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int): Fixed width for the column\&. When set to zero, the width is automatically sized to fit the content\&.
.RE
.RE
.PP
ref
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(bool): Whether to show the reference name\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIwidth\fR
(int): Fixed width for the column\&. When set to zero, the width is automatically sized to fit the content\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fImaxwidth\fR
(int): Maximum width of the column\&. Permit automatically sizing content, up to this limit\&. Can be specified either as the number of columns, e\&.g\&.
\fI15\fR, or as a percentage of the view width, e\&.g\&.
\fI20%\fR, where the maximum is 100%\&.
.RE
.RE
.PP
status
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIdisplay\fR
(mixed) [no|short|long|<bool>]: How to display the status label\&.
.RE
.RE
.PP
text
.RS 4
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIcommit\-title\-overflow\fR
(bool or int): Whether to highlight commit titles exceeding a given width in the diff view\&. When set to a boolean, it enables or disables the highlighting using the default width of 50 character\&. When set to an int, the assigned value is used as the maximum character width\&.
.RE
.RE
.sp
All column options can be toggled\&. For \fIdisplay\fR options, use the option name as the prefix followed by a dash and the column name\&. E\&.g\&. :toggle author\-display will toggle the \fIdisplay\fR option in the \fIauthor\fR column\&. For all other options use the column name followed by a dash and then the option name as the suffix\&. E\&.g\&. :toggle commit\-title\-graph will toggle the \fIgraph\fR option in the \fIcommit\-title\fR column\&. Alternatively, use the option menu to manipulate options\&.
.SH "BIND COMMAND"
.sp
Using bind commands, keys can be mapped to an action when pressed in a given key map\&. The syntax is:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBbind\fR \fIkeymap\fR \fIkey\fR \fIaction\fR
.fi
.if n \{\
.RE
.\}
.sp
.sp
Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
# Add keybinding to quickly jump to the next diff chunk in the stage view
bind stage <Enter> :/^@@

# Disable the default mapping for running git\-gc
bind generic G none

# User\-defined external command to amend the last commit
bind status + !git commit \-\-amend

# User\-defined internal command that reloads ~/\&.tigrc
bind generic S :source ~/\&.tigrc

# UTF8\-encoded characters can be used as key values\&.
bind generic \(/o @sh \-c "printf \*(Aq%s\*(Aq %(commit) | pbcopy"
.fi
.if n \{\
.RE
.\}
.sp
.sp
Or in the Git configuration files:
.sp
.if n \{\
.RS 4
.\}
.nf
[tig "bind"]
        # \*(Aqunbind\*(Aq the default quit key binding
        generic = Q none
        # Cherry\-pick current commit onto current branch
        main = C !git cherry\-pick %(commit)
.fi
.if n \{\
.RE
.\}
.sp
.sp
Keys are mapped by first searching the keybindings for the current view, then the keybindings for the \fBgeneric\fR keymap, and last the default keybindings\&. Thus, the view keybindings override the generic keybindings which override the built\-in keybindings\&.
.sp
Clear keybinding (unbind) from all keymaps at once with bind \fBgeneric\fR \fIkey\fR \fBnone\fR\&.
.sp
Keybindings at the line\-entry prompt are typically governed by the readline library, and are configured separately in ~/\&.inputrc\&. See \fIreadline(1)\fR\&. Tig respects but does not require an $if tig section in ~/\&.inputrc\&.
.PP
Keymaps
.RS 4
Valid keymaps are:
\fBmain\fR,
\fBdiff\fR,
\fBlog\fR,
\fBreflog\fR,
\fBhelp\fR,
\fBpager\fR,
\fBstatus\fR,
\fBstage\fR,
\fBtree\fR,
\fBblob\fR,
\fBblame\fR,
\fBrefs\fR,
\fBstash\fR,
\fBgrep\fR
and
\fBgeneric\fR\&. Use
\fBgeneric\fR
to set key mapping in all keymaps (which may still be overridden by a specific view keybinding)\&. Use
\fBsearch\fR
to define keys for navigating search results during search\&.
.RE
.PP
Key values
.RS 4
Key values should never be quoted\&. Use either an ASCII or UTF8\-encoded character or one of the following symbolic key names\&. Symbolic key names are case insensitive and starts with "<" and ends with ">"\&. Use
\fB<Hash>\fR
to bind to the
#
key, since the hash mark is used as a comment character\&. Use
\fB<LessThan>\fR
to bind to the
<
key\&.
.RE
.sp
\fB<Enter>\fR, \fB<Space>\fR, \fB<Backspace>\fR, \fB<Tab>\fR, \fB<Escape>\fR or \fB<Esc>\fR, \fB<Left>\fR, \fB<Right>\fR, \fB<Up>\fR, \fB<Down>\fR, \fB<Insert>\fR or \fB<Ins>\fR, \fB<Delete>\fR or \fB<Del>\fR, \fB<Hash>\fR, \fB<LessThan>\fR or \fB<LT>\fR, \fB<Home>\fR, \fB<End>\fR, \fB<PageUp>\fR or \fB<PgUp>\fR, \fB<PageDown>\fR or \fB<PgDown>\fR, \fB<ScrollBack>\fR or \fB<SBack>\fR, \fB<ScrollFwd>\fR or \fB<SFwd>\fR, \fB<ShiftTab>\fR or \fB<BackTab>\fR, \fB<ShiftLeft>\fR, \fB<ShiftRight>\fR, \fB<ShiftDelete>\fR or \fB<ShiftDel>\fR, \fB<ShiftHome>\fR, \fB<ShiftEnd>\fR, \fB<SingleQuote>\fR, \fB<DoubleQuote>\fR, \fB<F1>\fR \&... \fB<F19>\fR
.sp
To define key mappings with the Ctrl key, use <Ctrl\-key>\&. In addition, key combos consisting of an initial Escape key followed by a normal key value can be bound using <Esc>key\&.
.sp
Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
bind main R             refresh
bind main <Down>        next
bind main <Ctrl\-f>      scroll\-page\-down
bind main <Esc>o        options
bind main <ShiftTab>    parent
.fi
.if n \{\
.RE
.\}
.sp
.sp
Notes
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Tig reads keystrokes via ncurses and is subject to various limitations\&. See
\fIncurses(3x)\fR
and
\fIterminfo(5)\fR
(or termcap)\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Ctrl\-m
and
Ctrl\-i
cannot be bound as they conflict with
\fIEnter\fR
and
\fITab\fR
respectively\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Case differences cannot be distinguished in control sequences such as
Ctrl\-f
and
Ctrl\-F\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Ctrl\-<Space>
is typically translated to
Ctrl\-@, which is available for binding\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Only some subset of special symbolic keys such as
<ShiftTab>
will be available in any given terminal emulator\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Ctrl\-z
is automatically used for process control and will suspend Tig and open a subshell (use
fg
to reenter Tig)\&.
.PP
Actions
.RS 4
Actions are either specified as user\-defined commands (external or internal) or using action names as described in the following sections\&.
.RE
.RE
.SS "External user\-defined command"
.sp
These actions start with one or more of the following option flags followed by the command that should be executed\&.
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
!
T}:T{
.sp
Run the command in the foreground with output shown\&.
T}
T{
.sp
@
T}:T{
.sp
Run the command in the background with no output\&.
T}
T{
.sp
+
T}:T{
.sp
Run the command synchronously, and echo the first line of output to the status bar\&.
T}
T{
.sp
?
T}:T{
.sp
Prompt the user before executing the command\&.
T}
T{
.sp
<
T}:T{
.sp
Exit Tig after executing the command\&.
T}
T{
.sp
>
T}:T{
.sp
Re\-open Tig instantly in the last displayed view after executing the command\&.
T}
.TE
.sp 1
.sp
Unless otherwise specified, commands are run in the foreground with their console output shown (as if \fI!\fR was specified)\&. When multiple command options are specified their behavior are combined, e\&.g\&. "?<git commit" will prompt the user whether to execute the command and will exit Tig after completion\&.
.sp
Note that if you want to use pipes or redirection in your commands then you must run them in a subshell, i\&.e\&. embed your commands in sh \-c \*(Aq<commands>\*(Aq\&.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBBrowsing state variables\fR
.RS 4
.sp
User\-defined commands can optionally refer to Tig\(cqs internal state using the following variable names, which are substituted before commands are run:
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
%(head)
T}:T{
.sp
The currently viewed \fIhead\fR ID\&. Defaults to HEAD
T}
T{
.sp
%(commit)
T}:T{
.sp
The currently selected commit ID\&.
T}
T{
.sp
%(blob)
T}:T{
.sp
The currently selected blob ID\&.
T}
T{
.sp
%(branch)
T}:T{
.sp
The currently selected branch name\&.
T}
T{
.sp
%(remote)
T}:T{
.sp
The currently selected remote name\&. For remote branches %(branch) will contain the branch name\&.
T}
T{
.sp
%(tag)
T}:T{
.sp
The currently selected tag name\&.
T}
T{
.sp
%(refname)
T}:T{
.sp
The currently selected reference name including the remote name for remote branches\&.
T}
T{
.sp
%(stash)
T}:T{
.sp
The currently selected stash name\&.
T}
T{
.sp
%(directory)
T}:T{
.sp
The current directory path in the tree view or "\&." if undefined\&.
T}
T{
.sp
%(file)
T}:T{
.sp
The currently selected file\&.
T}
T{
.sp
%(file_old)
T}:T{
.sp
The old filename of the currently selected file\&.
T}
T{
.sp
%(lineno)
T}:T{
.sp
The currently selected line number\&. Defaults to 0\&.
T}
T{
.sp
%(lineno_old)
T}:T{
.sp
The currently selected line number, before the diff was applied\&. Defaults to 0\&.
T}
T{
.sp
%(ref)
T}:T{
.sp
The reference given to blame or HEAD if undefined\&.
T}
T{
.sp
%(revargs)
T}:T{
.sp
The revision arguments passed on the command line\&.
T}
T{
.sp
%(fileargs)
T}:T{
.sp
The file arguments passed on the command line\&.
T}
T{
.sp
%(cmdlineargs)
T}:T{
.sp
All other options passed on the command line\&.
T}
T{
.sp
%(diffargs)
T}:T{
.sp
Options from \fIdiff\-options\fR or \fITIG_DIFF_OPTS\fR used by the diff and stage view\&.
T}
T{
.sp
%(blameargs)
T}:T{
.sp
Options from \fIblame\-options\fR used by the blame view\&.
T}
T{
.sp
%(logargs)
T}:T{
.sp
Options from \fIlog\-options\fR used by the log view\&.
T}
T{
.sp
%(mainargs)
T}:T{
.sp
Options from \fImain\-options\fR used by the main view\&.
T}
T{
.sp
%(prompt)
T}:T{
.sp
Prompt for the argument value\&. Optionally specify a custom prompt using "%(prompt Enter branch name: )"
T}
T{
.sp
%(text)
T}:T{
.sp
The text column of the currently selected line\&.
T}
T{
.sp
%(repo:head)
T}:T{
.sp
The name of the checked out branch, e\&.g\&. master
T}
T{
.sp
%(repo:head\-id)
T}:T{
.sp
The commit ID of the checked out branch\&.
T}
T{
.sp
%(repo:remote)
T}:T{
.sp
The remote name associated with the checked out branch, e\&.g\&. origin\&.
T}
T{
.sp
%(repo:upstream)
T}:T{
.sp
The upstream branch associated with the checked out branch, e\&.g\&. origin/master\&.
T}
T{
.sp
%(repo:cdup)
T}:T{
.sp
The path to change directory to the repository root, e\&.g\&. \&.\&./
T}
T{
.sp
%(repo:prefix)
T}:T{
.sp
The path prefix of the current work directory, e\&.g subdir/\&.
T}
T{
.sp
%(repo:git\-dir)
T}:T{
.sp
The path to the Git directory, e\&.g\&. /src/repo/\&.git\&.
T}
T{
.sp
%(repo:worktree)
T}:T{
.sp
The worktree path, if defined\&.
T}
T{
.sp
%(repo:is\-inside\-work\-tree)
T}:T{
.sp
Whether Tig is running inside a work tree, either true or false\&.
T}
.TE
.sp 1
.sp
Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
# Save the current commit as a patch file when the user selects a commit
# in the main view and presses \*(AqS\*(Aq\&.
bind main S !git format\-patch \-1 %(commit)

# Create and checkout a new branch; specify custom prompt
bind main B ?git checkout \-b "%(prompt Enter new branch name: )"

# Show commit statistics for the author under the cursor
bind main U +sh \-c \*(Aqgit \-\-no\-pager shortlog \-s \-\-author="$(git show \-s \-\-format=%aE %(commit))" </dev/tty\*(Aq
.fi
.if n \{\
.RE
.\}
.sp
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBAdvanced shell-like commands\fR
.RS 4
.sp
If your command requires use of dynamic features, such as subshells, expansion of environment variables and process control, this can be achieved by using a shell command:
.PP
\fBExample\ \&1.\ \&Configure a binding to copy the current commit ID to the clipboard\&.\fR
.sp
.if n \{\
.RS 4
.\}
.nf
bind generic I @sh \-c "echo \-n %(commit) | xclip \-selection c"
.fi
.if n \{\
.RE
.\}
.sp

.sp
Or by using a combination of Git aliases and Tig external commands\&. The following example entries can be put in either the \&.gitconfig or \&.git/config file:
.PP
\fBExample\ \&2.\ \&Git configuration which binds Tig keys to Git command aliases\&.\fR
.sp
.if n \{\
.RS 4
.\}
.nf
[alias]
        gitk\-bg = !"gitk HEAD \-\-not $(git rev\-parse \-\-remotes) &"
        publish = !"for i in origin public; do git push $i; done"
[tig "bind"]
        generic = V @git gitk\-bg
        generic = > !git publish
.fi
.if n \{\
.RE
.\}
.sp

.RE
.SS "Internal user\-defined commands"
.sp
Actions beginning with a \fI:\fR will be run and interpreted as internal commands and act similar to commands run via Tig\(cqs prompt\&. Valid internal commands are configuration file options (as described in this document) and pager view commands\&. Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
# Reload ~/\&.tigrc when \*(AqS\*(Aq is pressed
bind generic S :source \&.tigrc

# Change diff view to show all commit changes regardless of file limitations
bind diff F :set diff\-options = \-\-full\-diff

# Show the output of git\-reflog(1) in the pager view
bind generic W :!git reflog

# Search for previous diff (c)hunk and next diff header
bind stage 2 :?^@@
bind stage D :/^diff \-\-(git|cc)

bind main I :toggle id                          # Show/hide the ID column
bind diff D :toggle diff\-options \-\-minimal      # Use minimal diff algorithm
bind diff [ :toggle diff\-context \-3             # Decrease context (\-U arg)
bind diff ] :toggle diff\-context +3             # Increase context
bind generic V :toggle split\-view\-height \-10%   # Decrease split height
.fi
.if n \{\
.RE
.\}
.sp
.sp
Similar to external commands, pager view commands can contain variable names that will be substituted before the command is run\&.
.SS "Action names"
.sp
Valid action names are described below\&. Note, all action names are case\-insensitive, and you may use \fI\-\fR, \fI_\fR, and \fI\&.\fR interchangeably, e\&.g\&. "view\-main", "View\&.Main", and "VIEW_MAIN" are the same\&.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBView switching\fR
.RS 4
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
view\-main
T}:T{
.sp
Show main view
T}
T{
.sp
view\-diff
T}:T{
.sp
Show diff view
T}
T{
.sp
view\-log
T}:T{
.sp
Show log view
T}
T{
.sp
view\-reflog
T}:T{
.sp
Show reflog view
T}
T{
.sp
view\-tree
T}:T{
.sp
Show tree view
T}
T{
.sp
view\-blob
T}:T{
.sp
Show blob view
T}
T{
.sp
view\-blame
T}:T{
.sp
Show blame view
T}
T{
.sp
view\-refs
T}:T{
.sp
Show refs view
T}
T{
.sp
view\-status
T}:T{
.sp
Show status view
T}
T{
.sp
view\-stage
T}:T{
.sp
Show stage view
T}
T{
.sp
view\-stash
T}:T{
.sp
Show stash view
T}
T{
.sp
view\-grep
T}:T{
.sp
Show grep view
T}
T{
.sp
view\-pager
T}:T{
.sp
Show pager view
T}
T{
.sp
view\-help
T}:T{
.sp
Show help view
T}
.TE
.sp 1
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBView manipulation\fR
.RS 4
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
enter
T}:T{
.sp
Enter and open selected line
T}
T{
.sp
back
T}:T{
.sp
Go back to the previous view state
T}
T{
.sp
next
T}:T{
.sp
Move to next
T}
T{
.sp
previous
T}:T{
.sp
Move to previous
T}
T{
.sp
parent
T}:T{
.sp
Move to parent
T}
T{
.sp
view\-next
T}:T{
.sp
Move focus to the next view
T}
T{
.sp
refresh
T}:T{
.sp
Reload and refresh view
T}
T{
.sp
maximize
T}:T{
.sp
Maximize the current view
T}
T{
.sp
view\-close
T}:T{
.sp
Close the current view
T}
T{
.sp
view\-close\-no\-quit
T}:T{
.sp
Close the current view without quitting
T}
T{
.sp
quit
T}:T{
.sp
Close all views and quit
T}
.TE
.sp 1
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBView-specific actions\fR
.RS 4
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
status\-update
T}:T{
.sp
Stage/unstage chunk or file changes
T}
T{
.sp
status\-revert
T}:T{
.sp
Revert chunk or file changes
T}
T{
.sp
status\-merge
T}:T{
.sp
Merge file using external tool
T}
T{
.sp
stage\-update\-line
T}:T{
.sp
Stage/unstage single line
T}
T{
.sp
stage\-update\-part
T}:T{
.sp
Stage/unstage part of a chunk
T}
T{
.sp
stage\-split\-chunk
T}:T{
.sp
Split current diff chunk
T}
.TE
.sp 1
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBCursor navigation\fR
.RS 4
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
move\-up
T}:T{
.sp
Move cursor one line up
T}
T{
.sp
move\-down
T}:T{
.sp
Move cursor one line down
T}
T{
.sp
move\-page\-up
T}:T{
.sp
Move cursor one page up
T}
T{
.sp
move\-page\-down
T}:T{
.sp
Move cursor one page down
T}
T{
.sp
move\-half\-page\-up
T}:T{
.sp
Move cursor half a page up
T}
T{
.sp
move\-half\-page\-down
T}:T{
.sp
Move cursor half a page down
T}
T{
.sp
move\-first\-line
T}:T{
.sp
Move cursor to first line
T}
T{
.sp
move\-last\-line
T}:T{
.sp
Move cursor to last line
T}
T{
.sp
move\-next\-merge
T}:T{
.sp
Move cursor to next merge commit
T}
T{
.sp
move\-prev\-merge
T}:T{
.sp
Move cursor to previous merge commit
T}
.TE
.sp 1
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBScrolling\fR
.RS 4
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
scroll\-line\-up
T}:T{
.sp
Scroll one line up
T}
T{
.sp
scroll\-line\-down
T}:T{
.sp
Scroll one line down
T}
T{
.sp
scroll\-page\-up
T}:T{
.sp
Scroll one page up
T}
T{
.sp
scroll\-page\-down
T}:T{
.sp
Scroll one page down
T}
T{
.sp
scroll\-half\-page\-up
T}:T{
.sp
Scroll half a page up
T}
T{
.sp
scroll\-half\-page\-down
T}:T{
.sp
Scroll half a page down
T}
T{
.sp
scroll\-first\-col
T}:T{
.sp
Scroll to the first line columns
T}
T{
.sp
scroll\-left
T}:T{
.sp
Scroll two columns left
T}
T{
.sp
scroll\-right
T}:T{
.sp
Scroll two columns right
T}
.TE
.sp 1
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBSearching\fR
.RS 4
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt.
T{
.sp
search
T}:T{
.sp
Search the view
T}
T{
.sp
search\-back
T}:T{
.sp
Search backwards in the view
T}
T{
.sp
find\-next
T}:T{
.sp
Find next search match
T}
T{
.sp
find\-prev
T}:T{
.sp
Find previous search match
T}
.TE
.sp 1
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBMisc\fR
.RS 4
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
edit
T}:T{
.sp
Open in editor
T}
T{
.sp
prompt
T}:T{
.sp
Open the prompt
T}
T{
.sp
options
T}:T{
.sp
Open the options menu
T}
T{
.sp
screen\-redraw
T}:T{
.sp
Redraw the screen
T}
T{
.sp
stop\-loading
T}:T{
.sp
Stop all loading views
T}
T{
.sp
show\-version
T}:T{
.sp
Show version information
T}
T{
.sp
none
T}:T{
.sp
Do nothing
T}
.TE
.sp 1
.RE
.SH "COLOR COMMAND"
.sp
Color commands control highlighting and the user interface styles\&. If your terminal supports color, these commands can be used to assign foreground and background combinations to certain areas\&. Optionally, an attribute can be given as the last parameter\&. The syntax is:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBcolor\fR \fIarea\fR \fIfgcolor\fR \fIbgcolor\fR \fI[attributes]\fR
.fi
.if n \{\
.RE
.\}
.sp
.sp
Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
# Override the default terminal colors to white on black\&.
color default           white   black
# Diff colors
color diff\-header       yellow  default
color diff\-index        blue    default
color diff\-chunk        magenta default
color "Reported\-by:"    green   default
# View\-specific color
color tree\&.date         black   cyan    bold
# Custom color
color "/(note|warning|error):/" yellow  default bold
.fi
.if n \{\
.RE
.\}
.sp
.sp
Or in the Git configuration files:
.sp
.if n \{\
.RS 4
.\}
.nf
[tig "color"]
        # A strange looking cursor line
        cursor          = red   default underline
        # UI colors
        title\-blur      = white blue
        title\-focus     = white blue    bold
# View\-specific color
[tig "color\&.tree"]
        date            = cyan  default bold
.fi
.if n \{\
.RE
.\}
.sp

.PP
Area names
.RS 4
Can be either a built\-in area name or a custom quoted string\&. The latter allows custom color rules to be added for lines matching a quoted string\&. Strings of the form "/\&.../" are interpreted as regular expressions\&. Valid built\-in area names are described below\&. Note, all names are case\-insensitive, and you may use
\fI\-\fR, and
\fI_\fR
interchangeably, e\&.g\&. "Diff\-Header" and "DIFF_HEADER" are the same\&. View\-specific colors can be defined by prefixing the view name to the area name, e\&.g\&. "stage\&.diff\-chunk" and "diff\&.diff\-chunk"\&.
.RE
.PP
Color names
.RS 4
Valid colors include:
\fBwhite\fR,
\fBblack\fR,
\fBgreen\fR,
\fBmagenta\fR,
\fBblue\fR,
\fBcyan\fR,
\fByellow\fR,
\fBred\fR,
\fBdefault\fR\&. Use
\fBdefault\fR
to refer to the default terminal colors, for example, to keep the background transparent when you are using a terminal with a transparent background\&.
.sp
Colors can also be specified using the keywords
\fBcolor0\fR,
\fBcolor1\fR, \&...,
\fBcolorN\-1\fR
(where
\fBN\fR
is the number of colors supported by your terminal)\&. This is useful when you remap the colors for your display or want to enable colors supported by 88\-color and 256\-color terminals\&. Note that the
\fIcolor\fR
prefix is optional\&. If you prefer, you can specify colors directly by their numbers
\fB0\fR,
\fB1\fR, \&...,
\fBN\-1\fR
instead, just like in the configuration file of Git\&.
.RE
.PP
Attribute names
.RS 4
Valid attributes include:
\fBnormal\fR,
\fBblink\fR,
\fBbold\fR,
\fBdim\fR,
\fBreverse\fR,
\fBstandout\fR, and
\fBunderline\fR\&. Note, not all attributes may be supported by the terminal\&.
.RE
.SS "UI colors"
.sp
The colors and attributes to be used for the text that is not highlighted or that specify the use of the default terminal colors can be controlled by setting the \fBdefault\fR color option\&.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.B Table\ \&1.\ \&General
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
default
T}:T{
.sp
Override default terminal colors (see above)\&.
T}
T{
.sp
cursor
T}:T{
.sp
The cursor line for the current view\&.
T}
T{
.sp
cursor\-blur
T}:T{
.sp
The cursor line of any backgrounded view\&.
T}
T{
.sp
status
T}:T{
.sp
The status window showing info messages\&.
T}
T{
.sp
title\-focus
T}:T{
.sp
The title window for the current view\&.
T}
T{
.sp
title\-blur
T}:T{
.sp
The title window of any backgrounded view\&.
T}
T{
.sp
search\-result
T}:T{
.sp
Highlighted search result\&.
T}
T{
.sp
delimiter
T}:T{
.sp
Delimiter shown for truncated lines\&.
T}
T{
.sp
header
T}:T{
.sp
The view header lines\&. Use \fIstatus\&.header\fR to color the staged, unstaged, and untracked sections in the status view\&. Use \fIhelp\&.header\fR to color the keymap sections in the help view\&.
T}
T{
.sp
line\-number
T}:T{
.sp
Line numbers\&.
T}
T{
.sp
id
T}:T{
.sp
The commit ID\&.
T}
T{
.sp
date
T}:T{
.sp
The committer date or author date\&.
T}
T{
.sp
author
T}:T{
.sp
The commit author\&.
T}
T{
.sp
committer
T}:T{
.sp
The committer\&.
T}
T{
.sp
mode
T}:T{
.sp
The file mode holding the permissions and type\&.
T}
T{
.sp
overflow
T}:T{
.sp
Title text overflow\&.
T}
T{
.sp
directory
T}:T{
.sp
The directory name\&.
T}
T{
.sp
file
T}:T{
.sp
The file name\&.
T}
T{
.sp
file\-size
T}:T{
.sp
File size\&.
T}
.TE
.sp 1
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.B Table\ \&2.\ \&Main view colors
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt
lt lt.
T{
.sp
graph\-commit
T}:T{
.sp
The commit dot in the revision graph\&.
T}
T{
.sp
palette\-[0\-13]
T}:T{
.sp
14 different colors, used for distinguishing branches or commits\&. By default, the palette uses the ASCII colors, where the second half of them have the bold attribute enabled to give a brighter color\&. Example: palette\-0 = red
T}
T{
.sp
main\-commit
T}:T{
.sp
The commit comment\&.
T}
T{
.sp
main\-annotated
T}:T{
.sp
The commit comment of an annotated commit\&.
T}
T{
.sp
main\-head
T}:T{
.sp
Label of the current branch\&.
T}
T{
.sp
main\-remote
T}:T{
.sp
Label of a remote\&.
T}
T{
.sp
main\-tracked
T}:T{
.sp
Label of the remote tracked by the current branch\&.
T}
T{
.sp
main\-tag
T}:T{
.sp
Label of a signed tag\&.
T}
T{
.sp
main\-local\-tag
T}:T{
.sp
Label of a local tag\&.
T}
T{
.sp
main\-ref
T}:T{
.sp
Label of a branch\&.
T}
T{
.sp
main\-replace
T}:T{
.sp
Label of replaced reference\&.
T}
T{
.sp
main\-stash
T}:T{
.sp
Label of the stash\&.
T}
T{
.sp
main\-note
T}:T{
.sp
Label of notes\&.
T}
T{
.sp
main\-prefetch
T}:T{
.sp
Label of reference prefetched by git maintenance\&.
T}
T{
.sp
main\-other
T}:T{
.sp
Label of any other reference\&.
T}
.TE
.sp 1
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.B Table\ \&3.\ \&Status view
.TS
tab(:);
lt lt
lt lt
lt lt
lt lt.
T{
.sp
stat\-none
T}:T{
.sp
Empty status label\&.
T}
T{
.sp
stat\-staged
T}:T{
.sp
Status flag of staged files\&.
T}
T{
.sp
stat\-unstaged
T}:T{
.sp
Status flag of unstaged files\&.
T}
T{
.sp
stat\-untracked
T}:T{
.sp
Status flag of untracked files\&.
T}
.TE
.sp 1
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.B Table\ \&4.\ \&Help view
.TS
tab(:);
lt lt
lt lt.
T{
.sp
help\-group
T}:T{
.sp
Help group name\&.
T}
T{
.sp
help\-action
T}:T{
.sp
Help action name\&.
T}
.TE
.sp 1
.SS "Highlighting"
.PP
Diff markup
.RS 4
Options concerning diff start, chunks and lines added and deleted\&.
.RE
.sp
\fBdiff\-header\fR, \fBdiff\-chunk\fR, \fBdiff\-stat\fR, \fBdiff\-add\fR, \fBdiff\-add2\fR, \fBdiff\-del\fR, \fBdiff\-del2\fR, \fBdiff\-add\-highlight\fR, \fBdiff\-del\-highlight\fR
.PP
Enhanced Git diff markup
.RS 4
Extra diff information emitted by the Git diff machinery, such as mode changes, rename detection, and similarity\&.
.RE
.sp
\fBdiff\-oldmode\fR, \fBdiff\-newmode\fR, \fBdiff\-copy\-from\fR, \fBdiff\-copy\-to\fR, \fBdiff\-similarity\fR, \fBdiff\-index\fR
.PP
Pretty print commit headers
.RS 4
Commit diffs and the revision logs are usually formatted using pretty printed headers , unless
\-\-pretty=raw
was given\&. This includes lines, such as merge info, commit ID, and author and committer date\&.
.RE
.sp
\fBpp\-refs\fR, \fBpp\-reflog\fR, \fBpp\-reflogmsg\fR, \fBpp\-merge\fR
.PP
Raw commit header
.RS 4
Usually shown when
\-\-pretty=raw
is given, however
\fIcommit\fR
is pretty much omnipresent\&.
.RE
.sp
\fBcommit\fR, \fBparent\fR, \fBtree\fR, \fBauthor\fR, \fBcommitter\fR
.PP
Commit message
.RS 4
Most common trailer lines (e\&.g\&.
Signed\-off\-by) are colorized\&. Characters in the commit title exceeding a predefined width can be highlighted\&.
.RE
.PP
Tree markup
.RS 4
Colors for information of the tree view\&.
.RE
.sp
\fBtree\-dir\fR, \fBtree\-file\fR
.SH "SOURCE COMMAND"
.sp
Source commands make it possible to read additional configuration files\&. Sourced files are included in\-place, meaning when a \fIsource\fR command is encountered the file will be immediately read\&. Any commands later in the current configuration file will take precedence\&.
.sp
If the given path does not exist, tig will proceed with a warning\&. Give the \-q parameter to suppress the warning\&.
.sp
The syntax is:
.sp
.if n \{\
.RS 4
.\}
.nf
\fBsource\fR \fI[\-q]\fR \fIpath\fR
.fi
.if n \{\
.RE
.\}
.sp
.sp
Examples:
.sp
.if n \{\
.RS 4
.\}
.nf
source ~/\&.tig/colorscheme\&.tigrc
source ~/\&.tig/keybindings\&.tigrc
.fi
.if n \{\
.RE
.\}
.sp
.SH "COPYRIGHT"
.sp
Copyright (c) 2006\-2025 Jonas Fonseca <\m[blue]\fBjonas\&.fonseca@gmail\&.com\fR\m[]\&\s-2\u[1]\d\s+2>
.sp
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version\&.
.SH "SEE ALSO"
.sp
\fBtig\fR(1), \fBtigmanual\fR(7), git(7), git\-config(1)
.SH "NOTES"
.IP " 1." 4
jonas.fonseca@gmail.com
.RS 4
\%mailto:jonas.fonseca@gmail.com
.RE