summaryrefslogtreecommitdiff
path: root/docs/coverage.html
blob: fb5d655ef8c7ab677fcc832ad3480d0cfb728839 (plain)
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
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143

<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<title>hexai-lsp: Go Coverage Report</title>
		<style>
			body {
				background: black;
				color: rgb(80, 80, 80);
			}
			body, pre, #legend span {
				font-family: Menlo, monospace;
				font-weight: bold;
			}
			#topbar {
				background: black;
				position: fixed;
				top: 0; left: 0; right: 0;
				height: 42px;
				border-bottom: 1px solid rgb(80, 80, 80);
			}
			#content {
				margin-top: 50px;
			}
			#nav, #legend {
				float: left;
				margin-left: 10px;
			}
			#legend {
				margin-top: 12px;
			}
			#nav {
				margin-top: 10px;
			}
			#legend span {
				margin: 0 5px;
			}
			.cov0 { color: rgb(192, 0, 0) }
.cov1 { color: rgb(128, 128, 128) }
.cov2 { color: rgb(116, 140, 131) }
.cov3 { color: rgb(104, 152, 134) }
.cov4 { color: rgb(92, 164, 137) }
.cov5 { color: rgb(80, 176, 140) }
.cov6 { color: rgb(68, 188, 143) }
.cov7 { color: rgb(56, 200, 146) }
.cov8 { color: rgb(44, 212, 149) }
.cov9 { color: rgb(32, 224, 152) }
.cov10 { color: rgb(20, 236, 155) }

		</style>
	</head>
	<body>
		<div id="topbar">
			<div id="nav">
				<select id="files">
				
				<option value="file0">codeberg.org/snonux/hexai/cmd/hexai-lsp/main.go (75.0%)</option>
				
				<option value="file1">codeberg.org/snonux/hexai/cmd/hexai-tmux-action/main.go (0.0%)</option>
				
				<option value="file2">codeberg.org/snonux/hexai/cmd/hexai/main.go (71.4%)</option>
				
				<option value="file3">codeberg.org/snonux/hexai/internal/appconfig/config.go (91.6%)</option>
				
				<option value="file4">codeberg.org/snonux/hexai/internal/hexaiaction/cmdentry.go (84.5%)</option>
				
				<option value="file5">codeberg.org/snonux/hexai/internal/hexaiaction/parse.go (92.6%)</option>
				
				<option value="file6">codeberg.org/snonux/hexai/internal/hexaiaction/prompts.go (91.9%)</option>
				
				<option value="file7">codeberg.org/snonux/hexai/internal/hexaiaction/run.go (71.8%)</option>
				
				<option value="file8">codeberg.org/snonux/hexai/internal/hexaiaction/tui.go (65.5%)</option>
				
				<option value="file9">codeberg.org/snonux/hexai/internal/hexaiaction/tui_delegate.go (100.0%)</option>
				
				<option value="file10">codeberg.org/snonux/hexai/internal/hexaicli/run.go (78.8%)</option>
				
				<option value="file11">codeberg.org/snonux/hexai/internal/hexailsp/run.go (92.5%)</option>
				
				<option value="file12">codeberg.org/snonux/hexai/internal/llm/copilot.go (82.4%)</option>
				
				<option value="file13">codeberg.org/snonux/hexai/internal/llm/ollama.go (89.8%)</option>
				
				<option value="file14">codeberg.org/snonux/hexai/internal/llm/openai.go (85.5%)</option>
				
				<option value="file15">codeberg.org/snonux/hexai/internal/llm/provider.go (100.0%)</option>
				
				<option value="file16">codeberg.org/snonux/hexai/internal/llm/util.go (100.0%)</option>
				
				<option value="file17">codeberg.org/snonux/hexai/internal/llmutils/client.go (100.0%)</option>
				
				<option value="file18">codeberg.org/snonux/hexai/internal/logging/chatlogger.go (100.0%)</option>
				
				<option value="file19">codeberg.org/snonux/hexai/internal/logging/logging.go (90.9%)</option>
				
				<option value="file20">codeberg.org/snonux/hexai/internal/lsp/context.go (74.4%)</option>
				
				<option value="file21">codeberg.org/snonux/hexai/internal/lsp/document.go (90.1%)</option>
				
				<option value="file22">codeberg.org/snonux/hexai/internal/lsp/handlers.go (92.9%)</option>
				
				<option value="file23">codeberg.org/snonux/hexai/internal/lsp/handlers_codeaction.go (81.9%)</option>
				
				<option value="file24">codeberg.org/snonux/hexai/internal/lsp/handlers_completion.go (87.6%)</option>
				
				<option value="file25">codeberg.org/snonux/hexai/internal/lsp/handlers_document.go (88.9%)</option>
				
				<option value="file26">codeberg.org/snonux/hexai/internal/lsp/handlers_execute.go (75.0%)</option>
				
				<option value="file27">codeberg.org/snonux/hexai/internal/lsp/handlers_init.go (66.7%)</option>
				
				<option value="file28">codeberg.org/snonux/hexai/internal/lsp/handlers_utils.go (89.0%)</option>
				
				<option value="file29">codeberg.org/snonux/hexai/internal/lsp/server.go (82.1%)</option>
				
				<option value="file30">codeberg.org/snonux/hexai/internal/lsp/transport.go (71.4%)</option>
				
				<option value="file31">codeberg.org/snonux/hexai/internal/testutil/fixtures.go (100.0%)</option>
				
				<option value="file32">codeberg.org/snonux/hexai/internal/textutil/textutil.go (89.0%)</option>
				
				<option value="file33">codeberg.org/snonux/hexai/internal/tmux/tmux.go (88.6%)</option>
				
				</select>
			</div>
			<div id="legend">
				<span>not tracked</span>
			
				<span class="cov0">no coverage</span>
				<span class="cov1">low coverage</span>
				<span class="cov2">*</span>
				<span class="cov3">*</span>
				<span class="cov4">*</span>
				<span class="cov5">*</span>
				<span class="cov6">*</span>
				<span class="cov7">*</span>
				<span class="cov8">*</span>
				<span class="cov9">*</span>
				<span class="cov10">high coverage</span>
			
			</div>
		</div>
		<div id="content">
		
		<pre class="file" id="file0" style="display: none">// Summary: Hexai LSP entrypoint; parses flags and delegates to internal/hexailsp.
package main

import (
        "flag"
        "log"
        "os"

        "codeberg.org/snonux/hexai/internal"
        "codeberg.org/snonux/hexai/internal/hexailsp"
)

func main() <span class="cov8" title="1">{
        logPath := flag.String("log", "/tmp/hexai-lsp.log", "path to log file (optional)")
        showVersion := flag.Bool("version", false, "print version and exit")
        flag.Parse()
        if *showVersion </span><span class="cov8" title="1">{
                log.Println(internal.Version)
                return
        }</span>

        <span class="cov0" title="0">if err := hexailsp.Run(*logPath, os.Stdin, os.Stdout, os.Stderr); err != nil </span><span class="cov0" title="0">{
                log.Fatalf("server error: %v", err)
        }</span>
}
</pre>
		
		<pre class="file" id="file1" style="display: none">package main

import (
    "context"
    "flag"
    "fmt"
    "os"

    "codeberg.org/snonux/hexai/internal/hexaiaction"
)

func main() <span class="cov0" title="0">{
    infile := flag.String("infile", "", "Read input from this file instead of stdin")
    outfile := flag.String("outfile", "", "Write output to this file instead of stdout")
    uiChild := flag.Bool("ui-child", false, "INTERNAL: run interactive UI and write to -outfile atomically")
    tmuxTarget := flag.String("tmux-target", "", "tmux split target (advanced)")
    tmuxSplit := flag.String("tmux-split", "v", "tmux split orientation: v or h")
    tmuxPercent := flag.Int("tmux-percent", 33, "tmux split size percentage (1-100)")
    flag.Parse()

    opts := hexaiaction.Options{
        Infile: *infile, Outfile: *outfile,
        UIChild: *uiChild, TmuxTarget: *tmuxTarget, TmuxSplit: *tmuxSplit, TmuxPercent: *tmuxPercent,
    }
    if err := hexaiaction.RunCommand(context.Background(), opts, os.Stdin, os.Stdout, os.Stderr); err != nil </span><span class="cov0" title="0">{
        fmt.Fprintln(os.Stderr, err)
        os.Exit(1)
    }</span>
}

</pre>
		
		<pre class="file" id="file2" style="display: none">// Summary: Hexai CLI entrypoint; parses flags and delegates to internal/hexaicli.
package main

import (
        "context"
        "flag"
        "fmt"
        "os"

        "codeberg.org/snonux/hexai/internal"
        "codeberg.org/snonux/hexai/internal/hexaicli"
)

func main() <span class="cov8" title="1">{
        showVersion := flag.Bool("version", false, "print version and exit")
        flag.Parse()
        if *showVersion </span><span class="cov8" title="1">{
                fmt.Fprintln(os.Stdout, internal.Version)
                return
        }</span>

        <span class="cov0" title="0">if err := hexaicli.Run(context.Background(), flag.Args(), os.Stdin, os.Stdout, os.Stderr); err != nil </span><span class="cov0" title="0">{
                os.Exit(1)
        }</span>
}
</pre>
		
		<pre class="file" id="file3" style="display: none">// Summary: Application configuration model and loader; reads ~/.config/hexai/config.toml and merges defaults.
package appconfig

import (
        "fmt"
        "log"
        "os"
        "path/filepath"
        "slices"
        "strconv"
        "strings"

        "github.com/pelletier/go-toml/v2"
)

// App holds user-configurable settings read from ~/.config/hexai/config.toml.
type App struct {
        MaxTokens          int    `json:"max_tokens" toml:"max_tokens"`
        ContextMode        string `json:"context_mode" toml:"context_mode"`
        ContextWindowLines int    `json:"context_window_lines" toml:"context_window_lines"`
        MaxContextTokens   int    `json:"max_context_tokens" toml:"max_context_tokens"`
        LogPreviewLimit    int    `json:"log_preview_limit" toml:"log_preview_limit"`
        // Single knob for LSP requests; if set, overrides hardcoded temps in LSP.
        CodingTemperature *float64 `json:"coding_temperature" toml:"coding_temperature"`
        // Minimum identifier characters required for manual (TriggerKind=1) invoke
        // to proceed without structural triggers. 0 means always allow.
        ManualInvokeMinPrefix int `json:"manual_invoke_min_prefix" toml:"manual_invoke_min_prefix"`

        // Completion debounce in milliseconds. When &gt; 0, the server waits until
        // there has been no text change for at least this duration before sending
        // an LLM completion request.
        CompletionDebounceMs int `json:"completion_debounce_ms" toml:"completion_debounce_ms"`
        // Completion throttle in milliseconds. When &gt; 0, caps the minimum spacing
        // between LLM requests (both chat and code-completer paths).
        CompletionThrottleMs int `json:"completion_throttle_ms" toml:"completion_throttle_ms"`

        TriggerCharacters []string `json:"trigger_characters" toml:"trigger_characters"`
        Provider          string   `json:"provider" toml:"provider"`

        // Inline prompt trigger characters (default: &gt;text&gt; and &gt;&gt;text&gt;)
        InlineOpen  string `json:"inline_open" toml:"inline_open"`
        InlineClose string `json:"inline_close" toml:"inline_close"`
        // In-editor chat triggers (default: suffix "&gt;" after one of [?, !, :, ;])
        ChatSuffix   string   `json:"chat_suffix" toml:"chat_suffix"`
        ChatPrefixes []string `json:"chat_prefixes" toml:"chat_prefixes"`

        // Provider-specific options
        OpenAIBaseURL string `json:"openai_base_url" toml:"openai_base_url"`
        OpenAIModel   string `json:"openai_model" toml:"openai_model"`
        // Default temperature for OpenAI requests (nil means use provider default)
        OpenAITemperature *float64 `json:"openai_temperature" toml:"openai_temperature"`
        OllamaBaseURL     string   `json:"ollama_base_url" toml:"ollama_base_url"`
        OllamaModel       string   `json:"ollama_model" toml:"ollama_model"`
        // Default temperature for Ollama requests (nil means use provider default)
        OllamaTemperature *float64 `json:"ollama_temperature" toml:"ollama_temperature"`
        CopilotBaseURL    string   `json:"copilot_base_url" toml:"copilot_base_url"`
        CopilotModel      string   `json:"copilot_model" toml:"copilot_model"`
        // Default temperature for Copilot requests (nil means use provider default)
        CopilotTemperature *float64 `json:"copilot_temperature" toml:"copilot_temperature"`

        // Prompt templates (configured only via file; no env overrides)
        // Completion/chat/code action/CLI prompt strings. See config.toml.example for placeholders.
        // Completion
        PromptCompletionSystemGeneral string `json:"-" toml:"-"`
        PromptCompletionSystemParams  string `json:"-" toml:"-"`
        PromptCompletionSystemInline  string `json:"-" toml:"-"`
        PromptCompletionUserGeneral   string `json:"-" toml:"-"`
        PromptCompletionUserParams    string `json:"-" toml:"-"`
        PromptCompletionExtraHeader   string `json:"-" toml:"-"`
        // Provider-native code-completer
        PromptNativeCompletion string `json:"-" toml:"-"`
        // In-editor chat
        PromptChatSystem string `json:"-" toml:"-"`
        // Code actions
        PromptCodeActionRewriteSystem     string `json:"-" toml:"-"`
        PromptCodeActionDiagnosticsSystem string `json:"-" toml:"-"`
        PromptCodeActionDocumentSystem    string `json:"-" toml:"-"`
        PromptCodeActionRewriteUser       string `json:"-" toml:"-"`
        PromptCodeActionDiagnosticsUser   string `json:"-" toml:"-"`
        PromptCodeActionDocumentUser      string `json:"-" toml:"-"`
        PromptCodeActionGoTestSystem      string `json:"-" toml:"-"`
        PromptCodeActionGoTestUser        string `json:"-" toml:"-"`
        // CLI
        PromptCLIDefaultSystem string `json:"-" toml:"-"`
        PromptCLIExplainSystem string `json:"-" toml:"-"`
}

// Constructor: defaults for App (kept first among functions)
func newDefaultConfig() App <span class="cov5" title="16">{
        // Coding-friendly default temperature across providers
        // Users can override per provider in config.toml (including 0.0).
        t := 0.2
        return App{
                MaxTokens:             4000,
                ContextMode:           "always-full",
                ContextWindowLines:    120,
                MaxContextTokens:      4000,
                LogPreviewLimit:       100,
                CodingTemperature:     &amp;t,
                OpenAITemperature:     &amp;t,
                OllamaTemperature:     &amp;t,
                CopilotTemperature:    &amp;t,
                ManualInvokeMinPrefix: 0,
                CompletionDebounceMs:  200,
                CompletionThrottleMs:  0,
                // Inline/chat trigger defaults
                InlineOpen:   "&gt;",
                InlineClose:  "&gt;",
                ChatSuffix:   "&gt;",
                ChatPrefixes: []string{"?", "!", ":", ";"},

                // Default prompt templates (match current hard-coded strings)
                PromptCompletionSystemParams:  "You are a code completion engine for function signatures. Return only the parameter list contents (without parentheses), no braces, no prose. Prefer idiomatic names and types.",
                PromptCompletionUserParams:    "Cursor is inside the function parameter list. Suggest only the parameter list (no parentheses).\nFunction line: {{function}}\nCurrent line (cursor at {{char}}): {{current}}",
                PromptCompletionSystemGeneral: "You are a terse code completion engine. Return only the code to insert, no surrounding prose or backticks. Only continue from the cursor; never repeat characters already present to the left of the cursor on the current line (e.g., if 'name :=' is already typed, only return the right-hand side expression).",
                PromptCompletionUserGeneral:   "Provide the next likely code to insert at the cursor.\nFile: {{file}}\nFunction/context: {{function}}\nAbove line: {{above}}\nCurrent line (cursor at character {{char}}): {{current}}\nBelow line: {{below}}\nOnly return the completion snippet.",
                PromptCompletionSystemInline:  "You are a precise code completion/refactoring engine. Output only the code to insert with no prose, no comments, and no backticks. Return raw code only.",
                PromptCompletionExtraHeader:   "Additional context:\n{{context}}",

                PromptNativeCompletion: "// Path: {{path}}\n{{before}}",

                PromptChatSystem: "You are a helpful coding assistant. Answer concisely and clearly.",

                PromptCodeActionRewriteSystem:     "You are a precise code refactoring engine. Rewrite the given code strictly according to the instruction. Return only the updated code with no prose or backticks. Preserve formatting where reasonable.",
                PromptCodeActionDiagnosticsSystem: "You are a precise code fixer. Resolve the given diagnostics by editing only the selected code. Return only the corrected code with no prose or backticks. Keep behavior and style, and avoid unrelated changes.",
                PromptCodeActionDocumentSystem:    "You are a precise code documentation engine. Add idiomatic documentation comments to the given code. Preserve exact behavior and formatting as much as possible. Return only the updated code with comments, no prose or backticks.",
                PromptCodeActionRewriteUser:       "Instruction: {{instruction}}\n\nSelected code to transform:\n{{selection}}",
                PromptCodeActionDiagnosticsUser:   "Diagnostics to resolve (selection only):\n{{diagnostics}}\n\nSelected code:\n{{selection}}",
                PromptCodeActionDocumentUser:      "Add documentation comments to this code:\n{{selection}}",
                PromptCodeActionGoTestSystem:      "You are a precise Go unit test generator. Given a Go function, write one or more Test* functions using the testing package. Do NOT include package or imports, only the test function(s). Prefer table-driven tests. Keep it minimal and idiomatic.",
                PromptCodeActionGoTestUser:        "Function under test:\n{{function}}",

                PromptCLIDefaultSystem: "You are Hexai CLI. Default to very short, concise answers. If the user asks for commands, output only the commands (one per line) with no commentary or explanation. Only when the word 'explain' appears in the prompt, produce a verbose explanation.",
                PromptCLIExplainSystem: "You are Hexai CLI. The user requested an explanation. Provide a clear, verbose explanation with reasoning and details. If commands are needed, include them with brief context.",
        }
}</span>

// Load reads configuration from a file and merges with defaults.
// It respects the XDG Base Directory Specification.
func Load(logger *log.Logger) App <span class="cov5" title="15">{
        cfg := newDefaultConfig()
        if logger == nil </span><span class="cov3" title="4">{
                return cfg // Return defaults if no logger is provided (e.g. in tests)
        }</span>

        <span class="cov4" title="11">configPath, err := getConfigPath()
        if err != nil </span><span class="cov0" title="0">{
                logger.Printf("%v", err)
                // Even if config path cannot be resolved, still allow env overrides below.
        }</span> else<span class="cov4" title="11"> {
                if fileCfg, err := loadFromFile(configPath, logger); err == nil &amp;&amp; fileCfg != nil </span><span class="cov3" title="4">{
                        cfg.mergeWith(fileCfg)
                }</span>
                // When the config file is missing or invalid, we keep defaults and still
                // apply any environment overrides below.
        }

        // Environment overrides (take precedence over file)
        <span class="cov4" title="11">if envCfg := loadFromEnv(logger); envCfg != nil </span><span class="cov1" title="1">{
                cfg.mergeWith(envCfg)
        }</span>
        <span class="cov4" title="11">return cfg</span>
}

// Private helpers
// Sectioned (table-based) file format only.
type fileConfig struct {
        // Section tables only (flat keys are not allowed)
        General    sectionGeneral    `toml:"general"`
        Logging    sectionLogging    `toml:"logging"`
        Completion sectionCompletion `toml:"completion"`
        Triggers   sectionTriggers   `toml:"triggers"`
        Inline     sectionInline     `toml:"inline"`
        Chat       sectionChat       `toml:"chat"`
        Provider   sectionProvider   `toml:"provider"`
        OpenAI     sectionOpenAI     `toml:"openai"`
        Copilot    sectionCopilot    `toml:"copilot"`
        Ollama     sectionOllama     `toml:"ollama"`
        Prompts    sectionPrompts    `toml:"prompts"`
}

type sectionGeneral struct {
        MaxTokens          int      `toml:"max_tokens"`
        ContextMode        string   `toml:"context_mode"`
        ContextWindowLines int      `toml:"context_window_lines"`
        MaxContextTokens   int      `toml:"max_context_tokens"`
        CodingTemperature  *float64 `toml:"coding_temperature"`
}

type sectionLogging struct {
        LogPreviewLimit int `toml:"log_preview_limit"`
}

type sectionCompletion struct {
        CompletionDebounceMs  int `toml:"completion_debounce_ms"`
        CompletionThrottleMs  int `toml:"completion_throttle_ms"`
        ManualInvokeMinPrefix int `toml:"manual_invoke_min_prefix"`
}

type sectionTriggers struct {
        TriggerCharacters []string `toml:"trigger_characters"`
}

type sectionInline struct {
        InlineOpen  string `toml:"inline_open"`
        InlineClose string `toml:"inline_close"`
}

type sectionChat struct {
        ChatSuffix   string   `toml:"chat_suffix"`
        ChatPrefixes []string `toml:"chat_prefixes"`
}

type sectionProvider struct {
        Name string `toml:"name"`
}

type sectionOpenAI struct {
        Model       string   `toml:"model"`
        BaseURL     string   `toml:"base_url"`
        Temperature *float64 `toml:"temperature"`
}

type sectionCopilot struct {
        Model       string   `toml:"model"`
        BaseURL     string   `toml:"base_url"`
        Temperature *float64 `toml:"temperature"`
}

type sectionOllama struct {
        Model       string   `toml:"model"`
        BaseURL     string   `toml:"base_url"`
        Temperature *float64 `toml:"temperature"`
}

// Prompts sections
type sectionPrompts struct {
        Completion     sectionPromptsCompletion     `toml:"completion"`
        Chat           sectionPromptsChat           `toml:"chat"`
        CodeAction     sectionPromptsCodeAction     `toml:"code_action"`
        CLI            sectionPromptsCLI            `toml:"cli"`
        ProviderNative sectionPromptsProviderNative `toml:"provider_native"`
}

type sectionPromptsCompletion struct {
        SystemGeneral string `toml:"system_general"`
        SystemParams  string `toml:"system_params"`
        SystemInline  string `toml:"system_inline"`
        UserGeneral   string `toml:"user_general"`
        UserParams    string `toml:"user_params"`
        ExtraHeader   string `toml:"additional_context"`
}

type sectionPromptsChat struct {
        System string `toml:"system"`
}

type sectionPromptsCodeAction struct {
        RewriteSystem     string `toml:"rewrite_system"`
        DiagnosticsSystem string `toml:"diagnostics_system"`
        DocumentSystem    string `toml:"document_system"`
        RewriteUser       string `toml:"rewrite_user"`
        DiagnosticsUser   string `toml:"diagnostics_user"`
        DocumentUser      string `toml:"document_user"`
        GoTestSystem      string `toml:"go_test_system"`
        GoTestUser        string `toml:"go_test_user"`
}

type sectionPromptsCLI struct {
        DefaultSystem string `toml:"default_system"`
        ExplainSystem string `toml:"explain_system"`
}

type sectionPromptsProviderNative struct {
        Completion string `toml:"completion"`
}

func (fc *fileConfig) toApp() App <span class="cov3" title="4">{
        out := App{}

        // Merge section: general
        if (fc.General != sectionGeneral{}) || fc.General.CodingTemperature != nil </span><span class="cov2" title="3">{
                tmp := App{
                        MaxTokens:          fc.General.MaxTokens,
                        ContextMode:        fc.General.ContextMode,
                        ContextWindowLines: fc.General.ContextWindowLines,
                        MaxContextTokens:   fc.General.MaxContextTokens,
                        CodingTemperature:  fc.General.CodingTemperature,
                }
                out.mergeBasics(&amp;tmp)
        }</span>

        // logging
        <span class="cov3" title="4">if (fc.Logging != sectionLogging{}) </span><span class="cov1" title="1">{
                tmp := App{LogPreviewLimit: fc.Logging.LogPreviewLimit}
                out.mergeBasics(&amp;tmp)
        }</span>

        // completion
        <span class="cov3" title="4">if (fc.Completion != sectionCompletion{}) </span><span class="cov2" title="3">{
                tmp := App{
                        CompletionDebounceMs:  fc.Completion.CompletionDebounceMs,
                        CompletionThrottleMs:  fc.Completion.CompletionThrottleMs,
                        ManualInvokeMinPrefix: fc.Completion.ManualInvokeMinPrefix,
                }
                out.mergeBasics(&amp;tmp)
        }</span>

        // triggers
        <span class="cov3" title="4">if len(fc.Triggers.TriggerCharacters) &gt; 0 </span><span class="cov2" title="3">{
                tmp := App{TriggerCharacters: fc.Triggers.TriggerCharacters}
                out.mergeBasics(&amp;tmp)
        }</span>

        // inline
        <span class="cov3" title="4">if (fc.Inline != sectionInline{}) </span><span class="cov1" title="1">{
                tmp := App{InlineOpen: fc.Inline.InlineOpen, InlineClose: fc.Inline.InlineClose}
                out.mergeBasics(&amp;tmp)
        }</span>

        // chat
        <span class="cov3" title="4">if strings.TrimSpace(fc.Chat.ChatSuffix) != "" || len(fc.Chat.ChatPrefixes) &gt; 0 </span><span class="cov1" title="1">{
                tmp := App{ChatSuffix: fc.Chat.ChatSuffix, ChatPrefixes: fc.Chat.ChatPrefixes}
                out.mergeBasics(&amp;tmp)
        }</span>

        // provider
        <span class="cov3" title="4">if strings.TrimSpace(fc.Provider.Name) != "" </span><span class="cov2" title="3">{
                tmp := App{Provider: fc.Provider.Name}
                out.mergeBasics(&amp;tmp)
        }</span>

        // openai
        <span class="cov3" title="4">if (fc.OpenAI != sectionOpenAI{}) || fc.OpenAI.Temperature != nil </span><span class="cov2" title="3">{
                tmp := App{
                        OpenAIBaseURL:     fc.OpenAI.BaseURL,
                        OpenAIModel:       fc.OpenAI.Model,
                        OpenAITemperature: fc.OpenAI.Temperature,
                }
                out.mergeProviderFields(&amp;tmp)
        }</span>

        // copilot
        <span class="cov3" title="4">if (fc.Copilot != sectionCopilot{}) || fc.Copilot.Temperature != nil </span><span class="cov2" title="3">{
                tmp := App{
                        CopilotBaseURL:     fc.Copilot.BaseURL,
                        CopilotModel:       fc.Copilot.Model,
                        CopilotTemperature: fc.Copilot.Temperature,
                }
                out.mergeProviderFields(&amp;tmp)
        }</span>

        // ollama
        <span class="cov3" title="4">if (fc.Ollama != sectionOllama{}) || fc.Ollama.Temperature != nil </span><span class="cov2" title="3">{
                tmp := App{
                        OllamaBaseURL:     fc.Ollama.BaseURL,
                        OllamaModel:       fc.Ollama.Model,
                        OllamaTemperature: fc.Ollama.Temperature,
                }
                out.mergeProviderFields(&amp;tmp)
        }</span>

        // prompts
        // completion
        <span class="cov3" title="4">if (fc.Prompts.Completion != sectionPromptsCompletion{}) </span><span class="cov1" title="1">{
                if strings.TrimSpace(fc.Prompts.Completion.SystemGeneral) != "" </span><span class="cov1" title="1">{
                        out.PromptCompletionSystemGeneral = fc.Prompts.Completion.SystemGeneral
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.Completion.SystemParams) != "" </span><span class="cov1" title="1">{
                        out.PromptCompletionSystemParams = fc.Prompts.Completion.SystemParams
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.Completion.SystemInline) != "" </span><span class="cov1" title="1">{
                        out.PromptCompletionSystemInline = fc.Prompts.Completion.SystemInline
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.Completion.UserGeneral) != "" </span><span class="cov1" title="1">{
                        out.PromptCompletionUserGeneral = fc.Prompts.Completion.UserGeneral
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.Completion.UserParams) != "" </span><span class="cov1" title="1">{
                        out.PromptCompletionUserParams = fc.Prompts.Completion.UserParams
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.Completion.ExtraHeader) != "" </span><span class="cov1" title="1">{
                        out.PromptCompletionExtraHeader = fc.Prompts.Completion.ExtraHeader
                }</span>
        }
        // chat
        <span class="cov3" title="4">if strings.TrimSpace(fc.Prompts.Chat.System) != "" </span><span class="cov1" title="1">{
                out.PromptChatSystem = fc.Prompts.Chat.System
        }</span>
        // code action
        <span class="cov3" title="4">if (fc.Prompts.CodeAction != sectionPromptsCodeAction{}) </span><span class="cov1" title="1">{
                if strings.TrimSpace(fc.Prompts.CodeAction.RewriteSystem) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionRewriteSystem = fc.Prompts.CodeAction.RewriteSystem
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CodeAction.DiagnosticsSystem) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionDiagnosticsSystem = fc.Prompts.CodeAction.DiagnosticsSystem
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CodeAction.DocumentSystem) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionDocumentSystem = fc.Prompts.CodeAction.DocumentSystem
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CodeAction.RewriteUser) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionRewriteUser = fc.Prompts.CodeAction.RewriteUser
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CodeAction.DiagnosticsUser) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionDiagnosticsUser = fc.Prompts.CodeAction.DiagnosticsUser
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CodeAction.DocumentUser) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionDocumentUser = fc.Prompts.CodeAction.DocumentUser
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CodeAction.GoTestSystem) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionGoTestSystem = fc.Prompts.CodeAction.GoTestSystem
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CodeAction.GoTestUser) != "" </span><span class="cov1" title="1">{
                        out.PromptCodeActionGoTestUser = fc.Prompts.CodeAction.GoTestUser
                }</span>
        }
        // cli
        <span class="cov3" title="4">if (fc.Prompts.CLI != sectionPromptsCLI{}) </span><span class="cov1" title="1">{
                if strings.TrimSpace(fc.Prompts.CLI.DefaultSystem) != "" </span><span class="cov1" title="1">{
                        out.PromptCLIDefaultSystem = fc.Prompts.CLI.DefaultSystem
                }</span>
                <span class="cov1" title="1">if strings.TrimSpace(fc.Prompts.CLI.ExplainSystem) != "" </span><span class="cov1" title="1">{
                        out.PromptCLIExplainSystem = fc.Prompts.CLI.ExplainSystem
                }</span>
        }
        // provider-native
        <span class="cov3" title="4">if strings.TrimSpace(fc.Prompts.ProviderNative.Completion) != "" </span><span class="cov1" title="1">{
                out.PromptNativeCompletion = fc.Prompts.ProviderNative.Completion
        }</span>

        <span class="cov3" title="4">return out</span>
}

func loadFromFile(path string, logger *log.Logger) (*App, error) <span class="cov5" title="12">{
        b, err := os.ReadFile(path)
        if err != nil </span><span class="cov3" title="6">{
                if !os.IsNotExist(err) &amp;&amp; logger != nil </span><span class="cov0" title="0">{
                        logger.Printf("cannot open TOML config file %s: %v", path, err)
                }</span>
                <span class="cov3" title="6">return nil, err</span>
        }

        <span class="cov3" title="6">var tables fileConfig
        errTables := toml.NewDecoder(strings.NewReader(string(b))).Decode(&amp;tables)
        // Raw map for validation/presence checks
        var raw map[string]any
        _ = toml.Unmarshal(b, &amp;raw)
        if errTables != nil </span><span class="cov2" title="2">{
                if logger != nil </span><span class="cov2" title="2">{
                        logger.Printf("invalid TOML config file %s: %v", path, errTables)
                }</span>
                <span class="cov2" title="2">return nil, errTables</span>
        }

        // Reject legacy flat keys at top-level (sectioned-only config is allowed)
        <span class="cov3" title="4">legacy := map[string]struct{}{
                "max_tokens": {}, "context_mode": {}, "context_window_lines": {}, "max_context_tokens": {},
                "log_preview_limit": {}, "completion_debounce_ms": {}, "completion_throttle_ms": {},
                "manual_invoke_min_prefix": {}, "trigger_characters": {}, "inline_open": {}, "inline_close": {},
                "chat_suffix": {}, "chat_prefixes": {}, "coding_temperature": {}, "provider": {},
                "openai_model": {}, "openai_base_url": {}, "openai_temperature": {},
                "ollama_model": {}, "ollama_base_url": {}, "ollama_temperature": {},
                "copilot_model": {}, "copilot_base_url": {}, "copilot_temperature": {},
        }
        for k := range raw </span><span class="cov6" title="27">{
                if _, isTable := map[string]struct{}{"general": {}, "logging": {}, "completion": {}, "triggers": {}, "inline": {}, "chat": {}, "provider": {}, "openai": {}, "copilot": {}, "ollama": {}, "prompts": {}}[k]; isTable </span><span class="cov6" title="27">{
                        continue</span>
                }
                <span class="cov0" title="0">if _, isLegacy := legacy[k]; isLegacy </span><span class="cov0" title="0">{
                        return nil, fmt.Errorf("unsupported flat key '%s' in config; use sectioned tables (see config.toml.example)", k)
                }</span>
        }

        <span class="cov3" title="4">if logger != nil </span><span class="cov3" title="4">{
                logger.Printf("loaded configuration from %s (TOML)", path)
        }</span>

        // Merge order: flat first, then tables (so tables win over zero flat values)
        // Build App from tables only
        <span class="cov3" title="4">tab := tables.toApp()
        // Ensure explicit values from raw map are respected (defensive for ints)
        if t, ok := raw["completion"].(map[string]any); ok </span><span class="cov2" title="3">{
                if v, present := t["manual_invoke_min_prefix"]; present </span><span class="cov2" title="3">{
                        switch vv := v.(type) </span>{
                        case int64:<span class="cov2" title="3">
                                tab.ManualInvokeMinPrefix = int(vv)</span>
                        case int:<span class="cov0" title="0">
                                tab.ManualInvokeMinPrefix = vv</span>
                        case float64:<span class="cov0" title="0">
                                tab.ManualInvokeMinPrefix = int(vv)</span>
                        }
                }
        }
        <span class="cov3" title="4">if t, ok := raw["logging"].(map[string]any); ok </span><span class="cov2" title="3">{
                if v, present := t["log_preview_limit"]; present </span><span class="cov2" title="3">{
                        switch vv := v.(type) </span>{
                        case int64:<span class="cov2" title="3">
                                tab.LogPreviewLimit = int(vv)</span>
                        case int:<span class="cov0" title="0">
                                tab.LogPreviewLimit = vv</span>
                        case float64:<span class="cov0" title="0">
                                tab.LogPreviewLimit = int(vv)</span>
                        }
                }
        }
        <span class="cov3" title="4">return &amp;tab, nil</span>
}

func (a *App) mergeWith(other *App) <span class="cov3" title="5">{
        a.mergeBasics(other)
        a.mergeProviderFields(other)
        a.mergePrompts(other)
}</span>

// mergeBasics merges general (non-provider) fields.
func (a *App) mergeBasics(other *App) <span class="cov5" title="20">{
        if other.MaxTokens &gt; 0 </span><span class="cov4" title="7">{
                a.MaxTokens = other.MaxTokens
        }</span>
        <span class="cov5" title="20">if s := strings.TrimSpace(other.ContextMode); s != "" </span><span class="cov4" title="7">{
                a.ContextMode = s
        }</span>
        <span class="cov5" title="20">if other.ContextWindowLines &gt; 0 </span><span class="cov4" title="7">{
                a.ContextWindowLines = other.ContextWindowLines
        }</span>
        <span class="cov5" title="20">if other.MaxContextTokens &gt; 0 </span><span class="cov4" title="7">{
                a.MaxContextTokens = other.MaxContextTokens
        }</span>
        <span class="cov5" title="20">if other.LogPreviewLimit &gt;= 0 </span><span class="cov5" title="20">{
                a.LogPreviewLimit = other.LogPreviewLimit
        }</span>
        <span class="cov5" title="20">if other.CodingTemperature != nil </span><span class="cov4" title="7">{ // allow explicit 0.0
                a.CodingTemperature = other.CodingTemperature
        }</span>
        <span class="cov5" title="20">if other.ManualInvokeMinPrefix &gt;= 0 </span><span class="cov5" title="20">{
                a.ManualInvokeMinPrefix = other.ManualInvokeMinPrefix
        }</span>
        <span class="cov5" title="20">if other.CompletionDebounceMs &gt; 0 </span><span class="cov4" title="7">{
                a.CompletionDebounceMs = other.CompletionDebounceMs
        }</span>
        <span class="cov5" title="20">if other.CompletionThrottleMs &gt; 0 </span><span class="cov4" title="7">{
                a.CompletionThrottleMs = other.CompletionThrottleMs
        }</span>
        <span class="cov5" title="20">if len(other.TriggerCharacters) &gt; 0 </span><span class="cov4" title="7">{
                a.TriggerCharacters = slices.Clone(other.TriggerCharacters)
        }</span>
        <span class="cov5" title="20">if s := strings.TrimSpace(other.InlineOpen); s != "" </span><span class="cov2" title="2">{
                a.InlineOpen = s
        }</span>
        <span class="cov5" title="20">if s := strings.TrimSpace(other.InlineClose); s != "" </span><span class="cov2" title="2">{
                a.InlineClose = s
        }</span>
        <span class="cov5" title="20">if s := strings.TrimSpace(other.ChatSuffix); s != "" </span><span class="cov2" title="2">{
                a.ChatSuffix = s
        }</span>
        <span class="cov5" title="20">if len(other.ChatPrefixes) &gt; 0 </span><span class="cov2" title="2">{
                a.ChatPrefixes = slices.Clone(other.ChatPrefixes)
        }</span>
        <span class="cov5" title="20">if s := strings.TrimSpace(other.Provider); s != "" </span><span class="cov4" title="7">{
                a.Provider = s
        }</span>
}

// mergePrompts copies non-empty prompt templates from other.
func (a *App) mergePrompts(other *App) <span class="cov3" title="5">{
        // Completion
        if strings.TrimSpace(other.PromptCompletionSystemGeneral) != "" </span><span class="cov1" title="1">{
                a.PromptCompletionSystemGeneral = other.PromptCompletionSystemGeneral
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCompletionSystemParams) != "" </span><span class="cov1" title="1">{
                a.PromptCompletionSystemParams = other.PromptCompletionSystemParams
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCompletionSystemInline) != "" </span><span class="cov1" title="1">{
                a.PromptCompletionSystemInline = other.PromptCompletionSystemInline
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCompletionUserGeneral) != "" </span><span class="cov1" title="1">{
                a.PromptCompletionUserGeneral = other.PromptCompletionUserGeneral
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCompletionUserParams) != "" </span><span class="cov1" title="1">{
                a.PromptCompletionUserParams = other.PromptCompletionUserParams
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCompletionExtraHeader) != "" </span><span class="cov1" title="1">{
                a.PromptCompletionExtraHeader = other.PromptCompletionExtraHeader
        }</span>
        // Provider-native
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptNativeCompletion) != "" </span><span class="cov1" title="1">{
                a.PromptNativeCompletion = other.PromptNativeCompletion
        }</span>
        // Chat
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptChatSystem) != "" </span><span class="cov1" title="1">{
                a.PromptChatSystem = other.PromptChatSystem
        }</span>
        // Code actions
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionRewriteSystem) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionRewriteSystem = other.PromptCodeActionRewriteSystem
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionDiagnosticsSystem) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionDiagnosticsSystem = other.PromptCodeActionDiagnosticsSystem
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionDocumentSystem) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionDocumentSystem = other.PromptCodeActionDocumentSystem
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionRewriteUser) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionRewriteUser = other.PromptCodeActionRewriteUser
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionDiagnosticsUser) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionDiagnosticsUser = other.PromptCodeActionDiagnosticsUser
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionDocumentUser) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionDocumentUser = other.PromptCodeActionDocumentUser
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionGoTestSystem) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionGoTestSystem = other.PromptCodeActionGoTestSystem
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCodeActionGoTestUser) != "" </span><span class="cov1" title="1">{
                a.PromptCodeActionGoTestUser = other.PromptCodeActionGoTestUser
        }</span>
        // CLI
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCLIDefaultSystem) != "" </span><span class="cov1" title="1">{
                a.PromptCLIDefaultSystem = other.PromptCLIDefaultSystem
        }</span>
        <span class="cov3" title="5">if strings.TrimSpace(other.PromptCLIExplainSystem) != "" </span><span class="cov1" title="1">{
                a.PromptCLIExplainSystem = other.PromptCLIExplainSystem
        }</span>
}

// mergeProviderFields merges per-provider configuration.
func (a *App) mergeProviderFields(other *App) <span class="cov5" title="14">{
        if s := strings.TrimSpace(other.OpenAIBaseURL); s != "" </span><span class="cov4" title="7">{
                a.OpenAIBaseURL = s
        }</span>
        <span class="cov5" title="14">if s := strings.TrimSpace(other.OpenAIModel); s != "" </span><span class="cov4" title="7">{
                a.OpenAIModel = s
        }</span>
        <span class="cov5" title="14">if other.OpenAITemperature != nil </span><span class="cov4" title="7">{ // allow explicit 0.0
                a.OpenAITemperature = other.OpenAITemperature
        }</span>
        <span class="cov5" title="14">if s := strings.TrimSpace(other.OllamaBaseURL); s != "" </span><span class="cov4" title="7">{
                a.OllamaBaseURL = s
        }</span>
        <span class="cov5" title="14">if s := strings.TrimSpace(other.OllamaModel); s != "" </span><span class="cov4" title="7">{
                a.OllamaModel = s
        }</span>
        <span class="cov5" title="14">if other.OllamaTemperature != nil </span><span class="cov4" title="7">{ // allow explicit 0.0
                a.OllamaTemperature = other.OllamaTemperature
        }</span>
        <span class="cov5" title="14">if s := strings.TrimSpace(other.CopilotBaseURL); s != "" </span><span class="cov4" title="7">{
                a.CopilotBaseURL = s
        }</span>
        <span class="cov5" title="14">if s := strings.TrimSpace(other.CopilotModel); s != "" </span><span class="cov4" title="7">{
                a.CopilotModel = s
        }</span>
        <span class="cov5" title="14">if other.CopilotTemperature != nil </span><span class="cov4" title="7">{ // allow explicit 0.0
                a.CopilotTemperature = other.CopilotTemperature
        }</span>
}

func getConfigPath() (string, error) <span class="cov5" title="12">{
        var configPath string
        if xdgConfigHome := os.Getenv("XDG_CONFIG_HOME"); xdgConfigHome != "" </span><span class="cov4" title="7">{
                configPath = filepath.Join(xdgConfigHome, "hexai", "config.toml")
        }</span> else<span class="cov3" title="5"> {
                home, err := os.UserHomeDir()
                if err != nil </span><span class="cov0" title="0">{
                        return "", fmt.Errorf("cannot find user home directory: %v", err)
                }</span>
                <span class="cov3" title="5">configPath = filepath.Join(home, ".config", "hexai", "config.toml")</span>
        }
        <span class="cov5" title="12">return configPath, nil</span>
}

// --- Environment overrides ---

// loadFromEnv constructs an App containing only fields set via HEXAI_* env vars.
// These values should take precedence over file config when merged.
func loadFromEnv(logger *log.Logger) *App <span class="cov4" title="11">{
        var out App
        var any bool

        // helpers
        getenv := func(k string) string </span><span class="cov10" title="264">{ return strings.TrimSpace(os.Getenv(k)) }</span>
        <span class="cov4" title="11">parseInt := func(k string) (int, bool) </span><span class="cov8" title="77">{
                v := getenv(k)
                if v == "" </span><span class="cov7" title="70">{
                        return 0, false
                }</span>
                <span class="cov4" title="7">n, err := strconv.Atoi(v)
                if err != nil </span><span class="cov0" title="0">{
                        if logger != nil </span><span class="cov0" title="0">{
                                logger.Printf("invalid %s: %v", k, err)
                        }</span>
                        <span class="cov0" title="0">return 0, false</span>
                }
                <span class="cov4" title="7">return n, true</span>
        }
        <span class="cov4" title="11">parseFloatPtr := func(k string) (*float64, bool) </span><span class="cov7" title="44">{
                v := getenv(k)
                if v == "" </span><span class="cov6" title="40">{
                        return nil, false
                }</span>
                <span class="cov3" title="4">f, err := strconv.ParseFloat(v, 64)
                if err != nil </span><span class="cov0" title="0">{
                        if logger != nil </span><span class="cov0" title="0">{
                                logger.Printf("invalid %s: %v", k, err)
                        }</span>
                        <span class="cov0" title="0">return nil, false</span>
                }
                <span class="cov3" title="4">return &amp;f, true</span>
        }

        <span class="cov4" title="11">if n, ok := parseInt("HEXAI_MAX_TOKENS"); ok </span><span class="cov1" title="1">{
                out.MaxTokens = n
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_CONTEXT_MODE"); s != "" </span><span class="cov1" title="1">{
                out.ContextMode = s
                any = true
        }</span>
        <span class="cov4" title="11">if n, ok := parseInt("HEXAI_CONTEXT_WINDOW_LINES"); ok </span><span class="cov1" title="1">{
                out.ContextWindowLines = n
                any = true
        }</span>
        <span class="cov4" title="11">if n, ok := parseInt("HEXAI_MAX_CONTEXT_TOKENS"); ok </span><span class="cov1" title="1">{
                out.MaxContextTokens = n
                any = true
        }</span>
        <span class="cov4" title="11">if n, ok := parseInt("HEXAI_LOG_PREVIEW_LIMIT"); ok </span><span class="cov1" title="1">{
                out.LogPreviewLimit = n
                any = true
        }</span>
        <span class="cov4" title="11">if n, ok := parseInt("HEXAI_MANUAL_INVOKE_MIN_PREFIX"); ok </span><span class="cov1" title="1">{
                out.ManualInvokeMinPrefix = n
                any = true
        }</span>
        <span class="cov4" title="11">if n, ok := parseInt("HEXAI_COMPLETION_DEBOUNCE_MS"); ok </span><span class="cov1" title="1">{
                out.CompletionDebounceMs = n
                any = true
        }</span>
        <span class="cov4" title="11">if n, ok := parseInt("HEXAI_COMPLETION_THROTTLE_MS"); ok </span><span class="cov1" title="1">{
                out.CompletionThrottleMs = n
                any = true
        }</span>
        <span class="cov4" title="11">if f, ok := parseFloatPtr("HEXAI_CODING_TEMPERATURE"); ok </span><span class="cov1" title="1">{
                out.CodingTemperature = f
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_TRIGGER_CHARACTERS"); s != "" </span><span class="cov1" title="1">{
                parts := strings.Split(s, ",")
                out.TriggerCharacters = nil
                for _, p := range parts </span><span class="cov2" title="3">{
                        if t := strings.TrimSpace(p); t != "" </span><span class="cov2" title="3">{
                                out.TriggerCharacters = append(out.TriggerCharacters, t)
                        }</span>
                }
                <span class="cov1" title="1">any = true</span>
        }
        <span class="cov4" title="11">if s := getenv("HEXAI_INLINE_OPEN"); s != "" </span><span class="cov0" title="0">{
                out.InlineOpen = s
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_INLINE_CLOSE"); s != "" </span><span class="cov0" title="0">{
                out.InlineClose = s
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_CHAT_SUFFIX"); s != "" </span><span class="cov0" title="0">{
                out.ChatSuffix = s
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_CHAT_PREFIXES"); s != "" </span><span class="cov0" title="0">{
                parts := strings.Split(s, ",")
                out.ChatPrefixes = nil
                for _, p := range parts </span><span class="cov0" title="0">{
                        if t := strings.TrimSpace(p); t != "" </span><span class="cov0" title="0">{
                                out.ChatPrefixes = append(out.ChatPrefixes, t)
                        }</span>
                }
                <span class="cov0" title="0">any = true</span>
        }
        <span class="cov4" title="11">if s := getenv("HEXAI_PROVIDER"); s != "" </span><span class="cov1" title="1">{
                out.Provider = s
                any = true
        }</span>

        // Provider-specific
        <span class="cov4" title="11">if s := getenv("HEXAI_OPENAI_BASE_URL"); s != "" </span><span class="cov1" title="1">{
                out.OpenAIBaseURL = s
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_OPENAI_MODEL"); s != "" </span><span class="cov1" title="1">{
                out.OpenAIModel = s
                any = true
        }</span>
        <span class="cov4" title="11">if f, ok := parseFloatPtr("HEXAI_OPENAI_TEMPERATURE"); ok </span><span class="cov1" title="1">{
                out.OpenAITemperature = f
                any = true
        }</span>

        <span class="cov4" title="11">if s := getenv("HEXAI_OLLAMA_BASE_URL"); s != "" </span><span class="cov1" title="1">{
                out.OllamaBaseURL = s
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_OLLAMA_MODEL"); s != "" </span><span class="cov1" title="1">{
                out.OllamaModel = s
                any = true
        }</span>
        <span class="cov4" title="11">if f, ok := parseFloatPtr("HEXAI_OLLAMA_TEMPERATURE"); ok </span><span class="cov1" title="1">{
                out.OllamaTemperature = f
                any = true
        }</span>

        <span class="cov4" title="11">if s := getenv("HEXAI_COPILOT_BASE_URL"); s != "" </span><span class="cov1" title="1">{
                out.CopilotBaseURL = s
                any = true
        }</span>
        <span class="cov4" title="11">if s := getenv("HEXAI_COPILOT_MODEL"); s != "" </span><span class="cov1" title="1">{
                out.CopilotModel = s
                any = true
        }</span>
        <span class="cov4" title="11">if f, ok := parseFloatPtr("HEXAI_COPILOT_TEMPERATURE"); ok </span><span class="cov1" title="1">{
                out.CopilotTemperature = f
                any = true
        }</span>

        <span class="cov4" title="11">if !any </span><span class="cov4" title="10">{
                return nil
        }</span>
        <span class="cov1" title="1">return &amp;out</span>
}
</pre>
		
		<pre class="file" id="file4" style="display: none">package hexaiaction

import (
    "context"
    "fmt"
    "io"
    "os"
    "path/filepath"
    "time"

    "codeberg.org/snonux/hexai/internal/tmux"
    "golang.org/x/term"
)

// Options configures the command-line orchestration for hexai-tmux-action.
type Options struct {
    Infile       string
    Outfile      string
    UIChild      bool
    TmuxTarget   string
    TmuxSplit    string // "v" or "h"
    TmuxPercent  int    // 1-100
}

// RunCommand is the CLI orchestrator used by cmd/hexai-tmux-action. It runs in tmux
// split-pane mode by default, or child mode when -ui-child is set.
func RunCommand(ctx context.Context, opts Options, stdin io.Reader, stdout, stderr io.Writer) error <span class="cov4" title="2">{
    if opts.UIChild </span><span class="cov1" title="1">{
        return runChild(ctx, opts.Infile, opts.Outfile, stdout, stderr)
    }</span>
    // Always use tmux path
    <span class="cov1" title="1">return runInTmuxParent(stdin, stdout, opts.TmuxTarget, opts.TmuxSplit, opts.TmuxPercent)</span>
}

// seams for unit tests
var isTTYFn = func(fd uintptr) bool <span class="cov0" title="0">{ return term.IsTerminal(int(fd)) }</span>
var splitRunFn = tmux.SplitRun
var osExecutableFn = os.Executable
var runFn = Run

// openIO returns readers/writers for infile/outfile flags with deferred closers.
func openIO(infile, outfile string) (io.Reader, io.Writer, func(), func(), error) <span class="cov7" title="3">{
    in := io.Reader(os.Stdin)
    out := io.Writer(os.Stdout)
    closeIn := func() </span>{<span class="cov0" title="0">}</span>
    <span class="cov7" title="3">closeOut := func() </span>{<span class="cov0" title="0">}</span>
    <span class="cov7" title="3">if path := infile; path != "" </span><span class="cov7" title="3">{
        f, err := os.Open(path)
        if err != nil </span><span class="cov0" title="0">{ return nil, nil, func()</span>{<span class="cov0" title="0">}</span>, func(){<span class="cov0" title="0">}</span>, fmt.Errorf("hexai-tmux-action: cannot open infile: %w", err) }
        <span class="cov7" title="3">in = f
        closeIn = func() </span><span class="cov7" title="3">{ _ = f.Close() }</span>
    }
    <span class="cov7" title="3">if path := outfile; path != "" </span><span class="cov7" title="3">{
        f, err := os.Create(path)
        if err != nil </span><span class="cov0" title="0">{ return nil, nil, func()</span>{<span class="cov0" title="0">}</span>, func(){<span class="cov0" title="0">}</span>, fmt.Errorf("hexai-tmux-action: cannot open outfile: %w", err) }
        <span class="cov7" title="3">out = f
        closeOut = func() </span><span class="cov7" title="3">{ _ = f.Close() }</span>
    }
    <span class="cov7" title="3">return in, out, closeIn, closeOut, nil</span>
}

// runChild runs the interactive flow and writes the final output atomically when outfile is set.
func runChild(ctx context.Context, infile, outfile string, stdout, stderr io.Writer) error <span class="cov7" title="3">{
    if outfile == "" </span><span class="cov1" title="1">{
        // No atomic handoff needed; just run normally to provided stdout
        var in io.Reader = os.Stdin
        if infile != "" </span><span class="cov1" title="1">{
            f, err := os.Open(infile)
            if err != nil </span><span class="cov0" title="0">{ return err }</span>
            <span class="cov1" title="1">defer func()</span><span class="cov1" title="1">{ _ = f.Close() }</span>()
            <span class="cov1" title="1">in = f</span>
        }
        <span class="cov1" title="1">return runFn(ctx, in, stdout, stderr)</span>
    }
    <span class="cov4" title="2">tmp := outfile + ".tmp"
    in, out, closeIn, closeOut, err := openIO(infile, tmp)
    if err != nil </span><span class="cov0" title="0">{ return err }</span>
    <span class="cov4" title="2">defer closeIn()
    if err := runFn(ctx, in, out, stderr); err != nil </span><span class="cov0" title="0">{
        closeOut()
        if copyErr := echoThrough(infile, tmp, os.Stdin, stdout); copyErr != nil </span><span class="cov0" title="0">{
            return fmt.Errorf("hexai-tmux-action child: %v; echo failed: %v", err, copyErr)
        }</span>
    } else<span class="cov4" title="2"> {
        closeOut()
    }</span>
    <span class="cov4" title="2">return os.Rename(tmp, outfile)</span>
}

func runInTmuxParent(stdin io.Reader, stdout io.Writer, target, split string, percent int) error <span class="cov8" title="4">{
    dir, err := os.MkdirTemp("", "hexai-tmux-action-")
    if err != nil </span><span class="cov0" title="0">{ return err }</span>
    <span class="cov8" title="4">defer func() </span><span class="cov8" title="4">{ _ = os.RemoveAll(dir) }</span>()
    <span class="cov8" title="4">inPath := filepath.Join(dir, "input.txt")
    outPath := filepath.Join(dir, "reply.txt")
    if err := persistStdin(inPath, stdin); err != nil </span><span class="cov0" title="0">{ return err }</span>
    <span class="cov8" title="4">exe, err := osExecutableFn()
    if err != nil </span><span class="cov1" title="1">{ return err }</span>
    <span class="cov7" title="3">argv := []string{exe, "-ui-child", "-infile", inPath, "-outfile", outPath}
    opts := tmux.SplitOpts{Target: target, Vertical: split != "h", Percent: percent}
    if err := splitRunFn(opts, argv); err != nil </span><span class="cov1" title="1">{ return err }</span>
    <span class="cov4" title="2">if err := waitForFile(outPath, 60*time.Second); err != nil </span><span class="cov0" title="0">{ return err }</span>
    <span class="cov4" title="2">return catFileTo(stdout, outPath)</span>
}

func persistStdin(path string, stdin io.Reader) error <span class="cov10" title="5">{
    f, err := os.Create(path)
    if err != nil </span><span class="cov0" title="0">{ return err }</span>
    <span class="cov10" title="5">defer func() </span><span class="cov10" title="5">{ _ = f.Close() }</span>()
    <span class="cov10" title="5">if _, err := io.Copy(f, stdin); err != nil </span><span class="cov0" title="0">{ return err }</span>
    <span class="cov10" title="5">return f.Sync()</span>
}

func waitForFile(path string, timeout time.Duration) error <span class="cov7" title="3">{
    deadline := time.Now().Add(timeout)
    for </span><span class="cov8" title="4">{
        if _, err := os.Stat(path); err == nil </span><span class="cov4" title="2">{ return nil }</span>
        <span class="cov4" title="2">if time.Now().After(deadline) </span><span class="cov1" title="1">{ return fmt.Errorf("hexai-tmux-action: timeout waiting for reply file") }</span>
        <span class="cov1" title="1">time.Sleep(200 * time.Millisecond)</span>
    }
}

func catFileTo(w io.Writer, path string) error <span class="cov4" title="2">{
    f, err := os.Open(path)
    if err != nil </span><span class="cov0" title="0">{ return err }</span>
    <span class="cov4" title="2">defer func() </span><span class="cov4" title="2">{ _ = f.Close() }</span>()
    <span class="cov4" title="2">_, err = io.Copy(w, f)
    return err</span>
}

// echoThrough no longer used in tmux-only flow, but kept for potential reuse.
func echoThrough(infile, outfile string, stdin io.Reader, stdout io.Writer) error <span class="cov4" title="2">{
    var in io.Reader = stdin
    var out io.Writer = stdout
    if infile != "" </span><span class="cov1" title="1">{
        f, err := os.Open(infile)
        if err != nil </span><span class="cov0" title="0">{ return err }</span>
        <span class="cov1" title="1">defer func() </span><span class="cov1" title="1">{ _ = f.Close() }</span>()
        <span class="cov1" title="1">in = f</span>
    }
    <span class="cov4" title="2">if outfile != "" </span><span class="cov1" title="1">{
        f, err := os.Create(outfile)
        if err != nil </span><span class="cov0" title="0">{ return err }</span>
        <span class="cov1" title="1">defer func() </span><span class="cov1" title="1">{ _ = f.Close() }</span>()
        <span class="cov1" title="1">out = f</span>
    }
    <span class="cov4" title="2">_, err := io.Copy(out, in)
    return err</span>
}
</pre>
		
		<pre class="file" id="file5" style="display: none">package hexaiaction

import (
    "bufio"
    "io"
    "strings"

    "codeberg.org/snonux/hexai/internal/textutil"
)

// ParseInput splits raw stdin into optional diagnostics and selection/code.
// Format:
//
//        Diagnostics:\n
//        &lt;one per line&gt;\n
//        &lt;blank line&gt; (optional)\n
//        &lt;rest is selection/code&gt;
//
// If the header is absent, the entire input is treated as selection.
func ParseInput(r io.Reader) (InputParts, error) <span class="cov7" title="4">{
        b, err := io.ReadAll(bufio.NewReader(r))
        if err != nil </span><span class="cov0" title="0">{
                return InputParts{}, err
        }</span>
        <span class="cov7" title="4">raw := strings.TrimSpace(string(b))
        if raw == "" </span><span class="cov0" title="0">{
                return InputParts{Selection: ""}, nil
        }</span>
        <span class="cov7" title="4">lines := strings.Split(raw, "\n")
        // find a case-insensitive line equal to "diagnostics:"
        diagsIdx := -1
        for i, ln := range lines </span><span class="cov7" title="5">{
                t := strings.TrimSpace(strings.ToLower(ln))
                if t == "diagnostics:" </span><span class="cov1" title="1">{
                        diagsIdx = i
                        break</span>
                }
        }
        <span class="cov7" title="4">if diagsIdx &lt; 0 </span><span class="cov5" title="3">{
                return InputParts{Selection: raw}, nil
        }</span>
        // collect diagnostics until a blank line or EOF
        <span class="cov1" title="1">diags := []string{}
        i := diagsIdx + 1
        for ; i &lt; len(lines); i++ </span><span class="cov5" title="3">{
                t := strings.TrimSpace(lines[i])
                if t == "" </span><span class="cov1" title="1">{
                        i++
                        break</span>
                }
                <span class="cov4" title="2">diags = append(diags, t)</span>
        }
        <span class="cov1" title="1">sel := strings.Join(lines[i:], "\n")
        sel = strings.TrimSpace(sel)
        return InputParts{Selection: sel, Diagnostics: diags}, nil</span>
}

// ExtractInstruction mirrors the LSP instructionFromSelection behavior (subset),
// scanning the first line for an instruction marker and removing it from the selection.
func ExtractInstruction(sel string) (string, string) <span class="cov10" title="8">{ return textutil.InstructionFromSelection(sel) }</span>

// findFirstInstructionInLine follows the same precedence as LSP:
// - ;text; (strict)
// - /* text */ (single-line)
// - &lt;!-- text --&gt; (single-line)
// - // text
// - # text
// - -- text
// helpers moved to textutil
</pre>
		
		<pre class="file" id="file6" style="display: none">package hexaiaction

import (
    "context"
    "strings"
    "time"

    "codeberg.org/snonux/hexai/internal/appconfig"
    "codeberg.org/snonux/hexai/internal/llm"
    "codeberg.org/snonux/hexai/internal/textutil"
)

// Render performs simple {{var}} replacement like LSP.
func Render(t string, vars map[string]string) string <span class="cov9" title="9">{ return textutil.RenderTemplate(t, vars) }</span>

// StripFences removes surrounding markdown code fences.
func StripFences(s string) string <span class="cov10" title="10">{ return textutil.StripCodeFences(s) }</span>

type chatDoer interface {
        Chat(ctx context.Context, msgs []llm.Message, opts ...llm.RequestOption) (string, error)
}

func runRewrite(ctx context.Context, cfg appconfig.App, client chatDoer, instruction, selection string) (string, error) <span class="cov5" title="3">{
    sys := cfg.PromptCodeActionRewriteSystem
    user := Render(cfg.PromptCodeActionRewriteUser, map[string]string{"instruction": instruction, "selection": selection})
    return runOnceWithOpts(ctx, client, sys, user, reqOptsFrom(cfg))
}</span>

func runDiagnostics(ctx context.Context, cfg appconfig.App, client chatDoer, diags []string, selection string) (string, error) <span class="cov1" title="1">{
        var b strings.Builder
        for i, d := range diags </span><span class="cov3" title="2">{
                if strings.TrimSpace(d) == "" </span><span class="cov0" title="0">{
                        continue</span>
                }
                <span class="cov3" title="2">b.WriteString(strings.TrimSpace(d))
                if i &lt; len(diags)-1 </span><span class="cov1" title="1">{
                        b.WriteString("\n")
                }</span>
        }
        <span class="cov1" title="1">sys := cfg.PromptCodeActionDiagnosticsSystem
        user := Render(cfg.PromptCodeActionDiagnosticsUser, map[string]string{"diagnostics": b.String(), "selection": selection})
    return runOnceWithOpts(ctx, client, sys, user, reqOptsFrom(cfg))</span>
}

func runDocument(ctx context.Context, cfg appconfig.App, client chatDoer, selection string) (string, error) <span class="cov3" title="2">{
        sys := cfg.PromptCodeActionDocumentSystem
        user := Render(cfg.PromptCodeActionDocumentUser, map[string]string{"selection": selection})
    return runOnceWithOpts(ctx, client, sys, user, reqOptsFrom(cfg))
}</span>

func runGoTest(ctx context.Context, cfg appconfig.App, client chatDoer, funcCode string) (string, error) <span class="cov3" title="2">{
        sys := cfg.PromptCodeActionGoTestSystem
        user := Render(cfg.PromptCodeActionGoTestUser, map[string]string{"function": funcCode})
    return runOnceWithOpts(ctx, client, sys, user, reqOptsFrom(cfg))
}</span>

func runOnce(ctx context.Context, client chatDoer, sys, user string) (string, error) <span class="cov1" title="1">{
    msgs := []llm.Message{{Role: "system", Content: sys}, {Role: "user", Content: user}}
    txt, err := client.Chat(ctx, msgs)
    if err != nil </span><span class="cov0" title="0">{
        return "", err
    }</span>
    <span class="cov1" title="1">return strings.TrimSpace(StripFences(txt)), nil</span>
}

func runOnceWithOpts(ctx context.Context, client chatDoer, sys, user string, opts []llm.RequestOption) (string, error) <span class="cov9" title="8">{
    msgs := []llm.Message{{Role: "system", Content: sys}, {Role: "user", Content: user}}
    txt, err := client.Chat(ctx, msgs, opts...)
    if err != nil </span><span class="cov0" title="0">{
        return "", err
    }</span>
    <span class="cov9" title="8">return strings.TrimSpace(StripFences(txt)), nil</span>
}

// reqOptsFrom builds LLM request options similar to LSP behavior.
func reqOptsFrom(cfg appconfig.App) []llm.RequestOption <span class="cov9" title="8">{
    opts := []llm.RequestOption{llm.WithMaxTokens(cfg.MaxTokens)}
    if cfg.CodingTemperature != nil </span><span class="cov6" title="4">{
        opts = append(opts, llm.WithTemperature(*cfg.CodingTemperature))
    }</span>
    <span class="cov9" title="8">return opts</span>
}

// Timeout helpers to mirror LSP behavior.
func timeout10s(parent context.Context) (context.Context, context.CancelFunc) <span class="cov5" title="3">{
        return context.WithTimeout(parent, 10*time.Second)
}</span>

func timeout8s(parent context.Context) (context.Context, context.CancelFunc) <span class="cov1" title="1">{
        return context.WithTimeout(parent, 8*time.Second)
}</span>
</pre>
		
		<pre class="file" id="file7" style="display: none">package hexaiaction

import (
    "context"
    "fmt"
    "io"
    "log"
    "strings"

    "codeberg.org/snonux/hexai/internal/appconfig"
    "codeberg.org/snonux/hexai/internal/logging"
    "codeberg.org/snonux/hexai/internal/llmutils"
)

// Run executes the hexai-tmux-action command flow.
// seams for testability
var chooseActionFn = RunTUI
var newClientFromApp = llmutils.NewClientFromApp

func Run(ctx context.Context, stdin io.Reader, stdout, stderr io.Writer) error <span class="cov6" title="3">{
    logger := log.New(stderr, "hexai-tmux-action ", log.LstdFlags|log.Lmsgprefix)
    cfg := appconfig.Load(logger)
    client, err := newClientFromApp(cfg)
    if err != nil </span><span class="cov1" title="1">{
        fmt.Fprintf(stderr, logging.AnsiBase+"hexai-tmux-action: LLM disabled: %v"+logging.AnsiReset+"\n", err)
        return err
    }</span>
    <span class="cov4" title="2">parts, err := ParseInput(stdin)
        if err != nil </span><span class="cov0" title="0">{
        fmt.Fprintln(stderr, logging.AnsiBase+"hexai-tmux-action: failed to read input"+logging.AnsiReset)
                return err
        }</span>
        <span class="cov4" title="2">if strings.TrimSpace(parts.Selection) == "" </span><span class="cov0" title="0">{
        return fmt.Errorf("hexai-tmux-action: no input provided on stdin")
        }</span>
    <span class="cov4" title="2">kind, err := chooseActionFn()
    if err != nil </span><span class="cov0" title="0">{
        return err
    }</span>
        <span class="cov4" title="2">out, err := executeAction(ctx, kind, parts, cfg, client, stderr)
        if err != nil </span><span class="cov0" title="0">{
                return err
        }</span>
        <span class="cov4" title="2">io.WriteString(stdout, out)
        return nil</span>
}

func executeAction(ctx context.Context, kind ActionKind, parts InputParts, cfg appconfig.App, client chatDoer, stderr io.Writer) (string, error) <span class="cov10" title="6">{
        switch kind </span>{
        case ActionSkip:<span class="cov4" title="2">
                return parts.Selection, nil</span>
        case ActionRewrite:<span class="cov4" title="2">
                instr, cleaned := ExtractInstruction(parts.Selection)
                if strings.TrimSpace(instr) == "" </span><span class="cov0" title="0">{
            fmt.Fprintln(stderr, logging.AnsiBase+"hexai-tmux-action: no inline instruction found; echoing input"+logging.AnsiReset)
                        return parts.Selection, nil
                }</span>
                <span class="cov4" title="2">cctx, cancel := timeout10s(ctx)
                defer cancel()
                return runRewrite(cctx, cfg, client, instr, cleaned)</span>
        case ActionDiagnostics:<span class="cov0" title="0">
                cctx, cancel := timeout10s(ctx)
                defer cancel()
                return runDiagnostics(cctx, cfg, client, parts.Diagnostics, parts.Selection)</span>
        case ActionDocument:<span class="cov1" title="1">
                cctx, cancel := timeout10s(ctx)
                defer cancel()
                return runDocument(cctx, cfg, client, parts.Selection)</span>
        case ActionGoTest:<span class="cov1" title="1">
                cctx, cancel := timeout8s(ctx)
                defer cancel()
                return runGoTest(cctx, cfg, client, parts.Selection)</span>
        default:<span class="cov0" title="0">
                return parts.Selection, nil</span>
        }
}

// client construction is shared via internal/llmutils
</pre>
		
		<pre class="file" id="file8" style="display: none">package hexaiaction

import (
    "fmt"
    "strings"

    "github.com/charmbracelet/bubbles/list"
    tea "github.com/charmbracelet/bubbletea"
)

// item implements list.Item
type item struct {
        title, desc string
        kind        ActionKind
        hotkey      rune
}

func (i item) Title() string       <span class="cov1" title="1">{ return i.title }</span>
func (i item) Description() string <span class="cov1" title="1">{ return i.desc }</span>
func (i item) FilterValue() string <span class="cov8" title="3">{ return i.title }</span>

type model struct {
        list   list.Model
        chosen ActionKind
        done   bool
}

func newModel() model <span class="cov10" title="4">{
    items := []list.Item{
        item{title: "Rewrite selection", desc: "", kind: ActionRewrite, hotkey: 'r'},
        item{title: "Document code", desc: "", kind: ActionDocument, hotkey: 'c'},
        item{title: "Generate Go unit test(s)", desc: "", kind: ActionGoTest, hotkey: 't'},
        item{title: "Skip", desc: "", kind: ActionSkip, hotkey: 's'},
    }
    l := list.New(items, oneLineDelegate{}, 0, 0)
    l.Title = "Select Hexai Action"
    l.SetShowHelp(false)
    l.SetShowStatusBar(false)
    l.SetFilteringEnabled(false)
    return model{list: l}
}</span>

func (m model) Init() tea.Cmd <span class="cov1" title="1">{ return nil }</span>

func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) <span class="cov1" title="1">{
        switch msg := msg.(type) </span>{
        case tea.KeyMsg:<span class="cov0" title="0">
                return handleKey(m, msg)</span>
        case tea.WindowSizeMsg:<span class="cov1" title="1">
                m.list.SetSize(msg.Width, msg.Height)</span>
        }
        <span class="cov1" title="1">var cmd tea.Cmd
        m.list, cmd = m.list.Update(msg)
        return m, cmd</span>
}

func handleKey(m model, msg tea.KeyMsg) (tea.Model, tea.Cmd) <span class="cov8" title="3">{
    raw := msg.String()
    low := strings.ToLower(raw)
    switch low </span>{
    case "esc", "q":<span class="cov1" title="1">
        // Treat ESC and q as Skip/quit
        m.chosen = ActionSkip
        m.done = true
        return m, tea.Quit</span>
    case "enter":<span class="cov0" title="0">
        if it, ok := m.list.SelectedItem().(item); ok </span><span class="cov0" title="0">{
            m.chosen = it.kind
            m.done = true
            return m, tea.Quit
        }</span>
    case "j", "down":<span class="cov0" title="0">
        m.list.CursorDown()</span>
    case "k", "up":<span class="cov0" title="0">
        m.list.CursorUp()</span>
    case "g", "home":<span class="cov1" title="1">
        m.list.Select(0)</span>
    case "end":<span class="cov0" title="0">
        if n := len(m.list.Items()); n &gt; 0 </span><span class="cov0" title="0">{ m.list.Select(n - 1) }</span>
    case "s", "r", "c", "t":<span class="cov1" title="1">
        items := m.list.Items()
        for i := 0; i &lt; len(items); i++ </span><span class="cov1" title="1">{
            if it, ok := items[i].(item); ok &amp;&amp; strings.ToLower(string(it.hotkey)) == low </span><span class="cov1" title="1">{
                m.list.Select(i)
                m.chosen = it.kind
                m.done = true
                return m, tea.Quit
            }</span>
        }
    }
    <span class="cov1" title="1">if raw == "G" </span><span class="cov1" title="1">{ // Shift+G jumps to end
        if n := len(m.list.Items()); n &gt; 0 </span><span class="cov1" title="1">{ m.list.Select(n - 1) }</span>
    }
    <span class="cov1" title="1">return m, nil</span>
}

func (m model) View() string <span class="cov1" title="1">{
        if m.done </span><span class="cov0" title="0">{
                return ""
        }</span>
        <span class="cov1" title="1">return m.list.View()</span>
}

// RunTUI returns the chosen ActionKind.
func RunTUI() (ActionKind, error) <span class="cov0" title="0">{
        p := tea.NewProgram(newModel())
        md, err := p.Run()
        if err != nil </span><span class="cov0" title="0">{
                return ActionSkip, err
        }</span>
        <span class="cov0" title="0">if m, ok := md.(model); ok </span><span class="cov0" title="0">{
                if m.chosen == "" </span><span class="cov0" title="0">{
                        return ActionSkip, nil
                }</span>
                <span class="cov0" title="0">return m.chosen, nil</span>
        }
        <span class="cov0" title="0">return ActionSkip, fmt.Errorf("unexpected model type")</span>
}
</pre>
		
		<pre class="file" id="file9" style="display: none">package hexaiaction

import (
    "fmt"
    "io"

    "github.com/charmbracelet/bubbles/list"
    tea "github.com/charmbracelet/bubbletea"
    "github.com/charmbracelet/lipgloss"
)

// oneLineDelegate renders a single compact line per item, no spacing.
type oneLineDelegate struct{}

var (
    hotStyle    = lipgloss.NewStyle().Bold(true).Foreground(lipgloss.Color("205"))
    cursorStyle = lipgloss.NewStyle().Bold(true)
)

func (oneLineDelegate) Height() int                         <span class="cov8" title="14">{ return 1 }</span>
func (oneLineDelegate) Spacing() int                        <span class="cov10" title="24">{ return 0 }</span>
func (oneLineDelegate) Update(tea.Msg, *list.Model) tea.Cmd <span class="cov1" title="1">{ return nil }</span>
func (oneLineDelegate) Render(w io.Writer, m list.Model, index int, listItem list.Item) <span class="cov2" title="2">{
    title := listItem.FilterValue()
    hk := '?' 
    if it, ok := listItem.(item); ok </span><span class="cov2" title="2">{
        hk = it.hotkey
    }</span>
    <span class="cov2" title="2">hot := hotStyle.Render(fmt.Sprintf(" (%c)", hk))
    cursor := "  "
    if index == m.Index() </span><span class="cov2" title="2">{
        cursor = cursorStyle.Render("&gt; ")
    }</span>
    <span class="cov2" title="2">fmt.Fprintf(w, "%s%s%s", cursor, title, hot)</span>
}
</pre>
		
		<pre class="file" id="file10" style="display: none">// Summary: Hexai CLI runner; reads input, creates an LLM client, builds messages,
// streams or collects the model output, and prints a short summary to stderr.
package hexaicli

import (
    "bufio"
    "context"
    "fmt"
    "io"
    "log"
    "os"
    "strings"
    "time"

    "codeberg.org/snonux/hexai/internal/appconfig"
    "codeberg.org/snonux/hexai/internal/logging"
    "codeberg.org/snonux/hexai/internal/llm"
    "codeberg.org/snonux/hexai/internal/llmutils"
)

// Run executes the Hexai CLI behavior given arguments and I/O streams.
// It assumes flags have already been parsed by the caller.
func Run(ctx context.Context, args []string, stdin io.Reader, stdout, stderr io.Writer) error <span class="cov1" title="1">{
        // Load configuration with a logger so file-based config is respected.
        logger := log.New(stderr, "hexai ", log.LstdFlags|log.Lmsgprefix)
        cfg := appconfig.Load(logger)
    client, err := llmutils.NewClientFromApp(cfg)
        if err != nil </span><span class="cov1" title="1">{
                fmt.Fprintf(stderr, logging.AnsiBase+"hexai: LLM disabled: %v"+logging.AnsiReset+"\n", err)
                return err
        }</span>
        // Inline the flow here to use configured CLI prompts.
        <span class="cov0" title="0">input, rerr := readInput(stdin, args)
        if rerr != nil </span><span class="cov0" title="0">{
                fmt.Fprintln(stderr, logging.AnsiBase+rerr.Error()+logging.AnsiReset)
                return rerr
        }</span>
        <span class="cov0" title="0">printProviderInfo(stderr, client)
        msgs := buildMessagesFromConfig(cfg, input)
        if err := runChat(ctx, client, msgs, input, stdout, stderr); err != nil </span><span class="cov0" title="0">{
                fmt.Fprintf(stderr, logging.AnsiBase+"hexai: error: %v"+logging.AnsiReset+"\n", err)
                return err
        }</span>
        <span class="cov0" title="0">return nil</span>
}

// RunWithClient executes the CLI flow using an already-constructed client.
// Useful for testing and embedding.
func RunWithClient(ctx context.Context, args []string, stdin io.Reader, stdout, stderr io.Writer, client llm.Client) error <span class="cov1" title="1">{
        input, err := readInput(stdin, args)
        if err != nil </span><span class="cov0" title="0">{
                fmt.Fprintln(stderr, logging.AnsiBase+err.Error()+logging.AnsiReset)
                return err
        }</span>
        <span class="cov1" title="1">printProviderInfo(stderr, client)
        msgs := buildMessages(input)
        if err := runChat(ctx, client, msgs, input, stdout, stderr); err != nil </span><span class="cov1" title="1">{
                fmt.Fprintf(stderr, logging.AnsiBase+"hexai: error: %v"+logging.AnsiReset+"\n", err)
                return err
        }</span>
        <span class="cov0" title="0">return nil</span>
}

// readInput reads from stdin and args, then combines them per CLI rules.
func readInput(stdin io.Reader, args []string) (string, error) <span class="cov9" title="5">{
        var stdinData string
        if fi, err := os.Stdin.Stat(); err == nil &amp;&amp; (fi.Mode()&amp;os.ModeCharDevice) == 0 </span><span class="cov7" title="4">{
                b, _ := io.ReadAll(bufio.NewReader(stdin))
                stdinData = strings.TrimSpace(string(b))
        }</span>
        <span class="cov9" title="5">argData := strings.TrimSpace(strings.Join(args, " "))
        switch </span>{
        case stdinData != "" &amp;&amp; argData != "":<span class="cov1" title="1">
                return fmt.Sprintf("%s:\n\n%s", argData, stdinData), nil</span>
        case stdinData != "":<span class="cov1" title="1">
                return stdinData, nil</span>
        case argData != "":<span class="cov4" title="2">
                return argData, nil</span>
        default:<span class="cov1" title="1">
                return "", fmt.Errorf("hexai: no input provided; pass text as an argument or via stdin")</span>
        }
}

// newClientFromConfig builds an LLM client from the app config and env keys.
// client construction moved to internal/llmutils

// buildMessages creates system and user messages based on input content.
func buildMessages(input string) []llm.Message <span class="cov10" title="6">{
        lower := strings.ToLower(input)
        system := "You are Hexai CLI. Default to very short, concise answers. If the user asks for commands, output only the commands (one per line) with no commentary or explanation. Only when the word 'explain' appears in the prompt, produce a verbose explanation."
        if strings.Contains(lower, "explain") </span><span class="cov1" title="1">{
                system = "You are Hexai CLI. The user requested an explanation. Provide a clear, verbose explanation with reasoning and details. If commands are needed, include them with brief context."
        }</span>
        <span class="cov10" title="6">return []llm.Message{
                {Role: "system", Content: system},
                {Role: "user", Content: input},
        }</span>
}

// buildMessagesFromConfig uses configured CLI system prompts.
func buildMessagesFromConfig(cfg appconfig.App, input string) []llm.Message <span class="cov4" title="2">{
        lower := strings.ToLower(input)
        system := cfg.PromptCLIDefaultSystem
        if strings.Contains(lower, "explain") </span><span class="cov1" title="1">{
                if strings.TrimSpace(cfg.PromptCLIExplainSystem) != "" </span><span class="cov1" title="1">{
                        system = cfg.PromptCLIExplainSystem
                }</span>
        }
        <span class="cov4" title="2">return []llm.Message{
                {Role: "system", Content: system},
                {Role: "user", Content: input},
        }</span>
}

// runChat executes the chat request, handling streaming and summary output.
func runChat(ctx context.Context, client llm.Client, msgs []llm.Message, input string, out io.Writer, errw io.Writer) error <span class="cov9" title="5">{
        start := time.Now()
        var output string
        if s, ok := client.(llm.Streamer); ok </span><span class="cov4" title="2">{
                var b strings.Builder
                if err := s.ChatStream(ctx, msgs, func(chunk string) </span><span class="cov9" title="5">{
                        b.WriteString(chunk)
                        fmt.Fprint(out, chunk)
                }</span>); err != nil <span class="cov0" title="0">{
                        return err
                }</span>
                <span class="cov4" title="2">output = b.String()</span>
        } else<span class="cov6" title="3"> {
                txt, err := client.Chat(ctx, msgs)
                if err != nil </span><span class="cov4" title="2">{
                        return err
                }</span>
                <span class="cov1" title="1">output = txt
                fmt.Fprint(out, output)</span>
        }
        <span class="cov6" title="3">dur := time.Since(start)
        fmt.Fprintf(errw, "\n"+logging.AnsiBase+"done provider=%s model=%s time=%s in_bytes=%d out_bytes=%d"+logging.AnsiReset+"\n",
                client.Name(), client.DefaultModel(), dur.Round(time.Millisecond), len(input), len(output))
        return nil</span>
}

// printProviderInfo writes the provider/model line to stderr.
func printProviderInfo(errw io.Writer, client llm.Client) <span class="cov4" title="2">{
    fmt.Fprintf(errw, logging.AnsiBase+"provider=%s model=%s"+logging.AnsiReset+"\n", client.Name(), client.DefaultModel())
}</span>

// newClientFromConfig is kept for tests; delegates to llmutils.
func newClientFromConfig(cfg appconfig.App) (llm.Client, error) <span class="cov4" title="2">{
    return llmutils.NewClientFromApp(cfg)
}</span>
</pre>
		
		<pre class="file" id="file11" style="display: none">// Summary: Hexai LSP runner; configures logging, loads config, builds the LLM client,
// and constructs/runs the LSP server (with injectable factory for tests).
package hexailsp

import (
        "io"
        "log"
        "os"
        "strings"

        "codeberg.org/snonux/hexai/internal/appconfig"
        "codeberg.org/snonux/hexai/internal/llm"
        "codeberg.org/snonux/hexai/internal/logging"
        "codeberg.org/snonux/hexai/internal/lsp"
)

// ServerRunner is the minimal interface satisfied by lsp.Server.
type ServerRunner interface{ Run() error }

// ServerFactory creates a ServerRunner. Default uses lsp.NewServer.
type ServerFactory func(r io.Reader, w io.Writer, logger *log.Logger, opts lsp.ServerOptions) ServerRunner

// Run configures logging, loads config, builds the LLM client and runs the LSP server.
// It is thin and delegates to RunWithFactory for testability.
func Run(logPath string, stdin io.Reader, stdout io.Writer, stderr io.Writer) error <span class="cov1" title="1">{
        logger := log.New(stderr, "hexai-lsp ", log.LstdFlags|log.Lmsgprefix)
        if strings.TrimSpace(logPath) != "" </span><span class="cov1" title="1">{
                f, err := os.OpenFile(logPath, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0o644)
                if err != nil </span><span class="cov0" title="0">{
                        logger.Fatalf("failed to open log file: %v", err)
                }</span>
                <span class="cov1" title="1">defer f.Close()
                logger.SetOutput(f)</span>
        }
        <span class="cov1" title="1">logging.Bind(logger)
        cfg := appconfig.Load(logger)
        return RunWithFactory(logPath, stdin, stdout, logger, cfg, nil, nil)</span>
}

// RunWithFactory is the testable entrypoint. When client is nil, it is built from cfg+env.
// When factory is nil, lsp.NewServer is used.
func RunWithFactory(logPath string, stdin io.Reader, stdout io.Writer, logger *log.Logger, cfg appconfig.App, client llm.Client, factory ServerFactory) error <span class="cov10" title="7">{
        normalizeLoggingConfig(&amp;cfg)
        client = buildClientIfNil(cfg, client)
        factory = ensureFactory(factory)

        opts := makeServerOptions(cfg, strings.TrimSpace(logPath) != "", client)
        server := factory(stdin, stdout, logger, opts)
        if err := server.Run(); err != nil </span><span class="cov0" title="0">{
                logger.Fatalf("server error: %v", err)
        }</span>
        <span class="cov10" title="7">return nil</span>
}

// --- helpers to keep RunWithFactory small ---

func normalizeLoggingConfig(cfg *appconfig.App) <span class="cov10" title="7">{
        cfg.ContextMode = strings.ToLower(strings.TrimSpace(cfg.ContextMode))
        if cfg.LogPreviewLimit &gt;= 0 </span><span class="cov10" title="7">{
                logging.SetLogPreviewLimit(cfg.LogPreviewLimit)
        }</span>
}

func buildClientIfNil(cfg appconfig.App, client llm.Client) llm.Client <span class="cov10" title="7">{
        if client != nil </span><span class="cov0" title="0">{
                return client
        }</span>
        <span class="cov10" title="7">llmCfg := llm.Config{
                Provider:           cfg.Provider,
                OpenAIBaseURL:      cfg.OpenAIBaseURL,
                OpenAIModel:        cfg.OpenAIModel,
                OpenAITemperature:  cfg.OpenAITemperature,
                OllamaBaseURL:      cfg.OllamaBaseURL,
                OllamaModel:        cfg.OllamaModel,
                OllamaTemperature:  cfg.OllamaTemperature,
                CopilotBaseURL:     cfg.CopilotBaseURL,
                CopilotModel:       cfg.CopilotModel,
                CopilotTemperature: cfg.CopilotTemperature,
        }
        // Prefer HEXAI_OPENAI_API_KEY; fall back to OPENAI_API_KEY
        oaKey := os.Getenv("HEXAI_OPENAI_API_KEY")
        if strings.TrimSpace(oaKey) == "" </span><span class="cov10" title="7">{
                oaKey = os.Getenv("OPENAI_API_KEY")
        }</span>
        // Prefer HEXAI_COPILOT_API_KEY; fall back to COPILOT_API_KEY
        <span class="cov10" title="7">cpKey := os.Getenv("HEXAI_COPILOT_API_KEY")
        if strings.TrimSpace(cpKey) == "" </span><span class="cov10" title="7">{
                cpKey = os.Getenv("COPILOT_API_KEY")
        }</span>
        <span class="cov10" title="7">if c, err := llm.NewFromConfig(llmCfg, oaKey, cpKey); err != nil </span><span class="cov1" title="1">{
                logging.Logf("lsp ", "llm disabled: %v", err)
                return nil
        }</span> else<span class="cov9" title="6"> {
                logging.Logf("lsp ", "llm enabled provider=%s model=%s", c.Name(), c.DefaultModel())
                return c
        }</span>
}

func ensureFactory(factory ServerFactory) ServerFactory <span class="cov10" title="7">{
        if factory != nil </span><span class="cov9" title="6">{
                return factory
        }</span>
        <span class="cov1" title="1">return func(r io.Reader, w io.Writer, logger *log.Logger, opts lsp.ServerOptions) ServerRunner </span><span class="cov1" title="1">{
                return lsp.NewServer(r, w, logger, opts)
        }</span>
}

func makeServerOptions(cfg appconfig.App, logContext bool, client llm.Client) lsp.ServerOptions <span class="cov10" title="7">{
        return lsp.ServerOptions{
                LogContext:            logContext,
                MaxTokens:             cfg.MaxTokens,
                ContextMode:           cfg.ContextMode,
                WindowLines:           cfg.ContextWindowLines,
                MaxContextTokens:      cfg.MaxContextTokens,
                CodingTemperature:     cfg.CodingTemperature,
                Client:                client,
                TriggerCharacters:     cfg.TriggerCharacters,
                ManualInvokeMinPrefix: cfg.ManualInvokeMinPrefix,
                CompletionDebounceMs:  cfg.CompletionDebounceMs,
                CompletionThrottleMs:  cfg.CompletionThrottleMs,
                InlineOpen:            cfg.InlineOpen,
                InlineClose:           cfg.InlineClose,
                ChatSuffix:            cfg.ChatSuffix,
                ChatPrefixes:          cfg.ChatPrefixes,

                // Prompts
                PromptCompSysGeneral:    cfg.PromptCompletionSystemGeneral,
                PromptCompSysParams:     cfg.PromptCompletionSystemParams,
                PromptCompSysInline:     cfg.PromptCompletionSystemInline,
                PromptCompUserGeneral:   cfg.PromptCompletionUserGeneral,
                PromptCompUserParams:    cfg.PromptCompletionUserParams,
                PromptCompExtraHeader:   cfg.PromptCompletionExtraHeader,
                PromptNativeCompletion:  cfg.PromptNativeCompletion,
                PromptChatSystem:        cfg.PromptChatSystem,
                PromptRewriteSystem:     cfg.PromptCodeActionRewriteSystem,
                PromptDiagnosticsSystem: cfg.PromptCodeActionDiagnosticsSystem,
                PromptDocumentSystem:    cfg.PromptCodeActionDocumentSystem,
                PromptRewriteUser:       cfg.PromptCodeActionRewriteUser,
                PromptDiagnosticsUser:   cfg.PromptCodeActionDiagnosticsUser,
                PromptDocumentUser:      cfg.PromptCodeActionDocumentUser,
                PromptGoTestSystem:      cfg.PromptCodeActionGoTestSystem,
                PromptGoTestUser:        cfg.PromptCodeActionGoTestUser,
        }
}</span>
</pre>
		
		<pre class="file" id="file12" style="display: none">// Summary: GitHub Copilot client for chat and Codex-style code completion.
package llm

import (
        "bytes"
        "context"
        "encoding/base64"
        "encoding/json"
        "errors"
        "fmt"
        "io"
        "net/http"
        "regexp"
        "strings"
        "time"

        appver "codeberg.org/snonux/hexai/internal"
        "codeberg.org/snonux/hexai/internal/logging"
)

// copilotClient implements Client against GitHub Copilot's Chat Completions API.
type copilotClient struct {
        httpClient         *http.Client
        apiKey             string
        baseURL            string
        defaultModel       string
        chatLogger         logging.ChatLogger
        defaultTemperature *float64

        // cached Copilot session token retrieved from GitHub API using apiKey
        sessionToken string
        tokenExpiry  time.Time
}

type copilotChatRequest struct {
        Model       string           `json:"model"`
        Messages    []copilotMessage `json:"messages"`
        Temperature *float64         `json:"temperature,omitempty"`
        MaxTokens   *int             `json:"max_tokens,omitempty"`
        Stop        []string         `json:"stop,omitempty"`
}

type copilotMessage struct {
        Role    string `json:"role"`
        Content string `json:"content"`
}

type copilotChatResponse struct {
        Choices []struct {
                Index   int `json:"index"`
                Message struct {
                        Role    string `json:"role"`
                        Content string `json:"content"`
                } `json:"message"`
                FinishReason string `json:"finish_reason"`
        } `json:"choices"`
        Error *struct {
                Message string `json:"message"`
                Type    string `json:"type"`
                Param   any    `json:"param"`
                Code    any    `json:"code"`
        } `json:"error,omitempty"`
}

// Constructor (kept among the first functions by convention)
func newCopilot(baseURL, model, apiKey string, defaultTemp *float64) Client <span class="cov3" title="9">{
        if strings.TrimSpace(baseURL) == "" </span><span class="cov1" title="1">{
                baseURL = "https://api.githubcopilot.com"
        }</span>
        <span class="cov3" title="9">if strings.TrimSpace(model) == "" </span><span class="cov0" title="0">{
                // GitHub Models (Copilot API) commonly supports gpt-4o/gpt-4o-mini.
                // Default to a broadly available, cost-effective option.
                model = "gpt-4o-mini"
        }</span>
        <span class="cov3" title="9">return copilotClient{
                httpClient:         &amp;http.Client{Timeout: 30 * time.Second},
                apiKey:             apiKey,
                baseURL:            strings.TrimRight(baseURL, "/"),
                defaultModel:       model,
                chatLogger:         logging.NewChatLogger("copilot"),
                defaultTemperature: defaultTemp,
        }</span>
}

func (c copilotClient) Chat(ctx context.Context, messages []Message, opts ...RequestOption) (string, error) <span class="cov3" title="5">{
        if strings.TrimSpace(c.apiKey) == "" </span><span class="cov0" title="0">{
                return nilStringErr("missing Copilot API key")
        }</span>
        // Ensure we have a fresh session token
        <span class="cov3" title="5">if err := c.ensureSession(ctx); err != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>
        <span class="cov3" title="5">o := Options{Model: c.defaultModel}
        for _, opt := range opts </span><span class="cov0" title="0">{
                opt(&amp;o)
        }</span>
        <span class="cov3" title="5">if o.Model == "" </span><span class="cov0" title="0">{
                o.Model = c.defaultModel
        }</span>
        <span class="cov3" title="5">start := time.Now()
        logMessages := make([]struct{ Role, Content string }, len(messages))
        for i, m := range messages </span><span class="cov3" title="5">{
                logMessages[i] = struct{ Role, Content string }{m.Role, m.Content}
        }</span>
        <span class="cov3" title="5">c.chatLogger.LogStart(false, o.Model, o.Temperature, o.MaxTokens, o.Stop, logMessages)

        req := buildCopilotChatRequest(o, messages, c.defaultTemperature)
        body, err := json.Marshal(req)
        if err != nil </span><span class="cov0" title="0">{
                logging.Logf("llm/copilot ", "marshal error: %v", err)
                return "", err
        }</span>

        <span class="cov3" title="5">endpoint := c.baseURL + "/chat/completions"
        logging.Logf("llm/copilot ", "POST %s", endpoint)
        resp, err := c.postJSON(ctx, endpoint, body, c.headersChat())
        if err != nil </span><span class="cov0" title="0">{
                logging.Logf("llm/copilot ", "%shttp error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return "", err
        }</span>
        <span class="cov3" title="5">defer resp.Body.Close()
        if err := handleCopilotNon2xx(resp, start); err != nil </span><span class="cov1" title="1">{
                return "", err
        }</span>
        <span class="cov2" title="4">out, err := decodeCopilotChat(resp, start)
        if err != nil </span><span class="cov1" title="1">{
                return "", err
        }</span>
        <span class="cov2" title="3">if len(out.Choices) == 0 </span><span class="cov1" title="1">{
                logging.Logf("llm/copilot ", "%sno choices returned duration=%s%s", logging.AnsiRed, time.Since(start), logging.AnsiBase)
                return "", errors.New("copilot: no choices returned")
        }</span>
        <span class="cov1" title="2">content := out.Choices[0].Message.Content
        logging.Logf("llm/copilot ", "success choice=0 finish=%s size=%d preview=%s%s%s duration=%s", out.Choices[0].FinishReason, len(content), logging.AnsiGreen, logging.PreviewForLog(content), logging.AnsiBase, time.Since(start))
        return content, nil</span>
}

// Provider metadata
func (c copilotClient) Name() string         <span class="cov1" title="1">{ return "copilot" }</span>
func (c copilotClient) DefaultModel() string <span class="cov1" title="1">{ return c.defaultModel }</span>

// helpers
func buildCopilotChatRequest(o Options, messages []Message, defaultTemp *float64) copilotChatRequest <span class="cov3" title="6">{
        req := copilotChatRequest{Model: o.Model}
        req.Messages = make([]copilotMessage, len(messages))
        for i, m := range messages </span><span class="cov3" title="6">{
                req.Messages[i] = copilotMessage{Role: m.Role, Content: m.Content}
        }</span>
        <span class="cov3" title="6">if o.Temperature != 0 </span><span class="cov0" title="0">{
                req.Temperature = &amp;o.Temperature
        }</span> else<span class="cov3" title="6"> if defaultTemp != nil </span><span class="cov3" title="6">{
                t := *defaultTemp
                req.Temperature = &amp;t
        }</span>
        <span class="cov3" title="6">if o.MaxTokens &gt; 0 </span><span class="cov1" title="1">{
                req.MaxTokens = &amp;o.MaxTokens
        }</span>
        <span class="cov3" title="6">if len(o.Stop) &gt; 0 </span><span class="cov1" title="1">{
                req.Stop = o.Stop
        }</span>
        <span class="cov3" title="6">return req</span>
}

func (c copilotClient) postJSON(ctx context.Context, url string, body []byte, headers map[string]string) (*http.Response, error) <span class="cov3" title="8">{
        req, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewReader(body))
        if err != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>
        <span class="cov3" title="8">for k, v := range headers </span><span class="cov6" title="88">{
                req.Header.Set(k, v)
        }</span>
        <span class="cov3" title="8">return c.httpClient.Do(req)</span>
}

func handleCopilotNon2xx(resp *http.Response, start time.Time) error <span class="cov3" title="6">{
        if resp.StatusCode &gt;= 200 &amp;&amp; resp.StatusCode &lt; 300 </span><span class="cov2" title="4">{
                return nil
        }</span>
        <span class="cov1" title="2">var apiErr copilotChatResponse
        _ = json.NewDecoder(resp.Body).Decode(&amp;apiErr)
        if apiErr.Error != nil &amp;&amp; strings.TrimSpace(apiErr.Error.Message) != "" </span><span class="cov1" title="2">{
                logging.Logf("llm/copilot ", "%sapi error status=%d type=%s msg=%s duration=%s%s", logging.AnsiRed, resp.StatusCode, apiErr.Error.Type, apiErr.Error.Message, time.Since(start), logging.AnsiBase)
                return fmt.Errorf("copilot error: %s (status %d)", apiErr.Error.Message, resp.StatusCode)
        }</span>
        <span class="cov0" title="0">logging.Logf("llm/copilot ", "%shttp non-2xx status=%d duration=%s%s", logging.AnsiRed, resp.StatusCode, time.Since(start), logging.AnsiBase)
        return fmt.Errorf("copilot http error: status %d", resp.StatusCode)</span>
}

func decodeCopilotChat(resp *http.Response, start time.Time) (copilotChatResponse, error) <span class="cov2" title="4">{
        var out copilotChatResponse
        if err := json.NewDecoder(resp.Body).Decode(&amp;out); err != nil </span><span class="cov1" title="1">{
                logging.Logf("llm/copilot ", "%sdecode error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return copilotChatResponse{}, err
        }</span>
        <span class="cov2" title="3">return out, nil</span>
}

// --- Copilot session token management ---

type ghCopilotTokenResp struct {
        Token string `json:"token"`
}

func (c *copilotClient) ensureSession(ctx context.Context) error <span class="cov4" title="16">{
        // If token valid for &gt;60s, reuse
        if c.sessionToken != "" &amp;&amp; time.Now().Add(60*time.Second).Before(c.tokenExpiry) </span><span class="cov3" title="8">{
                return nil
        }</span>
        <span class="cov3" title="8">if strings.TrimSpace(c.apiKey) == "" </span><span class="cov0" title="0">{
                return errors.New("missing Copilot API key")
        }</span>
        <span class="cov3" title="8">req, err := http.NewRequestWithContext(ctx, http.MethodGet, "https://api.github.com/copilot_internal/v2/token", nil)
        if err != nil </span><span class="cov0" title="0">{
                return err
        }</span>
        <span class="cov3" title="8">req.Header.Set("Authorization", "Bearer "+c.apiKey)
        req.Header.Set("Accept", "application/json")
        req.Header.Set("User-Agent", "hexai/"+appver.Version)
        resp, err := c.httpClient.Do(req)
        if err != nil </span><span class="cov0" title="0">{
                return err
        }</span>
        <span class="cov3" title="8">defer resp.Body.Close()
        if resp.StatusCode &lt; 200 || resp.StatusCode &gt;= 300 </span><span class="cov0" title="0">{
                return fmt.Errorf("copilot token http error: %d", resp.StatusCode)
        }</span>
        <span class="cov3" title="8">var out ghCopilotTokenResp
        if err := json.NewDecoder(resp.Body).Decode(&amp;out); err != nil </span><span class="cov0" title="0">{
                return err
        }</span>
        <span class="cov3" title="8">if strings.TrimSpace(out.Token) == "" </span><span class="cov0" title="0">{
                return errors.New("empty copilot session token")
        }</span>
        // Parse JWT exp
        <span class="cov3" title="8">exp := parseJWTExp(out.Token)
        if exp.IsZero() </span><span class="cov3" title="8">{
                exp = time.Now().Add(10 * time.Minute)
        }</span>
        <span class="cov3" title="8">c.sessionToken = out.Token
        c.tokenExpiry = exp
        return nil</span>
}

var jwtExpRe = regexp.MustCompile(`"exp"\s*:\s*([0-9]+)`) // fallback if we can't base64 decode

func parseJWTExp(token string) time.Time <span class="cov3" title="9">{
        parts := strings.Split(token, ".")
        if len(parts) &lt; 2 </span><span class="cov3" title="8">{
                return time.Time{}
        }</span>
        <span class="cov1" title="1">b, err := base64.RawURLEncoding.DecodeString(parts[1])
        if err != nil </span><span class="cov0" title="0">{
                if m := jwtExpRe.FindStringSubmatch(token); len(m) == 2 </span><span class="cov0" title="0">{
                        if n, err2 := parseInt64(m[1]); err2 == nil </span><span class="cov0" title="0">{
                                return time.Unix(n, 0)
                        }</span>
                }
                <span class="cov0" title="0">return time.Time{}</span>
        }
        <span class="cov1" title="1">var payload struct {
                Exp int64 `json:"exp"`
        }
        _ = json.Unmarshal(b, &amp;payload)
        if payload.Exp == 0 </span><span class="cov0" title="0">{
                return time.Time{}
        }</span>
        <span class="cov1" title="1">return time.Unix(payload.Exp, 0)</span>
}

func parseInt64(s string) (int64, error) <span class="cov1" title="1">{ var n int64; _, err := fmt.Sscan(s, &amp;n); return n, err }</span>

// --- Copilot headers ---

func (c *copilotClient) headersChat() map[string]string <span class="cov3" title="5">{
        _ = c.ensureSession(context.Background())
        h := map[string]string{
                "Content-Type":          "application/json; charset=utf-8",
                "Accept":                "application/json",
                "Authorization":         "Bearer " + c.sessionToken,
                "User-Agent":            "GitHubCopilotChat/0.8.0",
                "Editor-Plugin-Version": "copilot-chat/0.8.0",
                "Editor-Version":        "vscode/1.85.1",
                "Openai-Intent":         "conversation-panel",
                "Openai-Organization":   "github-copilot",
                "VScode-MachineId":      randHex(64),
                "VScode-SessionId":      randHex(8) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(12),
                "X-Request-Id":          randHex(8) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(12),
        }
        return h
}</span>

func (c *copilotClient) headersGhost() map[string]string <span class="cov2" title="3">{
        _ = c.ensureSession(context.Background())
        h := map[string]string{
                "Content-Type":          "application/json; charset=utf-8",
                "Accept":                "*/*",
                "Authorization":         "Bearer " + c.sessionToken,
                "User-Agent":            "GithubCopilot/1.155.0",
                "Editor-Plugin-Version": "copilot/1.155.0",
                "Editor-Version":        "vscode/1.85.1",
                "Openai-Intent":         "copilot-ghost",
                "Openai-Organization":   "github-copilot",
                "VScode-MachineId":      randHex(64),
                "VScode-SessionId":      randHex(8) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(12),
                "X-Request-Id":          randHex(8) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(4) + "-" + randHex(12),
        }
        return h
}</span>

func randHex(n int) string <span class="cov6" title="88">{
        const hex = "0123456789abcdef"
        b := make([]byte, n)
        for i := range b </span><span class="cov10" title="1024">{
                b[i] = hex[int(time.Now().UnixNano()+int64(i))%len(hex)]
        }</span>
        <span class="cov6" title="88">return string(b)</span>
}

// --- Codex-style code completion ---

// CodeCompletion implements CodeCompleter; returns up to n suggestions.
func (c copilotClient) CodeCompletion(ctx context.Context, prompt string, suffix string, n int, language string, temperature float64) ([]string, error) <span class="cov2" title="3">{
        if strings.TrimSpace(c.apiKey) == "" </span><span class="cov0" title="0">{
                return nil, errors.New("missing Copilot API key")
        }</span>
        <span class="cov2" title="3">if err := c.ensureSession(ctx); err != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>
        <span class="cov2" title="3">if n &lt;= 0 </span><span class="cov0" title="0">{
                n = 1
        }</span>
        <span class="cov2" title="3">maxTokens := 500
        body := map[string]any{
                "extra": map[string]any{
                        "language":            language,
                        "next_indent":         0,
                        "prompt_tokens":       500,
                        "suffix_tokens":       400,
                        "trim_by_indentation": true,
                },
                "max_tokens":  maxTokens,
                "n":           n,
                "nwo":         "hexai",
                "prompt":      prompt,
                "stop":        []string{"\n\n"},
                "stream":      true,
                "suffix":      suffix,
                "temperature": temperature,
                "top_p":       1,
        }
        buf, _ := json.Marshal(body)
        url := "https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions"
        resp, err := c.postJSON(ctx, url, buf, c.headersGhost())
        if err != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>
        <span class="cov2" title="3">defer resp.Body.Close()
        if resp.StatusCode &lt; 200 || resp.StatusCode &gt;= 300 </span><span class="cov0" title="0">{
                return nil, fmt.Errorf("copilot codex http error: %d", resp.StatusCode)
        }</span>
        // Read all and parse lines that start with "data: " accumulating by index
        <span class="cov2" title="3">raw, _ := io.ReadAll(resp.Body)
        byIndex := make(map[int]string)
        lines := strings.Split(string(raw), "\n")
        for _, ln := range lines </span><span class="cov3" title="10">{
                if !strings.HasPrefix(ln, "data: ") </span><span class="cov2" title="3">{
                        continue</span>
                }
                <span class="cov3" title="7">var evt struct {
                        Choices []struct {
                                Index int    `json:"index"`
                                Text  string `json:"text"`
                        } `json:"choices"`
                }
                if err := json.Unmarshal([]byte(strings.TrimPrefix(ln, "data: ")), &amp;evt); err != nil </span><span class="cov2" title="4">{
                        continue</span>
                }
                <span class="cov2" title="3">for _, ch := range evt.Choices </span><span class="cov2" title="3">{
                        byIndex[ch.Index] += ch.Text
                }</span>
        }
        <span class="cov2" title="3">out := make([]string, 0, len(byIndex))
        for i := 0; i &lt; n; i++ </span><span class="cov2" title="4">{
                if s, ok := byIndex[i]; ok &amp;&amp; strings.TrimSpace(s) != "" </span><span class="cov2" title="3">{
                        out = append(out, s)
                }</span>
        }
        <span class="cov2" title="3">return out, nil</span>
}

// newLineDataReader wraps a streaming body and exposes a JSON decoder that
// decodes successive objects from lines prefixed by "data: ".
// (no streaming decoder needed; we parse whole body lines)
</pre>
		
		<pre class="file" id="file13" style="display: none">// Summary: Ollama client against a local server; supports chat responses and streaming via /api/chat.
package llm

import (
        "bytes"
        "context"
        "encoding/json"
        "errors"
        "fmt"
        "io"
        "net/http"
        "strings"
        "time"

        "codeberg.org/snonux/hexai/internal/logging"
)

// ollamaClient implements Client against a local Ollama server.
type ollamaClient struct {
        httpClient         *http.Client
        baseURL            string
        defaultModel       string
        chatLogger         logging.ChatLogger
        defaultTemperature *float64
}

type ollamaChatRequest struct {
        Model    string      `json:"model"`
        Messages []oaMessage `json:"messages"`
        Stream   bool        `json:"stream"`
        Options  any         `json:"options,omitempty"`
}

type ollamaChatResponse struct {
        Message struct {
                Role    string `json:"role"`
                Content string `json:"content"`
        } `json:"message"`
        Done  bool   `json:"done"`
        Error string `json:"error,omitempty"`
}

// Constructor (kept among the first functions by convention)
func newOllama(baseURL, model string, defaultTemp *float64) Client <span class="cov10" title="13">{
        if strings.TrimSpace(baseURL) == "" </span><span class="cov3" title="2">{
                baseURL = "http://localhost:11434"
        }</span>
        <span class="cov10" title="13">if strings.TrimSpace(model) == "" </span><span class="cov3" title="2">{
                model = "qwen3-coder:30b-a3b-q4_K_M`"
        }</span>
        <span class="cov10" title="13">return ollamaClient{
                httpClient:         &amp;http.Client{Timeout: 30 * time.Second},
                baseURL:            strings.TrimRight(baseURL, "/"),
                defaultModel:       model,
                chatLogger:         logging.NewChatLogger("ollama"),
                defaultTemperature: defaultTemp,
        }</span>
}

func (c ollamaClient) Chat(ctx context.Context, messages []Message, opts ...RequestOption) (string, error) <span class="cov7" title="6">{
        o := Options{Model: c.defaultModel}
        for _, opt := range opts </span><span class="cov0" title="0">{
                opt(&amp;o)
        }</span>
        <span class="cov7" title="6">if o.Model == "" </span><span class="cov0" title="0">{
                o.Model = c.defaultModel
        }</span>

        <span class="cov7" title="6">start := time.Now()
        c.logStart(false, o, messages)
        req := buildOllamaRequest(o, messages, c.defaultTemperature, false)
        body, err := json.Marshal(req)
        if err != nil </span><span class="cov0" title="0">{
                return "", err
        }</span>

        <span class="cov7" title="6">endpoint := c.baseURL + "/api/chat"
        logging.Logf("llm/ollama ", "POST %s", endpoint)
        resp, err := c.doJSON(ctx, endpoint, body)
        if err != nil </span><span class="cov1" title="1">{
                logging.Logf("llm/ollama ", "%shttp error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return "", err
        }</span>
        <span class="cov6" title="5">defer resp.Body.Close()
        if err := handleOllamaNon2xx(resp, start); err != nil </span><span class="cov3" title="2">{
                return "", err
        }</span>

        <span class="cov4" title="3">var out ollamaChatResponse
        if err := json.NewDecoder(resp.Body).Decode(&amp;out); err != nil </span><span class="cov1" title="1">{
                logging.Logf("llm/ollama ", "%sdecode error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return "", err
        }</span>
        <span class="cov3" title="2">if strings.TrimSpace(out.Message.Content) == "" </span><span class="cov1" title="1">{
                logging.Logf("llm/ollama ", "%sempty content returned duration=%s%s", logging.AnsiRed, time.Since(start), logging.AnsiBase)
                return "", errors.New("ollama: empty content")
        }</span>
        <span class="cov1" title="1">content := out.Message.Content
        logging.Logf("llm/ollama ", "success size=%d preview=%s%s%s duration=%s", len(content), logging.AnsiGreen, logging.PreviewForLog(content), logging.AnsiBase, time.Since(start))
        return content, nil</span>
}

// Provider metadata
func (c ollamaClient) Name() string         <span class="cov3" title="2">{ return "ollama" }</span>
func (c ollamaClient) DefaultModel() string <span class="cov3" title="2">{ return c.defaultModel }</span>

// Streaming support (optional)
func (c ollamaClient) ChatStream(ctx context.Context, messages []Message, onDelta func(string), opts ...RequestOption) error <span class="cov4" title="3">{
        o := Options{Model: c.defaultModel}
        for _, opt := range opts </span><span class="cov0" title="0">{
                opt(&amp;o)
        }</span>
        <span class="cov4" title="3">if o.Model == "" </span><span class="cov0" title="0">{
                o.Model = c.defaultModel
        }</span>

        <span class="cov4" title="3">start := time.Now()
        c.logStart(true, o, messages)
        req := buildOllamaRequest(o, messages, c.defaultTemperature, true)
        body, err := json.Marshal(req)
        if err != nil </span><span class="cov0" title="0">{
                return err
        }</span>

        <span class="cov4" title="3">endpoint := c.baseURL + "/api/chat"
        logging.Logf("llm/ollama ", "POST %s (stream)", endpoint)
        resp, err := c.doJSON(ctx, endpoint, body)
        if err != nil </span><span class="cov0" title="0">{
                logging.Logf("llm/ollama ", "%shttp error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return err
        }</span>
        <span class="cov4" title="3">defer resp.Body.Close()
        if err := handleOllamaNon2xx(resp, start); err != nil </span><span class="cov0" title="0">{
                return err
        }</span>

        <span class="cov4" title="3">dec := json.NewDecoder(resp.Body)
        for </span><span class="cov5" title="4">{
                var ev ollamaChatResponse
                if err := dec.Decode(&amp;ev); err != nil </span><span class="cov1" title="1">{
                        if errors.Is(err, io.EOF) </span><span class="cov0" title="0">{
                                break</span>
                        }
                        <span class="cov1" title="1">logging.Logf("llm/ollama ", "%sdecode stream error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                        return err</span>
                }
                <span class="cov4" title="3">if strings.TrimSpace(ev.Error) != "" </span><span class="cov1" title="1">{
                        logging.Logf("llm/ollama ", "%sstream event error: %s%s", logging.AnsiRed, ev.Error, logging.AnsiBase)
                        return fmt.Errorf("ollama stream error: %s", ev.Error)
                }</span>
                <span class="cov3" title="2">if s := ev.Message.Content; strings.TrimSpace(s) != "" </span><span class="cov3" title="2">{
                        onDelta(s)
                }</span>
                <span class="cov3" title="2">if ev.Done </span><span class="cov1" title="1">{
                        break</span>
                }
        }
        <span class="cov1" title="1">logging.Logf("llm/ollama ", "stream end duration=%s", time.Since(start))
        return nil</span>
}

// helpers to keep methods small
func (c ollamaClient) logStart(stream bool, o Options, messages []Message) <span class="cov8" title="9">{
        logMessages := make([]struct{ Role, Content string }, len(messages))
        for i, m := range messages </span><span class="cov8" title="9">{
                logMessages[i] = struct{ Role, Content string }{m.Role, m.Content}
        }</span>
        <span class="cov8" title="9">c.chatLogger.LogStart(stream, o.Model, o.Temperature, o.MaxTokens, o.Stop, logMessages)</span>
}

func buildOllamaRequest(o Options, messages []Message, defaultTemp *float64, stream bool) ollamaChatRequest <span class="cov9" title="12">{
        req := ollamaChatRequest{Model: o.Model, Stream: stream}
        req.Messages = make([]oaMessage, len(messages))
        for i, m := range messages </span><span class="cov9" title="12">{
                req.Messages[i] = oaMessage{Role: m.Role, Content: m.Content}
        }</span>
        <span class="cov9" title="12">optsMap := map[string]any{}
        if o.Temperature != 0 </span><span class="cov1" title="1">{
                optsMap["temperature"] = o.Temperature
        }</span> else<span class="cov9" title="11"> if defaultTemp != nil </span><span class="cov4" title="3">{
                optsMap["temperature"] = *defaultTemp
        }</span>
        <span class="cov9" title="12">if o.MaxTokens &gt; 0 </span><span class="cov3" title="2">{
                optsMap["num_predict"] = o.MaxTokens
        }</span>
        <span class="cov9" title="12">if len(o.Stop) &gt; 0 </span><span class="cov3" title="2">{
                optsMap["stop"] = o.Stop
        }</span>
        <span class="cov9" title="12">if len(optsMap) &gt; 0 </span><span class="cov5" title="4">{
                req.Options = optsMap
        }</span>
        <span class="cov9" title="12">return req</span>
}

func (c ollamaClient) doJSON(ctx context.Context, url string, body []byte) (*http.Response, error) <span class="cov8" title="9">{
        req, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewReader(body))
        if err != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>
        <span class="cov8" title="9">req.Header.Set("Content-Type", "application/json")
        return c.httpClient.Do(req)</span>
}

func handleOllamaNon2xx(resp *http.Response, start time.Time) error <span class="cov8" title="9">{
        if resp.StatusCode &gt;= 200 &amp;&amp; resp.StatusCode &lt; 300 </span><span class="cov7" title="7">{
                return nil
        }</span>
        <span class="cov3" title="2">var apiErr ollamaChatResponse
        _ = json.NewDecoder(resp.Body).Decode(&amp;apiErr)
        if strings.TrimSpace(apiErr.Error) != "" </span><span class="cov1" title="1">{
                logging.Logf("llm/ollama ", "%sapi error status=%d msg=%s duration=%s%s", logging.AnsiRed, resp.StatusCode, apiErr.Error, time.Since(start), logging.AnsiBase)
                return fmt.Errorf("ollama error: %s (status %d)", apiErr.Error, resp.StatusCode)
        }</span>
        <span class="cov1" title="1">logging.Logf("llm/ollama ", "%shttp non-2xx status=%d duration=%s%s", logging.AnsiRed, resp.StatusCode, time.Since(start), logging.AnsiBase)
        return fmt.Errorf("ollama http error: status %d", resp.StatusCode)</span>
}
</pre>
		
		<pre class="file" id="file14" style="display: none">// Summary: OpenAI client implementation for chat completions with optional streaming and detailed logging.
package llm

import (
        "bufio"
        "bytes"
        "context"
        "encoding/json"
        "errors"
        "fmt"
        "net/http"
        "strings"
        "time"

        "codeberg.org/snonux/hexai/internal/logging"
)

// openAIClient implements Client against OpenAI's Chat Completions API.
type openAIClient struct {
        httpClient         *http.Client
        apiKey             string
        baseURL            string
        defaultModel       string
        chatLogger         logging.ChatLogger
        defaultTemperature *float64
}

type oaChatRequest struct {
        Model       string      `json:"model"`
        Messages    []oaMessage `json:"messages"`
        Temperature *float64    `json:"temperature,omitempty"`
        MaxTokens   *int        `json:"max_tokens,omitempty"`
        Stop        []string    `json:"stop,omitempty"`
        Stream      bool        `json:"stream,omitempty"`
}

type oaMessage struct {
        Role    string `json:"role"`
        Content string `json:"content"`
}

type oaChatResponse struct {
        Choices []struct {
                Index   int `json:"index"`
                Message struct {
                        Role    string `json:"role"`
                        Content string `json:"content"`
                } `json:"message"`
                FinishReason string `json:"finish_reason"`
        } `json:"choices"`
        Error *struct {
                Message string `json:"message"`
                Type    string `json:"type"`
                Param   any    `json:"param"`
                Code    any    `json:"code"`
        } `json:"error,omitempty"`
}

// Streaming response chunk type (SSE)
type oaStreamChunk struct {
        Choices []struct {
                Delta struct {
                        Content string `json:"content"`
                } `json:"delta"`
                FinishReason string `json:"finish_reason"`
        } `json:"choices"`
        Error *struct {
                Message string `json:"message"`
                Type    string `json:"type"`
                Param   any    `json:"param"`
                Code    any    `json:"code"`
        } `json:"error,omitempty"`
}

// Constructor (kept among the first functions by convention)
// newOpenAI constructs an OpenAI client using explicit configuration values.
// The apiKey may be empty; calls will fail until a valid key is supplied.
func newOpenAI(baseURL, model, apiKey string, defaultTemp *float64) Client <span class="cov10" title="17">{
        if strings.TrimSpace(baseURL) == "" </span><span class="cov6" title="6">{
                baseURL = "https://api.openai.com/v1"
        }</span>
        <span class="cov10" title="17">if strings.TrimSpace(model) == "" </span><span class="cov6" title="6">{
                model = "gpt-4.1"
        }</span>
        <span class="cov10" title="17">return openAIClient{
                httpClient:         &amp;http.Client{Timeout: 30 * time.Second},
                apiKey:             apiKey,
                baseURL:            baseURL,
                defaultModel:       model,
                chatLogger:         logging.NewChatLogger("openai"),
                defaultTemperature: defaultTemp,
        }</span>
}

func (c openAIClient) Chat(ctx context.Context, messages []Message, opts ...RequestOption) (string, error) <span class="cov6" title="6">{
        if c.apiKey == "" </span><span class="cov1" title="1">{
                return nilStringErr("missing OpenAI API key")
        }</span>
        <span class="cov6" title="5">o := Options{Model: c.defaultModel}
        for _, opt := range opts </span><span class="cov0" title="0">{
                opt(&amp;o)
        }</span>
        <span class="cov6" title="5">if o.Model == "" </span><span class="cov0" title="0">{
                o.Model = c.defaultModel
        }</span>
        <span class="cov6" title="5">start := time.Now()
        c.logStart(false, o, messages)
        req := buildOAChatRequest(o, messages, c.defaultTemperature, false)
        body, err := json.Marshal(req)
        if err != nil </span><span class="cov0" title="0">{
                c.logf("marshal error: %v", err)
                return "", err
        }</span>
        <span class="cov6" title="5">endpoint := c.baseURL + "/chat/completions"
        logging.Logf("llm/openai ", "POST %s", endpoint)
        resp, err := c.doJSON(ctx, endpoint, body, map[string]string{
                "Authorization": "Bearer " + c.apiKey,
        })
        if err != nil </span><span class="cov0" title="0">{
                logging.Logf("llm/openai ", "%shttp error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return "", err
        }</span>
        <span class="cov6" title="5">defer resp.Body.Close()
        if err := handleOpenAINon2xx(resp, start); err != nil </span><span class="cov1" title="1">{
                return "", err
        }</span>
        <span class="cov5" title="4">out, err := decodeOpenAIChat(resp, start)
        if err != nil </span><span class="cov1" title="1">{
                return "", err
        }</span>
        <span class="cov4" title="3">if len(out.Choices) == 0 </span><span class="cov1" title="1">{
                logging.Logf("llm/openai ", "%sno choices returned duration=%s%s", logging.AnsiRed, time.Since(start), logging.AnsiBase)
                return "", errors.New("openai: no choices returned")
        }</span>
        <span class="cov3" title="2">content := out.Choices[0].Message.Content
        logging.Logf("llm/openai ", "success choice=0 finish=%s size=%d preview=%s%s%s duration=%s", out.Choices[0].FinishReason, len(content), logging.AnsiGreen, logging.PreviewForLog(content), logging.AnsiBase, time.Since(start))
        return content, nil</span>
}

// Provider metadata
func (c openAIClient) Name() string         <span class="cov6" title="6">{ return "openai" }</span>
func (c openAIClient) DefaultModel() string <span class="cov6" title="6">{ return c.defaultModel }</span>

// Streaming support (optional)

func (c openAIClient) ChatStream(ctx context.Context, messages []Message, onDelta func(string), opts ...RequestOption) error <span class="cov5" title="4">{
        if c.apiKey == "" </span><span class="cov0" title="0">{
                return errors.New("missing OpenAI API key")
        }</span>
        <span class="cov5" title="4">o := Options{Model: c.defaultModel}
        for _, opt := range opts </span><span class="cov0" title="0">{
                opt(&amp;o)
        }</span>
        <span class="cov5" title="4">if o.Model == "" </span><span class="cov0" title="0">{
                o.Model = c.defaultModel
        }</span>
        <span class="cov5" title="4">start := time.Now()
        c.logStart(true, o, messages)
        req := buildOAChatRequest(o, messages, c.defaultTemperature, true)
        body, err := json.Marshal(req)
        if err != nil </span><span class="cov0" title="0">{
                c.logf("marshal error: %v", err)
                return err
        }</span>
        <span class="cov5" title="4">endpoint := c.baseURL + "/chat/completions"
        logging.Logf("llm/openai ", "POST %s (stream)", endpoint)
        resp, err := c.doJSONWithAccept(ctx, endpoint, body, map[string]string{
                "Authorization": "Bearer " + c.apiKey,
        }, "text/event-stream")
        if err != nil </span><span class="cov0" title="0">{
                logging.Logf("llm/openai ", "%shttp error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return err
        }</span>
        <span class="cov5" title="4">defer resp.Body.Close()
        if err := handleOpenAINon2xx(resp, start); err != nil </span><span class="cov0" title="0">{
                return err
        }</span>

        <span class="cov5" title="4">if err := parseOpenAIStream(resp, start, onDelta); err != nil </span><span class="cov1" title="1">{
                return err
        }</span>
        <span class="cov4" title="3">logging.Logf("llm/openai ", "stream end duration=%s", time.Since(start))
        return nil</span>
}

// Private helpers
func (c openAIClient) logf(format string, args ...any) <span class="cov0" title="0">{ logging.Logf("llm/openai ", format, args...) }</span>

// helpers extracted to keep methods small
func (c openAIClient) logStart(stream bool, o Options, messages []Message) <span class="cov7" title="9">{
        logMessages := make([]struct{ Role, Content string }, len(messages))
        for i, m := range messages </span><span class="cov7" title="9">{
                logMessages[i] = struct{ Role, Content string }{m.Role, m.Content}
        }</span>
        <span class="cov7" title="9">c.chatLogger.LogStart(stream, o.Model, o.Temperature, o.MaxTokens, o.Stop, logMessages)</span>
}

func buildOAChatRequest(o Options, messages []Message, defaultTemp *float64, stream bool) oaChatRequest <span class="cov8" title="11">{
        req := oaChatRequest{Model: o.Model, Stream: stream}
        req.Messages = make([]oaMessage, len(messages))
        for i, m := range messages </span><span class="cov8" title="11">{
                req.Messages[i] = oaMessage{Role: m.Role, Content: m.Content}
        }</span>
        <span class="cov8" title="11">if o.Temperature != 0 </span><span class="cov0" title="0">{
                req.Temperature = &amp;o.Temperature
        }</span> else<span class="cov8" title="11"> if defaultTemp != nil </span><span class="cov8" title="11">{
                t := *defaultTemp
                req.Temperature = &amp;t
        }</span>
        <span class="cov8" title="11">if o.MaxTokens &gt; 0 </span><span class="cov3" title="2">{
                req.MaxTokens = &amp;o.MaxTokens
        }</span>
        <span class="cov8" title="11">if len(o.Stop) &gt; 0 </span><span class="cov3" title="2">{
                req.Stop = o.Stop
        }</span>
        <span class="cov8" title="11">return req</span>
}

func (c openAIClient) doJSON(ctx context.Context, url string, body []byte, headers map[string]string) (*http.Response, error) <span class="cov6" title="5">{
        req, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewReader(body))
        if err != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>
        <span class="cov6" title="5">req.Header.Set("Content-Type", "application/json")
        for k, v := range headers </span><span class="cov6" title="5">{
                req.Header.Set(k, v)
        }</span>
        <span class="cov6" title="5">return c.httpClient.Do(req)</span>
}

func (c openAIClient) doJSONWithAccept(ctx context.Context, url string, body []byte, headers map[string]string, accept string) (*http.Response, error) <span class="cov5" title="4">{
        req, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewReader(body))
        if err != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>
        <span class="cov5" title="4">req.Header.Set("Content-Type", "application/json")
        req.Header.Set("Accept", accept)
        for k, v := range headers </span><span class="cov5" title="4">{
                req.Header.Set(k, v)
        }</span>
        <span class="cov5" title="4">return c.httpClient.Do(req)</span>
}

func handleOpenAINon2xx(resp *http.Response, start time.Time) error <span class="cov8" title="11">{
        if resp.StatusCode &gt;= 200 &amp;&amp; resp.StatusCode &lt; 300 </span><span class="cov7" title="8">{
                return nil
        }</span>
        <span class="cov4" title="3">var apiErr oaChatResponse
        _ = json.NewDecoder(resp.Body).Decode(&amp;apiErr)
        if apiErr.Error != nil &amp;&amp; apiErr.Error.Message != "" </span><span class="cov3" title="2">{
                logging.Logf("llm/openai ", "%sapi error status=%d type=%s msg=%s duration=%s%s", logging.AnsiRed, resp.StatusCode, apiErr.Error.Type, apiErr.Error.Message, time.Since(start), logging.AnsiBase)
                return fmt.Errorf("openai error: %s (status %d)", apiErr.Error.Message, resp.StatusCode)
        }</span>
        <span class="cov1" title="1">logging.Logf("llm/openai ", "%shttp non-2xx status=%d duration=%s%s", logging.AnsiRed, resp.StatusCode, time.Since(start), logging.AnsiBase)
        return fmt.Errorf("openai http error: status %d", resp.StatusCode)</span>
}

func decodeOpenAIChat(resp *http.Response, start time.Time) (oaChatResponse, error) <span class="cov5" title="4">{
        var out oaChatResponse
        if err := json.NewDecoder(resp.Body).Decode(&amp;out); err != nil </span><span class="cov1" title="1">{
                logging.Logf("llm/openai ", "%sdecode error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return oaChatResponse{}, err
        }</span>
        <span class="cov4" title="3">return out, nil</span>
}

func parseOpenAIStream(resp *http.Response, start time.Time, onDelta func(string)) error <span class="cov6" title="5">{
        // Parse SSE: lines starting with "data: " containing JSON or [DONE]
        scanner := bufio.NewScanner(resp.Body)
        const maxBuf = 1024 * 1024
        buf := make([]byte, 0, 64*1024)
        scanner.Buffer(buf, maxBuf)
        for scanner.Scan() </span><span class="cov8" title="11">{
                line := scanner.Text()
                if !strings.HasPrefix(line, "data: ") </span><span class="cov4" title="3">{
                        continue</span>
                }
                <span class="cov7" title="8">payload := strings.TrimPrefix(line, "data: ")
                if strings.TrimSpace(payload) == "[DONE]" </span><span class="cov4" title="3">{
                        break</span>
                }
                <span class="cov6" title="5">var chunk oaStreamChunk
                if err := json.Unmarshal([]byte(payload), &amp;chunk); err != nil </span><span class="cov3" title="2">{
                        continue</span>
                }
                <span class="cov4" title="3">if chunk.Error != nil &amp;&amp; chunk.Error.Message != "" </span><span class="cov1" title="1">{
                        logging.Logf("llm/openai ", "%sstream error: %s%s", logging.AnsiRed, chunk.Error.Message, logging.AnsiBase)
                        return fmt.Errorf("openai stream error: %s", chunk.Error.Message)
                }</span>
                <span class="cov3" title="2">for _, ch := range chunk.Choices </span><span class="cov3" title="2">{
                        if ch.Delta.Content != "" </span><span class="cov3" title="2">{
                                onDelta(ch.Delta.Content)
                        }</span>
                }
        }
        <span class="cov5" title="4">if err := scanner.Err(); err != nil </span><span class="cov0" title="0">{
                logging.Logf("llm/openai ", "%sstream read error after %s: %v%s", logging.AnsiRed, time.Since(start), err, logging.AnsiBase)
                return err
        }</span>
        <span class="cov5" title="4">return nil</span>
}
</pre>
		
		<pre class="file" id="file15" style="display: none">// Summary: LLM provider interfaces, request options, configuration, and factory to build a client from config.
package llm

import (
        "context"
        "errors"
        "strings"
)

// Message represents a chat-style prompt message.
type Message struct {
        Role    string
        Content string
}

// Client is a minimal LLM provider interface.
// Future providers (Ollama, etc.) should implement this.
type Client interface {
        // Chat sends chat messages and returns the assistant text.
        Chat(ctx context.Context, messages []Message, opts ...RequestOption) (string, error)
        // Name returns the provider's short name (e.g., "openai", "ollama").
        Name() string
        // DefaultModel returns the configured default model name.
        DefaultModel() string
}

// Streamer is an optional interface that providers may implement to support
// token-by-token streaming responses. Callers can type-assert to Streamer and
// fall back to Client.Chat when not implemented.
type Streamer interface {
        // ChatStream sends chat messages and invokes onDelta with incremental text
        // chunks as they are produced by the model. Implementations should call
        // onDelta with empty strings sparingly (prefer only non-empty chunks).
        ChatStream(ctx context.Context, messages []Message, onDelta func(string), opts ...RequestOption) error
}

// CodeCompleter is an optional interface for providers that support a
// prompt/suffix code-completion API (e.g., Copilot Codex endpoint). Clients
// can type-assert to this and prefer it over chat when available.
type CodeCompleter interface {
        // CodeCompletion requests up to n suggestions given a left-hand prompt and
        // right-hand suffix around the cursor. Language is advisory and may be
        // ignored. Temperature applies when provider supports it.
        CodeCompletion(ctx context.Context, prompt string, suffix string, n int, language string, temperature float64) ([]string, error)
}

// Options for a request. Providers may ignore unsupported fields.
type Options struct {
        Model       string
        Temperature float64
        MaxTokens   int
        Stop        []string
}

// RequestOption mutates Options.
type RequestOption func(*Options)

func WithModel(model string) RequestOption    <span class="cov1" title="1">{ return func(o *Options) </span><span class="cov1" title="1">{ o.Model = model }</span> }
func WithTemperature(t float64) RequestOption <span class="cov5" title="5">{ return func(o *Options) </span><span class="cov1" title="1">{ o.Temperature = t }</span> }
func WithMaxTokens(n int) RequestOption       <span class="cov10" title="33">{ return func(o *Options) </span><span class="cov1" title="1">{ o.MaxTokens = n }</span> }
func WithStop(stop ...string) RequestOption <span class="cov1" title="1">{
        return func(o *Options) </span><span class="cov1" title="1">{ o.Stop = append([]string{}, stop...) }</span>
}

// Config defines provider configuration read from the Hexai config file.
type Config struct {
        Provider string
        // OpenAI options
        OpenAIBaseURL     string
        OpenAIModel       string
        OpenAITemperature *float64
        // Ollama options
        OllamaBaseURL     string
        OllamaModel       string
        OllamaTemperature *float64
        // Copilot options
        CopilotBaseURL     string
        CopilotModel       string
        CopilotTemperature *float64
}

// NewFromConfig creates an LLM client using only the supplied configuration.
// The OpenAI API key is supplied separately and may be read from the environment
// by the caller; other environment-based configuration is not used.
func NewFromConfig(cfg Config, openAIAPIKey, copilotAPIKey string) (Client, error) <span class="cov8" title="19">{
        p := strings.ToLower(strings.TrimSpace(cfg.Provider))
        if p == "" </span><span class="cov6" title="8">{
                p = "openai"
        }</span>
        <span class="cov8" title="19">switch p </span>{
        case "openai":<span class="cov7" title="12">
                if strings.TrimSpace(openAIAPIKey) == "" </span><span class="cov5" title="5">{
                        return nil, errors.New("missing OPENAI_API_KEY for provider openai")
                }</span>
                // Set coding-friendly default temperature if none provided
                <span class="cov6" title="7">if cfg.OpenAITemperature == nil </span><span class="cov5" title="5">{
                        t := 0.2
                        cfg.OpenAITemperature = &amp;t
                }</span>
                <span class="cov6" title="7">return newOpenAI(cfg.OpenAIBaseURL, cfg.OpenAIModel, openAIAPIKey, cfg.OpenAITemperature), nil</span>
        case "ollama":<span class="cov3" title="3">
                if cfg.OllamaTemperature == nil </span><span class="cov2" title="2">{
                        t := 0.2
                        cfg.OllamaTemperature = &amp;t
                }</span>
                <span class="cov3" title="3">return newOllama(cfg.OllamaBaseURL, cfg.OllamaModel, cfg.OllamaTemperature), nil</span>
        case "copilot":<span class="cov3" title="3">
                if strings.TrimSpace(copilotAPIKey) == "" </span><span class="cov1" title="1">{
                        return nil, errors.New("missing COPILOT_API_KEY for provider copilot")
                }</span>
                <span class="cov2" title="2">if cfg.CopilotTemperature == nil </span><span class="cov2" title="2">{
                        t := 0.2
                        cfg.CopilotTemperature = &amp;t
                }</span>
                <span class="cov2" title="2">return newCopilot(cfg.CopilotBaseURL, cfg.CopilotModel, copilotAPIKey, cfg.CopilotTemperature), nil</span>
        default:<span class="cov1" title="1">
                return nil, errors.New("unknown LLM provider: " + p)</span>
        }
}
</pre>
		
		<pre class="file" id="file16" style="display: none">package llm

import "errors"

// small helper to keep return type consistent
func nilStringErr(msg string) (string, error) <span class="cov10" title="2">{ return "", errors.New(msg) }</span>
</pre>
		
		<pre class="file" id="file17" style="display: none">package llmutils

import (
    "os"
    "strings"

    "codeberg.org/snonux/hexai/internal/appconfig"
    "codeberg.org/snonux/hexai/internal/llm"
)

// NewClientFromApp builds an llm.Client using app config and environment keys.
func NewClientFromApp(cfg appconfig.App) (llm.Client, error) <span class="cov10" title="6">{
    llmCfg := llm.Config{
        Provider:           cfg.Provider,
        OpenAIBaseURL:      cfg.OpenAIBaseURL,
        OpenAIModel:        cfg.OpenAIModel,
        OpenAITemperature:  cfg.OpenAITemperature,
        OllamaBaseURL:      cfg.OllamaBaseURL,
        OllamaModel:        cfg.OllamaModel,
        OllamaTemperature:  cfg.OllamaTemperature,
        CopilotBaseURL:     cfg.CopilotBaseURL,
        CopilotModel:       cfg.CopilotModel,
        CopilotTemperature: cfg.CopilotTemperature,
    }
    oaKey := os.Getenv("HEXAI_OPENAI_API_KEY")
    if strings.TrimSpace(oaKey) == "" </span><span class="cov9" title="5">{
        oaKey = os.Getenv("OPENAI_API_KEY")
    }</span>
    <span class="cov10" title="6">cpKey := os.Getenv("HEXAI_COPILOT_API_KEY")
    if strings.TrimSpace(cpKey) == "" </span><span class="cov10" title="6">{
        cpKey = os.Getenv("COPILOT_API_KEY")
    }</span>
    <span class="cov10" title="6">return llm.NewFromConfig(llmCfg, oaKey, cpKey)</span>
}

</pre>
		
		<pre class="file" id="file18" style="display: none">package logging

// ChatLogger provides a structured way to log chat interactions.
type ChatLogger struct {
        Provider string
}

// NewChatLogger creates a new ChatLogger for a given provider.
func NewChatLogger(provider string) ChatLogger <span class="cov10" title="40">{
        return ChatLogger{Provider: provider}
}</span>

// LogStart logs the beginning of a chat or stream interaction.
func (cl ChatLogger) LogStart(stream bool, model string, temp float64, maxTokens int, stop []string, messages []struct {
        Role    string
        Content string
},
) <span class="cov8" title="24">{
        chatOrStream := "chat"
        if stream </span><span class="cov6" title="8">{
                chatOrStream = "stream"
        }</span>
        <span class="cov8" title="24">Logf("llm/"+cl.Provider+" ", "%s start model=%s temp=%.2f max_tokens=%d stop=%d messages=%d",
                chatOrStream, model, temp, maxTokens, len(stop), len(messages))
        for i, m := range messages </span><span class="cov8" title="24">{
                Logf("llm/"+cl.Provider+" ", "msg[%d] role=%s size=%d preview=%s%s%s",
                        i, m.Role, len(m.Content), AnsiCyan, PreviewForLog(m.Content), AnsiBase)
        }</span>
}
</pre>
		
		<pre class="file" id="file19" style="display: none">// Summary: ANSI-styled logging utilities with a bound standard logger and configurable preview truncation.
package logging

import (
        "fmt"
        "log"
)

// ANSI color utilities shared across Hexai.
const (
        AnsiBgBlack = "\x1b[40m"
        AnsiGrey    = "\x1b[90m"
        AnsiCyan    = "\x1b[36m"
        AnsiGreen   = "\x1b[32m"
        AnsiYellow  = "\x1b[33m"
        AnsiRed     = "\x1b[31m"
        AnsiReset   = "\x1b[0m"
)

// AnsiBase is the default style: black background + grey foreground.
const AnsiBase = AnsiBgBlack + AnsiGrey

// singleton logger used across the codebase
var std *log.Logger

// Bind sets the underlying standard logger to use for Logf.
func Bind(l *log.Logger) <span class="cov2" title="3">{ std = l }</span>

// Logf prints a formatted message with a module prefix and base ANSI style.
func Logf(prefix, format string, args ...any) <span class="cov10" title="144">{
        if std == nil </span><span class="cov9" title="103">{
                return
        }</span>
        <span class="cov7" title="41">msg := fmt.Sprintf(format, args...)
        std.Print(AnsiBase + prefix + msg + AnsiReset)</span>
}

// Logging configuration for previews (shared)
var logPreviewLimit int // 0 means unlimited

// SetLogPreviewLimit sets the maximum number of characters to log for
// request/response previews. Set to 0 for unlimited.
func SetLogPreviewLimit(n int) <span class="cov4" title="9">{ logPreviewLimit = n }</span>

// PreviewForLog returns the string truncated to the configured preview limit.
func PreviewForLog(s string) string <span class="cov7" title="32">{
        if logPreviewLimit &gt; 0 </span><span class="cov2" title="3">{
                if len(s) &lt;= logPreviewLimit </span><span class="cov0" title="0">{
                        return s
                }</span>
                <span class="cov2" title="3">return s[:logPreviewLimit] + "…"</span>
        }
        <span class="cov7" title="29">return s</span>
}
</pre>
		
		<pre class="file" id="file20" style="display: none">// Summary: Builds additional context snippets based on configured mode and truncates text by token heuristic.
package lsp

import (
        "strings"

        "codeberg.org/snonux/hexai/internal/logging"
)

// buildAdditionalContext builds extra context messages based on the configured mode.
// Modes:
// - minimal: no extra context
// - window: include a window of lines around the cursor
// - file-on-new-func: include full file only when defining a new function
// - always-full: always include the full file
func (s *Server) buildAdditionalContext(newFunc bool, uri string, pos Position) (string, bool) <span class="cov10" title="5">{
        mode := s.contextMode
        switch mode </span>{
        case "minimal":<span class="cov1" title="1">
                return "", false</span>
        case "window":<span class="cov0" title="0">
                return s.windowContext(uri, pos), true</span>
        case "file-on-new-func":<span class="cov4" title="2">
                if newFunc </span><span class="cov1" title="1">{
                        return s.fullFileContext(uri), true
                }</span>
                <span class="cov1" title="1">return "", false</span>
        case "always-full":<span class="cov1" title="1">
                return s.fullFileContext(uri), true</span>
        default:<span class="cov1" title="1">
                // fallback to minimal if unknown
                return "", false</span>
        }
}

func (s *Server) windowContext(uri string, pos Position) string <span class="cov1" title="1">{
        d := s.getDocument(uri)
        if d == nil || len(d.lines) == 0 </span><span class="cov0" title="0">{
                logging.Logf("lsp ", "context: window requested but document not open; skipping uri=%s", uri)
                return ""
        }</span>
        <span class="cov1" title="1">n := len(d.lines)
        half := s.windowLines / 2
        start := pos.Line - half
        if start &lt; 0 </span><span class="cov0" title="0">{
                start = 0
        }</span>
        <span class="cov1" title="1">end := pos.Line + half + 1
        if end &gt; n </span><span class="cov0" title="0">{
                end = n
        }</span>
        <span class="cov1" title="1">text := strings.Join(d.lines[start:end], "\n")
        return truncateToApproxTokens(text, s.maxContextTokens)</span>
}

func (s *Server) fullFileContext(uri string) string <span class="cov4" title="2">{
        d := s.getDocument(uri)
        if d == nil </span><span class="cov0" title="0">{
                logging.Logf("lsp ", "context: full-file requested but document not open; skipping uri=%s", uri)
                return ""
        }</span>
        <span class="cov4" title="2">return truncateToApproxTokens(d.text, s.maxContextTokens)</span>
}

// truncateToApproxTokens naively truncates the input to fit approx N tokens.
// Uses 4 chars/token heuristic for speed and determinism.
func truncateToApproxTokens(text string, maxTokens int) string <span class="cov8" title="4">{
        if maxTokens &lt;= 0 </span><span class="cov0" title="0">{
                return ""
        }</span>
        <span class="cov8" title="4">maxChars := maxTokens * 4
        if len(text) &lt;= maxChars </span><span class="cov7" title="3">{
                return text
        }</span>
        // try to cut on a line boundary near maxChars
        <span class="cov1" title="1">cut := maxChars
        if cut &gt; len(text) </span><span class="cov0" title="0">{
                cut = len(text)
        }</span>
        <span class="cov1" title="1">if i := strings.LastIndex(text[:cut], "\n"); i &gt; 0 </span><span class="cov0" title="0">{
                cut = i
        }</span>
        <span class="cov1" title="1">return text[:cut]</span>
}
</pre>
		
		<pre class="file" id="file21" style="display: none">// Summary: In-memory document model for the LSP; tracks text, lines, and applies edits.
package lsp

import (
        "strings"
        "time"
)

type document struct {
        uri   string
        text  string
        lines []string
}

func (s *Server) setDocument(uri, text string) <span class="cov8" title="32">{
        s.mu.Lock()
        defer s.mu.Unlock()
        s.docs[uri] = &amp;document{uri: uri, text: text, lines: splitLines(text)}
}</span>

func (s *Server) deleteDocument(uri string) <span class="cov1" title="1">{
        s.mu.Lock()
        defer s.mu.Unlock()
        delete(s.docs, uri)
}</span>

func (s *Server) markActivity() <span class="cov4" title="4">{
        s.mu.Lock()
        s.lastInput = time.Now()
        s.mu.Unlock()
}</span>

func (s *Server) getDocument(uri string) *document <span class="cov10" title="52">{
        s.mu.RLock()
        defer s.mu.RUnlock()
        return s.docs[uri]
}</span>

// splitLines splits the input string into lines, normalizing line endings to '\n'.
func splitLines(sx string) []string <span class="cov9" title="42">{
        sx = strings.ReplaceAll(sx, "\r\n", "\n")
        return strings.Split(sx, "\n")
}</span>

func (s *Server) lineContext(uri string, pos Position) (above, current, below, funcCtx string) <span class="cov4" title="5">{
        d := s.getDocument(uri)
        if d == nil || len(d.lines) == 0 </span><span class="cov1" title="1">{
                return "", "", "", ""
        }</span>
        <span class="cov4" title="4">idx := pos.Line
        if idx &lt; 0 </span><span class="cov0" title="0">{
                idx = 0
        }</span>
        <span class="cov4" title="4">if idx &gt;= len(d.lines) </span><span class="cov0" title="0">{
                idx = len(d.lines) - 1
        }</span>
        <span class="cov4" title="4">current = d.lines[idx]
        if idx-1 &gt;= 0 </span><span class="cov4" title="4">{
                above = d.lines[idx-1]
        }</span>
        <span class="cov4" title="4">if idx+1 &lt; len(d.lines) </span><span class="cov4" title="4">{
                below = d.lines[idx+1]
        }</span>
        <span class="cov4" title="4">for i := idx; i &gt;= 0; i-- </span><span class="cov5" title="6">{
                line := strings.TrimSpace(d.lines[i])
                if hasAny(line, []string{"func ", "def ", "class ", "fn ", "procedure ", "sub "}) </span><span class="cov4" title="4">{
                        funcCtx = line
                        break</span>
                }
        }
        <span class="cov4" title="4">return above, current, below, funcCtx</span>
}

// isDefiningNewFunction returns true when the cursor appears to be within
// a function declaration/signature and before the opening '{' of the body.
// Heuristic: find nearest preceding line containing "func "; ensure no '{'
// appears before the cursor across those lines.
func (s *Server) isDefiningNewFunction(uri string, pos Position) bool <span class="cov3" title="3">{
        d := s.getDocument(uri)
        if d == nil || len(d.lines) == 0 </span><span class="cov0" title="0">{
                return false
        }</span>
        <span class="cov3" title="3">idx := pos.Line
        if idx &lt; 0 </span><span class="cov0" title="0">{
                idx = 0
        }</span>
        <span class="cov3" title="3">if idx &gt;= len(d.lines) </span><span class="cov0" title="0">{
                idx = len(d.lines) - 1
        }</span>
        // Find signature start
        <span class="cov3" title="3">sigStart := -1
        for i := idx; i &gt;= 0; i-- </span><span class="cov4" title="5">{
                if strings.Contains(d.lines[i], "func ") </span><span class="cov3" title="3">{
                        sigStart = i
                        break</span>
                }
                // stop if we hit a closing brace which likely ends a previous block
                <span class="cov2" title="2">if strings.Contains(d.lines[i], "}") </span><span class="cov0" title="0">{
                        break</span>
                }
        }
        <span class="cov3" title="3">if sigStart == -1 </span><span class="cov0" title="0">{
                return false
        }</span>
        // Scan for '{' from sigStart up to cursor position; if found before or at cursor, we're in body
        <span class="cov3" title="3">for i := sigStart; i &lt;= idx; i++ </span><span class="cov4" title="4">{
                line := d.lines[i]
                brace := strings.Index(line, "{")
                if brace &gt;= 0 </span><span class="cov2" title="2">{
                        if i &lt; idx </span><span class="cov1" title="1">{
                                return false // body started on a previous line
                        }</span>
                        // same line as cursor: if brace position &lt; cursor character, then already in body
                        <span class="cov1" title="1">if pos.Character &gt; brace </span><span class="cov1" title="1">{
                                return false
                        }</span>
                }
        }
        <span class="cov1" title="1">return true</span>
}

func hasAny(s string, needles []string) bool <span class="cov5" title="6">{
        for _, n := range needles </span><span class="cov7" title="16">{
                if strings.Contains(s, n) </span><span class="cov4" title="4">{
                        return true
                }</span>
        }
        <span class="cov2" title="2">return false</span>
}

func trimLen(s string) string <span class="cov9" title="42">{
        s = strings.TrimSpace(s)
        if len(s) &gt; 200 </span><span class="cov1" title="1">{
                return s[:200] + "…"
        }</span>
        <span class="cov9" title="41">return s</span>
}

func firstLine(s string) string <span class="cov8" title="25">{
        s = strings.ReplaceAll(s, "\r\n", "\n")
        if idx := strings.IndexByte(s, '\n'); idx &gt;= 0 </span><span class="cov5" title="6">{
                return s[:idx]
        }</span>
        <span class="cov7" title="19">return s</span>
}
</pre>
		
		<pre class="file" id="file22" style="display: none">// Summary: LSP JSON-RPC handlers; implements core methods and integrates with the LLM client when enabled.
package lsp

import (
    "encoding/json"
    "fmt"
    "strings"
)

func (s *Server) handle(req Request) <span class="cov2" title="2">{
        if h, ok := s.handlers[req.Method]; ok </span><span class="cov1" title="1">{
                h(req)
                return
        }</span>
        <span class="cov1" title="1">if len(req.ID) != 0 </span><span class="cov1" title="1">{
                s.reply(req.ID, nil, &amp;RespError{Code: -32601, Message: fmt.Sprintf("method not found: %s", req.Method)})
        }</span>
}

// handleInitialize moved to handlers_init.go

// llmRequestOpts moved to handlers_utils.go

// instructionFromSelection extracts the first instruction from selection text.
// Preference order on each line: strict ;text; marker (no inner spaces), then
// a line comment (//, #, --). Returns the instruction string and the selection
// text cleaned of the matched instruction marker or comment.
func instructionFromSelection(sel string) (string, string) <span class="cov3" title="3">{
    lines := splitLines(sel)
    for idx, line := range lines </span><span class="cov3" title="3">{
        if instr, cleaned, ok := findFirstInstructionInLine(line); ok &amp;&amp; strings.TrimSpace(instr) != "" </span><span class="cov1" title="1">{
            lines[idx] = cleaned
            return instr, strings.Join(lines, "\n")
        }</span>
    }
    <span class="cov2" title="2">return "", sel</span>
}

// findFirstInstructionInLine returns the earliest instruction marker on the
// line and the line with that marker removed. Supported markers, ordered by
// earliest byte offset in the line:
// - ;text; (strict, no space after first ';' or before last ';')
// - /* text */ (single-line only)
// - &lt;!-- text --&gt; (single-line only)
// - // text
// - # text
// - -- text
func findFirstInstructionInLine(line string) (instr string, cleaned string, ok bool) <span class="cov8" title="22">{
    type cand struct {
        start, end int
        text       string
    }
    cands := []cand{}
    if t, l, r, ok := findStrictInlineTag(line); ok </span><span class="cov5" title="6">{
        cands = append(cands, cand{start: l, end: r, text: t})
    }</span>
    <span class="cov8" title="22">if i := strings.Index(line, "/*"); i &gt;= 0 </span><span class="cov2" title="2">{
        if j := strings.Index(line[i+2:], "*/"); j &gt;= 0 </span><span class="cov2" title="2">{
            start := i
            end := i + 2 + j + 2
            text := strings.TrimSpace(line[i+2 : i+2+j])
            cands = append(cands, cand{start: start, end: end, text: text})
        }</span>
    }
    <span class="cov8" title="22">if i := strings.Index(line, "&lt;!--"); i &gt;= 0 </span><span class="cov2" title="2">{
        if j := strings.Index(line[i+4:], "--&gt;"); j &gt;= 0 </span><span class="cov2" title="2">{
            start := i
            end := i + 4 + j + 3
            text := strings.TrimSpace(line[i+4 : i+4+j])
            cands = append(cands, cand{start: start, end: end, text: text})
        }</span>
    }
    <span class="cov8" title="22">if i := strings.Index(line, "//"); i &gt;= 0 </span><span class="cov4" title="4">{
        cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+2:])})
    }</span>
    <span class="cov8" title="22">if i := strings.Index(line, "#"); i &gt;= 0 </span><span class="cov2" title="2">{
        cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+1:])})
    }</span>
    <span class="cov8" title="22">if i := strings.Index(line, "--"); i &gt;= 0 </span><span class="cov4" title="4">{
        cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+2:])})
    }</span>
    <span class="cov8" title="22">if len(cands) == 0 </span><span class="cov5" title="6">{
        return "", line, false
    }</span>
    // pick earliest start index
    <span class="cov7" title="16">best := cands[0]
    for _, c := range cands[1:] </span><span class="cov4" title="4">{
        if c.start &gt;= 0 &amp;&amp; (best.start &lt; 0 || c.start &lt; best.start) </span><span class="cov1" title="1">{
            best = c
        }</span>
    }
    <span class="cov7" title="16">cleaned = strings.TrimRight(line[:best.start]+line[best.end:], " \t")
    return best.text, cleaned, true</span>
}

// diagnosticsInRange parses the CodeAction context and returns diagnostics
// that overlap the given selection range. If the context is missing or does
// not contain diagnostics, returns an empty slice.
// CodeAction-related handlers and helpers moved to handlers_codeaction.go

// extractRangeText moved to handlers_utils.go

// handleInitialized moved to handlers_init.go

// handleShutdown moved to handlers_init.go

// handleExit moved to handlers_init.go

// handleDidOpen moved to handlers_document.go

// handleDidChange moved to handlers_document.go

// handleDidClose moved to handlers_document.go

// handleCompletion moved to handlers_completion.go

func (s *Server) reply(id json.RawMessage, result any, err *RespError) <span class="cov7" title="11">{
        resp := Response{JSONRPC: "2.0", ID: id, Result: result, Error: err}
        s.writeMessage(resp)
}</span>

// docBeforeAfter returns the full document text split at the given position.
// The returned strings are the text before the cursor (inclusive of anything
// left of the position) and the text after the cursor.
// docBeforeAfter moved to handlers_document.go

// extractTriggerInfo returns the LSP completion TriggerKind and TriggerCharacter
// if provided by the client; when absent it returns zeros.
// extractTriggerInfo moved to handlers_completion.go

// --- in-editor chat (";C ...") ---

// detectAndHandleChat scans the current document for any line that starts with
// ";C" and appears to be awaiting a response (i.e., followed by a blank line
// and no non-empty answer line yet). If found, it asks the LLM and inserts the
// answer below the blank line, leaving exactly one empty line between prompt
// and response.
// detectAndHandleChat moved to handlers_document.go

// applyChatEdits removes the triggering punctuation at end of the line and
// inserts two newlines followed by a new line with the response prefixed.
// applyChatEdits moved to handlers_document.go

// buildChatHistory walks upwards from the current line to collect the most recent
// Q/A pairs in the in-editor transcript. It returns messages in chronological order
// ending with the current user prompt. Limits to a small number of pairs to control tokens.
// buildChatHistory moved to handlers_document.go

// stripTrailingTrigger removes a single trailing punctuation from the set
// [?,!,:] or both semicolons if present at end, mirroring the inline trigger rules.
// stripTrailingTrigger moved to handlers_document.go

// clientApplyEdit sends a workspace/applyEdit request to the client.
// clientApplyEdit moved to handlers_document.go

// nextReqID returns a unique json.RawMessage id for server-initiated requests.
// nextReqID moved to handlers_document.go

// --- completion helpers ---

// buildDocString moved to handlers_completion.go

// logCompletionContext moved to handlers_completion.go

// tryLLMCompletion moved to handlers_completion.go

// parseManualInvoke inspects the LSP completion context and reports whether the user manually invoked completion.
// parseManualInvoke moved to handlers_completion.go

// shouldSuppressForChatTriggerEOL returns true when a chat trigger like "&gt;" follows ?, !, :, or ; at EOL.
// shouldSuppressForChatTriggerEOL moved to handlers_completion.go

// prefixHeuristicAllows applies minimal prefix rules unless inlinePrompt or structural triggers apply.
// prefixHeuristicAllows moved to handlers_completion.go

// tryProviderNativeCompletion attempts provider-native completion and returns items when successful.
// tryProviderNativeCompletion moved to handlers_completion.go

// buildCompletionMessages constructs the LLM messages for completion.
// buildCompletionMessages moved to handlers_completion.go

// postProcessCompletion normalizes and deduplicates completion text and applies indentation rules.
// postProcessCompletion moved to handlers_completion.go

// busyCompletionItem builds a visible, non-inserting completion item indicating
// that an LLM request is already in flight.
// removed: previous single in-flight LLM busy gate and busy item

// --- small completion cache (last ~10 entries) ---

func (s *Server) completionCacheKey(p CompletionParams, above, current, below, funcCtx string, inParams bool, hasExtra bool, extraText string) string <span class="cov7" title="14">{
        // Normalize left-of-cursor by trimming trailing spaces/tabs
        idx := p.Position.Character
        if idx &gt; len(current) </span><span class="cov0" title="0">{
                idx = len(current)
        }</span>
        <span class="cov7" title="14">left := strings.TrimRight(current[:idx], " \t")
        right := ""
        if idx &lt; len(current) </span><span class="cov1" title="1">{
                right = current[idx:]
        }</span>
        <span class="cov7" title="14">prov := ""
        model := ""
        if s.llmClient != nil </span><span class="cov7" title="14">{
                prov = s.llmClient.Name()
                model = s.llmClient.DefaultModel()
        }</span>
        <span class="cov7" title="14">temp := ""
        if s.codingTemperature != nil </span><span class="cov0" title="0">{
                temp = fmt.Sprintf("%.3f", *s.codingTemperature)
        }</span>
        <span class="cov7" title="14">extra := ""
        if hasExtra </span><span class="cov0" title="0">{
                extra = strings.TrimSpace(extraText)
        }</span>
        // Compose a key from essential context parts
        <span class="cov7" title="14">return strings.Join([]string{
                "v1", // version for future-proofing
                prov,
                model,
                temp,
                p.TextDocument.URI,
                fmt.Sprintf("%d:%d", p.Position.Line, len(left)),
                above,
                left,
                right,
                below,
                funcCtx,
                fmt.Sprintf("params=%t", inParams),
                extra,
        }, "\x1f")</span> // use unit separator to avoid collisions
}

func (s *Server) completionCacheGet(key string) (string, bool) <span class="cov6" title="10">{
        s.mu.Lock()
        defer s.mu.Unlock()
        v, ok := s.compCache[key]
        if !ok </span><span class="cov6" title="9">{
                return "", false
        }</span>
        // move to most-recent
        <span class="cov1" title="1">s.compCacheTouchLocked(key)
        return v, true</span>
}

func (s *Server) completionCachePut(key, value string) <span class="cov7" title="11">{
        s.mu.Lock()
        defer s.mu.Unlock()
        if s.compCache == nil </span><span class="cov3" title="3">{
                s.compCache = make(map[string]string)
        }</span>
        <span class="cov7" title="11">if _, exists := s.compCache[key]; !exists </span><span class="cov7" title="11">{
                s.compCacheOrder = append(s.compCacheOrder, key)
                s.compCache[key] = value
                if len(s.compCacheOrder) &gt; 10 </span><span class="cov0" title="0">{
                        // evict oldest
                        old := s.compCacheOrder[0]
                        s.compCacheOrder = s.compCacheOrder[1:]
                        delete(s.compCache, old)
                }</span>
                <span class="cov7" title="11">return</span>
        }
        // update existing and mark most-recent
        <span class="cov0" title="0">s.compCache[key] = value
        s.compCacheTouchLocked(key)</span>
}

func (s *Server) compCacheTouchLocked(key string) <span class="cov1" title="1">{
        // assumes s.mu is held
        // remove any existing occurrence of key in order slice
        idx := -1
        for i, k := range s.compCacheOrder </span><span class="cov1" title="1">{
                if k == key </span><span class="cov1" title="1">{
                        idx = i
                        break</span>
                }
        }
        <span class="cov1" title="1">if idx &gt;= 0 </span><span class="cov1" title="1">{
                s.compCacheOrder = append(append([]string{}, s.compCacheOrder[:idx]...), s.compCacheOrder[idx+1:]...)
        }</span>
        <span class="cov1" title="1">s.compCacheOrder = append(s.compCacheOrder, key)</span>
}

// isTriggerEvent returns true when the completion request appears to be caused
// by typing one of our configured trigger characters. It checks the LSP
// CompletionContext if provided and also falls back to inspecting the character
// immediately to the left of the cursor.
func (s *Server) isTriggerEvent(p CompletionParams, current string) bool <span class="cov9" title="25">{
        // 1) Inspect LSP completion context if present
        if p.Context != nil </span><span class="cov7" title="11">{
                var ctx struct {
                        TriggerKind      int    `json:"triggerKind"`
                        TriggerCharacter string `json:"triggerCharacter,omitempty"`
                }
                if raw, ok := p.Context.(json.RawMessage); ok </span><span class="cov6" title="10">{
                        _ = json.Unmarshal(raw, &amp;ctx)
                }</span> else<span class="cov1" title="1"> {
                        b, _ := json.Marshal(p.Context)
                        _ = json.Unmarshal(b, &amp;ctx)
                }</span>
                // If configured and the line contains a bare double-open marker (e.g., '&gt;&gt;' with no '&gt;&gt;text&gt;'),
                // do not treat as a trigger source.
                <span class="cov7" title="11">if s.inlineOpen != "" &amp;&amp; strings.Contains(current, s.inlineOpen+s.inlineOpen) &amp;&amp; !hasDoubleOpenTrigger(current) </span><span class="cov1" title="1">{
                        return false
                }</span>
                // TriggerKind 1 = Invoked (manual). Always allow manual invoke.
                <span class="cov6" title="10">if ctx.TriggerKind == 1 </span><span class="cov5" title="6">{
                        return true
                }</span>
                // TriggerKind 2 is TriggerCharacter per LSP spec
                <span class="cov4" title="4">if ctx.TriggerKind == 2 </span><span class="cov3" title="3">{
                        if ctx.TriggerCharacter != "" </span><span class="cov2" title="2">{
                                for _, c := range s.triggerChars </span><span class="cov1" title="1">{
                                        if c == ctx.TriggerCharacter </span><span class="cov1" title="1">{
                                                return true
                                        }</span>
                                }
                                <span class="cov1" title="1">return false</span>
                        }
                        // No character provided but reported as TriggerCharacter; be conservative
                        <span class="cov1" title="1">return false</span>
                }
                // For TriggerForIncomplete (3), require manual char check below
        }
        // 2) Fallback: check the character immediately prior to cursor
        <span class="cov7" title="15">idx := p.Position.Character
        if idx &lt;= 0 || idx &gt; len(current) </span><span class="cov0" title="0">{
                return false
        }</span>
        // Bare double-open should not trigger via fallback char either (only when configured)
        <span class="cov7" title="15">if s.inlineOpen != "" &amp;&amp; strings.Contains(current, s.inlineOpen+s.inlineOpen) &amp;&amp; !hasDoubleOpenTrigger(current) </span><span class="cov1" title="1">{
                return false
        }</span>
        <span class="cov7" title="14">ch := string(current[idx-1])
        for _, c := range s.triggerChars </span><span class="cov10" title="36">{
                if c == ch </span><span class="cov5" title="6">{
                        return true
                }</span>
        }
        <span class="cov6" title="8">return false</span>
}

func (s *Server) makeCompletionItems(cleaned string, inParams bool, current string, p CompletionParams, docStr string) []CompletionItem <span class="cov7" title="12">{
        te, filter := computeTextEditAndFilter(cleaned, inParams, current, p)
        rm := s.collectPromptRemovalEdits(p.TextDocument.URI)
        label := labelForCompletion(cleaned, filter)
        detail := "Hexai LLM completion"
        if s.llmClient != nil </span><span class="cov7" title="12">{
                detail = "Hexai " + s.llmClient.Name() + ":" + s.llmClient.DefaultModel()
        }</span>
        <span class="cov7" title="12">return []CompletionItem{{
                Label:               label,
                Kind:                1,
                Detail:              detail,
                InsertTextFormat:    1,
                FilterText:          strings.TrimLeft(filter, " \t"),
                TextEdit:            te,
                AdditionalTextEdits: rm,
                SortText:            "0000",
                Documentation:       docStr,
        }}</span>
}

// small helpers to keep tryLLMCompletion short
// LLM stats helpers moved to handlers_utils.go

// collectPromptRemovalEdits returns edits to remove all inline prompt markers.
// Supported form (inclusive):
//   - ";...;" where there is no space immediately after the first ';'
//     and no space immediately before the last ';'. An optional single space
//     after the trailing ';' is also removed for cleanliness.
//
// Multiple markers per line are supported.
// Inline prompt removal helpers moved to handlers_utils.go

// inParamList moved to handlers_utils.go

// buildPrompts moved to handlers_utils.go

// computeTextEditAndFilter moved to handlers_utils.go

// computeWordStart moved to handlers_utils.go

// isIdentChar moved to handlers_utils.go

// lineHasInlinePrompt returns true if the line contains an inline strict
// semicolon marker ;text; (no spaces at boundaries) or a double-semicolon
// pattern recognized by hasDoubleSemicolonTrigger.
// lineHasInlinePrompt moved to handlers_utils.go

// leadingIndent returns the run of leading spaces/tabs from the provided line.
// leadingIndent moved to handlers_utils.go

// applyIndent prefixes each non-empty line of suggestion with the given indent
// unless it already starts with that indent.
// applyIndent moved to handlers_utils.go

// isBareDoubleSemicolon reports whether the line contains a standalone
// double-semicolon marker with no inline content (";;" possibly with only
// whitespace after it). It explicitly excludes the valid form ";;text;".
// isBareDoubleSemicolon moved to handlers_utils.go

// stripDuplicateAssignmentPrefix removes a duplicated assignment prefix (e.g.,
// "name :=") from the beginning of the model suggestion when that same prefix
// already appears immediately to the left of the cursor on the current line.
// Also handles simple '=' assignments.
// stripDuplicateAssignmentPrefix moved to handlers_utils.go

// stripDuplicateGeneralPrefix removes any already-typed prefix that the model repeated
// at the beginning of its suggestion. It compares the entire text to the left of the
// cursor (prefixBeforeCursor) against the suggestion, trimming whitespace appropriately,
// and strips the longest sensible overlap. This prevents cases like:
//
//        prefix:    "func New "
//        suggestion:"func New() *Type"
//
// resulting in duplicates like "func New func New() *Type".
// stripDuplicateGeneralPrefix moved to handlers_utils.go

// isIdentBoundary moved to handlers_utils.go

// stripCodeFences removes surrounding Markdown code fences from a model
// response when the entire output is wrapped, e.g. starting with "```go" or
// "```" and ending with "```". It returns the inner content unchanged.
// stripCodeFences moved to handlers_utils.go

// stripInlineCodeSpan returns only the contents of the first inline backtick
// code span if present, e.g., "some text `x := y()` more" -&gt; "x := y()".
// If no matching pair of backticks exists, it returns the input unchanged.
// This is intended for code completion responses where the model may wrap a
// small snippet in single backticks among prose.
// stripInlineCodeSpan moved to handlers_utils.go

// labelForCompletion moved to handlers_utils.go

func (s *Server) fallbackCompletionItems(docStr string) []CompletionItem <span class="cov1" title="1">{
        return []CompletionItem{{
                Label:         "hexai-complete",
                Kind:          1,
                Detail:        "dummy completion",
                InsertText:    "hexai",
                SortText:      "9999",
                Documentation: docStr,
        }}
}</span>
</pre>
		
		<pre class="file" id="file23" style="display: none">// Summary: Code Action handlers and helpers split from handlers.go for clarity.
package lsp

import (
        "context"
        "encoding/json"
        "fmt"
        "os"
        "path/filepath"
        "strings"
        "time"

        "codeberg.org/snonux/hexai/internal/llm"
        "codeberg.org/snonux/hexai/internal/logging"
)

func (s *Server) handleCodeAction(req Request) <span class="cov3" title="3">{
        var p CodeActionParams
        if err := json.Unmarshal(req.Params, &amp;p); err != nil </span><span class="cov0" title="0">{
                if len(req.ID) != 0 </span><span class="cov0" title="0">{
                        s.reply(req.ID, []CodeAction{}, nil)
                }</span>
                <span class="cov0" title="0">return</span>
        }
        <span class="cov3" title="3">d := s.getDocument(p.TextDocument.URI)
        if d == nil || len(d.lines) == 0 || s.llmClient == nil </span><span class="cov2" title="2">{
                if len(req.ID) != 0 </span><span class="cov2" title="2">{
                        s.reply(req.ID, []CodeAction{}, nil)
                }</span>
                <span class="cov2" title="2">return</span>
        }
        <span class="cov1" title="1">sel := extractRangeText(d, p.Range)

        actions := make([]CodeAction, 0, 4)
        if a := s.buildRewriteCodeAction(p, sel); a != nil </span><span class="cov0" title="0">{
                actions = append(actions, *a)
        }</span>
        <span class="cov1" title="1">if a := s.buildDiagnosticsCodeAction(p, sel); a != nil </span><span class="cov0" title="0">{
                actions = append(actions, *a)
        }</span>
        <span class="cov1" title="1">if a := s.buildDocumentCodeAction(p, sel); a != nil </span><span class="cov1" title="1">{
                actions = append(actions, *a)
        }</span>
        <span class="cov1" title="1">if a := s.buildGoUnitTestCodeAction(p); a != nil </span><span class="cov1" title="1">{
                actions = append(actions, *a)
        }</span>
        <span class="cov1" title="1">if len(req.ID) != 0 </span><span class="cov1" title="1">{
                s.reply(req.ID, actions, nil)
        }</span>
}

func (s *Server) buildRewriteCodeAction(p CodeActionParams, sel string) *CodeAction <span class="cov3" title="3">{
        if instr, cleaned := instructionFromSelection(sel); strings.TrimSpace(instr) != "" </span><span class="cov1" title="1">{
                payload := struct {
                        Type        string `json:"type"`
                        URI         string `json:"uri"`
                        Range       Range  `json:"range"`
                        Instruction string `json:"instruction"`
                        Selection   string `json:"selection"`
                }{Type: "rewrite", URI: p.TextDocument.URI, Range: p.Range, Instruction: instr, Selection: cleaned}
                raw, _ := json.Marshal(payload)
                ca := CodeAction{Title: "Hexai: rewrite selection", Kind: "refactor.rewrite", Data: raw}
                return &amp;ca
        }</span>
        <span class="cov2" title="2">return nil</span>
}

func (s *Server) buildDiagnosticsCodeAction(p CodeActionParams, sel string) *CodeAction <span class="cov3" title="4">{
        diags := s.diagnosticsInRange(p.Context, p.Range)
        if len(diags) == 0 </span><span class="cov2" title="2">{
                return nil
        }</span>
        <span class="cov2" title="2">payload := struct {
                Type        string       `json:"type"`
                URI         string       `json:"uri"`
                Range       Range        `json:"range"`
                Selection   string       `json:"selection"`
                Diagnostics []Diagnostic `json:"diagnostics"`
        }{Type: "diagnostics", URI: p.TextDocument.URI, Range: p.Range, Selection: sel, Diagnostics: diags}
        raw, _ := json.Marshal(payload)
        ca := CodeAction{Title: "Hexai: resolve diagnostics", Kind: "quickfix", Data: raw}
        return &amp;ca</span>
}

func (s *Server) resolveCodeAction(ca CodeAction) (CodeAction, bool) <span class="cov5" title="12">{
        if s.llmClient == nil || len(ca.Data) == 0 </span><span class="cov0" title="0">{
                return ca, false
        }</span>
        <span class="cov5" title="12">var payload struct {
                Type        string       `json:"type"`
                URI         string       `json:"uri"`
                Range       Range        `json:"range"`
                Instruction string       `json:"instruction,omitempty"`
                Selection   string       `json:"selection"`
                Diagnostics []Diagnostic `json:"diagnostics,omitempty"`
        }
        if err := json.Unmarshal(ca.Data, &amp;payload); err != nil </span><span class="cov0" title="0">{
                return ca, false
        }</span>
        <span class="cov5" title="12">switch payload.Type </span>{
        case "rewrite":<span class="cov3" title="4">
                sys := s.promptRewriteSystem
                user := renderTemplate(s.promptRewriteUser, map[string]string{"instruction": payload.Instruction, "selection": payload.Selection})
                ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
                defer cancel()
                messages := []llm.Message{{Role: "system", Content: sys}, {Role: "user", Content: user}}
                opts := s.llmRequestOpts()
                if text, err := s.llmClient.Chat(ctx, messages, opts...); err == nil </span><span class="cov3" title="4">{
                        if out := stripCodeFences(strings.TrimSpace(text)); out != "" </span><span class="cov3" title="4">{
                                edit := WorkspaceEdit{Changes: map[string][]TextEdit{payload.URI: {{Range: payload.Range, NewText: out}}}}
                                ca.Edit = &amp;edit
                                return ca, true
                        }</span>
                } else<span class="cov0" title="0"> {
                        logging.Logf("lsp ", "codeAction rewrite llm error: %v", err)
                }</span>
        case "diagnostics":<span class="cov4" title="5">
                sys := s.promptDiagnosticsSystem
                var b strings.Builder
                for i, dgn := range payload.Diagnostics </span><span class="cov4" title="6">{
                        if dgn.Source != "" </span><span class="cov0" title="0">{
                                fmt.Fprintf(&amp;b, "%d. [%s] %s\n", i+1, dgn.Source, dgn.Message)
                        }</span> else<span class="cov4" title="6"> {
                                fmt.Fprintf(&amp;b, "%d. %s\n", i+1, dgn.Message)
                        }</span>
                }
                <span class="cov4" title="5">diagList := b.String()
                user := renderTemplate(s.promptDiagnosticsUser, map[string]string{"diagnostics": diagList, "selection": payload.Selection})
                ctx, cancel := context.WithTimeout(context.Background(), 12*time.Second)
                defer cancel()
                messages := []llm.Message{{Role: "system", Content: sys}, {Role: "user", Content: user}}
                opts := s.llmRequestOpts()
                if text, err := s.llmClient.Chat(ctx, messages, opts...); err == nil </span><span class="cov4" title="5">{
                        if out := stripCodeFences(strings.TrimSpace(text)); out != "" </span><span class="cov4" title="5">{
                                edit := WorkspaceEdit{Changes: map[string][]TextEdit{payload.URI: {{Range: payload.Range, NewText: out}}}}
                                ca.Edit = &amp;edit
                                return ca, true
                        }</span>
                } else<span class="cov0" title="0"> {
                        logging.Logf("lsp ", "codeAction diagnostics llm error: %v", err)
                }</span>
        case "document":<span class="cov3" title="3">
                sys := s.promptDocumentSystem
                user := renderTemplate(s.promptDocumentUser, map[string]string{"selection": payload.Selection})
                ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
                defer cancel()
                messages := []llm.Message{{Role: "system", Content: sys}, {Role: "user", Content: user}}
                opts := s.llmRequestOpts()
                if text, err := s.llmClient.Chat(ctx, messages, opts...); err == nil </span><span class="cov3" title="3">{
                        if out := stripCodeFences(strings.TrimSpace(text)); out != "" </span><span class="cov3" title="3">{
                                edit := WorkspaceEdit{Changes: map[string][]TextEdit{payload.URI: {{Range: payload.Range, NewText: out}}}}
                                ca.Edit = &amp;edit
                                return ca, true
                        }</span>
                } else<span class="cov0" title="0"> {
                        logging.Logf("lsp ", "codeAction document llm error: %v", err)
                }</span>
        case "go_test":<span class="cov0" title="0">
                if edit, jumpURI, jumpRange, ok := s.resolveGoTest(payload.URI, payload.Range.Start); ok </span><span class="cov0" title="0">{
                        ca.Edit = &amp;edit
                        // After edit is applied, ask client to jump to new test function
                        ca.Command = &amp;Command{Title: "Jump to generated test", Command: "hexai.showDocument", Arguments: []any{jumpURI, jumpRange}}
                        // Also send a server-initiated showDocument shortly after resolve to cover
                        // clients that do not execute commands from code actions.
                        s.deferShowDocument(jumpURI, jumpRange)
                        return ca, true
                }</span>
        }
        <span class="cov0" title="0">return ca, false</span>
}

func (s *Server) handleCodeActionResolve(req Request) <span class="cov2" title="2">{
        var ca CodeAction
        if err := json.Unmarshal(req.Params, &amp;ca); err != nil </span><span class="cov0" title="0">{
                if len(req.ID) != 0 </span><span class="cov0" title="0">{
                        s.reply(req.ID, ca, nil)
                }</span>
                <span class="cov0" title="0">return</span>
        }
        <span class="cov2" title="2">if resolved, ok := s.resolveCodeAction(ca); ok </span><span class="cov2" title="2">{
                s.reply(req.ID, resolved, nil)
                return
        }</span>
        <span class="cov0" title="0">s.reply(req.ID, ca, nil)</span>
}

// diagnosticsInRange parses the CodeAction context and returns diagnostics
// that overlap the given selection range. If the context is missing or does
// not contain diagnostics, returns an empty slice.
func (s *Server) diagnosticsInRange(ctxRaw json.RawMessage, sel Range) []Diagnostic <span class="cov4" title="7">{
        if len(ctxRaw) == 0 </span><span class="cov3" title="3">{
                return nil
        }</span>
        <span class="cov3" title="4">var ctx CodeActionContext
        if err := json.Unmarshal(ctxRaw, &amp;ctx); err != nil </span><span class="cov0" title="0">{
                return nil
        }</span>
        <span class="cov3" title="4">if len(ctx.Diagnostics) == 0 </span><span class="cov0" title="0">{
                return nil
        }</span>
        <span class="cov3" title="4">out := make([]Diagnostic, 0, len(ctx.Diagnostics))
        for _, d := range ctx.Diagnostics </span><span class="cov4" title="7">{
                if rangesOverlap(d.Range, sel) </span><span class="cov3" title="4">{
                        out = append(out, d)
                }</span>
        }
        <span class="cov3" title="4">return out</span>
}

// rangesOverlap reports whether two LSP ranges overlap at all.
func rangesOverlap(a, b Range) bool <span class="cov5" title="10">{
        // Normalize ordering
        if greaterPos(a.Start, a.End) </span><span class="cov0" title="0">{
                a.Start, a.End = a.End, a.Start
        }</span>
        <span class="cov5" title="10">if greaterPos(b.Start, b.End) </span><span class="cov0" title="0">{
                b.Start, b.End = b.End, b.Start
        }</span>
        // a ends before b starts
        <span class="cov5" title="10">if lessPos(a.End, b.Start) </span><span class="cov3" title="3">{
                return false
        }</span>
        // b ends before a starts
        <span class="cov4" title="7">if lessPos(b.End, a.Start) </span><span class="cov1" title="1">{
                return false
        }</span>
        <span class="cov4" title="6">return true</span>
}

func lessPos(p, q Position) bool <span class="cov6" title="19">{
        if p.Line != q.Line </span><span class="cov6" title="14">{
                return p.Line &lt; q.Line
        }</span>
        <span class="cov4" title="5">return p.Character &lt; q.Character</span>
}

func greaterPos(p, q Position) bool <span class="cov6" title="22">{
        if p.Line != q.Line </span><span class="cov5" title="11">{
                return p.Line &gt; q.Line
        }</span>
        <span class="cov5" title="11">return p.Character &gt; q.Character</span>
}

// --- Go unit test code action ---

func (s *Server) buildGoUnitTestCodeAction(p CodeActionParams) *CodeAction <span class="cov3" title="3">{
        uri := p.TextDocument.URI
        if uri == "" || !strings.HasSuffix(strings.TrimPrefix(uri, "file://"), ".go") </span><span class="cov0" title="0">{
                return nil
        }</span>
        // Skip if already a _test.go file
        <span class="cov3" title="3">if strings.HasSuffix(strings.TrimPrefix(uri, "file://"), "_test.go") </span><span class="cov1" title="1">{
                return nil
        }</span>
        // Heuristic: only offer when a function context is found above the cursor
        <span class="cov2" title="2">_, _, _, funcCtx := s.lineContext(uri, p.Range.Start)
        if !strings.Contains(funcCtx, "func ") </span><span class="cov0" title="0">{
                return nil
        }</span>
        <span class="cov2" title="2">payload := struct {
                Type  string `json:"type"`
                URI   string `json:"uri"`
                Range Range  `json:"range"`
        }{Type: "go_test", URI: uri, Range: p.Range}
        raw, _ := json.Marshal(payload)
        ca := CodeAction{Title: "Hexai: implement unit test", Kind: "quickfix", Data: raw}
        return &amp;ca</span>
}

// buildDocumentCodeAction offers to document the selected code by injecting comments.
func (s *Server) buildDocumentCodeAction(p CodeActionParams, sel string) *CodeAction <span class="cov2" title="2">{
        if s.llmClient == nil </span><span class="cov0" title="0">{
                return nil
        }</span>
        <span class="cov2" title="2">if strings.TrimSpace(sel) == "" </span><span class="cov0" title="0">{
                return nil
        }</span>
        <span class="cov2" title="2">payload := struct {
                Type      string `json:"type"`
                URI       string `json:"uri"`
                Range     Range  `json:"range"`
                Selection string `json:"selection"`
        }{Type: "document", URI: p.TextDocument.URI, Range: p.Range, Selection: sel}
        raw, _ := json.Marshal(payload)
        ca := CodeAction{Title: "Hexai: document code", Kind: "refactor.rewrite", Data: raw}
        return &amp;ca</span>
}

func (s *Server) resolveGoTest(uri string, pos Position) (WorkspaceEdit, string, Range, bool) <span class="cov3" title="3">{
        path := strings.TrimPrefix(uri, "file://")
        if !strings.HasSuffix(path, ".go") || strings.HasSuffix(path, "_test.go") </span><span class="cov0" title="0">{
                return WorkspaceEdit{}, "", Range{}, false
        }</span>
        // Load source text
        <span class="cov3" title="3">_, lines := s.loadFileText(uri)
        if len(lines) == 0 </span><span class="cov0" title="0">{
                return WorkspaceEdit{}, "", Range{}, false
        }</span>
        <span class="cov3" title="3">pkg := parseGoPackageName(lines)
        fnStart, fnEnd := findGoFunctionAtLine(lines, pos.Line)
        if fnStart &lt; 0 || fnEnd &lt; fnStart </span><span class="cov0" title="0">{
                return WorkspaceEdit{}, "", Range{}, false
        }</span>
        <span class="cov3" title="3">funcCode := strings.Join(lines[fnStart:fnEnd+1], "\n")
        testFunc := s.generateGoTestFunction(funcCode)
        if strings.TrimSpace(testFunc) == "" </span><span class="cov0" title="0">{
                return WorkspaceEdit{}, "", Range{}, false
        }</span>
        // Determine test file target
        <span class="cov3" title="3">testPath := strings.TrimSuffix(path, ".go") + "_test.go"
        testURI := "file://" + testPath

        // If test file exists, append test at EOF; otherwise, create a new file with package+import
        if fileExists(testPath) </span><span class="cov1" title="1">{
                // Build an insertion at end of file
                _, tLines := s.loadFileText(testURI)
                // Fallback when not open and cannot read: still insert at line 0
                lineIdx := 0
                col := 0
                if len(tLines) &gt; 0 </span><span class="cov1" title="1">{
                        lineIdx = len(tLines) - 1
                        col = len(tLines[lineIdx])
                }</span>
                <span class="cov1" title="1">var b strings.Builder
                // Ensure at least two newlines before the new test
                if len(tLines) == 0 || (len(tLines) &gt; 0 &amp;&amp; !strings.HasSuffix(strings.Join(tLines, "\n"), "\n\n")) </span><span class="cov0" title="0">{
                        b.WriteString("\n\n")
                }</span>
                <span class="cov1" title="1">b.WriteString(testFunc)
                insert := b.String()
                edit := TextEdit{Range: Range{Start: Position{Line: lineIdx, Character: col}, End: Position{Line: lineIdx, Character: col}}, NewText: insert}
                we := WorkspaceEdit{Changes: map[string][]TextEdit{testURI: {edit}}}
                // Compute jump range start
                // Count how many prefix newlines added before the test function
                prefixNL := 0
                if strings.HasPrefix(insert, "\n\n") </span><span class="cov0" title="0">{
                        prefixNL = 2
                }</span>
                <span class="cov1" title="1">startLine := lineIdx + prefixNL
                // If we inserted with two newlines and last line wasn't blank, first newline moves to next line
                if prefixNL &gt; 0 </span><span class="cov0" title="0">{
                        startLine = lineIdx + prefixNL
                }</span>
                <span class="cov1" title="1">jump := Range{Start: Position{Line: startLine, Character: 0}, End: Position{Line: startLine, Character: 0}}
                return we, testURI, jump, true</span>
        }
        // Create new file content
        <span class="cov2" title="2">var content strings.Builder
        if pkg == "" </span><span class="cov0" title="0">{
                pkg = filepath.Base(filepath.Dir(path))
        }</span>
        <span class="cov2" title="2">content.WriteString("package ")
        content.WriteString(pkg)
        content.WriteString("\n\n")
        content.WriteString("import (\n\t\"testing\"\n)\n\n")
        content.WriteString(testFunc)
        full := content.String()
        // Use documentChanges with create + full content insert
        create := CreateFile{Kind: "create", URI: testURI}
        tde := TextDocumentEdit{TextDocument: VersionedTextDocumentIdentifier{URI: testURI}, Edits: []TextEdit{{Range: Range{Start: Position{Line: 0, Character: 0}, End: Position{Line: 0, Character: 0}}, NewText: full}}}
        we := WorkspaceEdit{DocumentChanges: []any{create, tde}}
        // Find start line of first test function
        // Count lines before the substring "func Test"
        pre := content.String()
        idx := strings.Index(pre, "func Test")
        startLine := 0
        if idx &gt; 0 </span><span class="cov2" title="2">{
                before := pre[:idx]
                startLine = strings.Count(before, "\n")
        }</span>
        <span class="cov2" title="2">jump := Range{Start: Position{Line: startLine, Character: 0}, End: Position{Line: startLine, Character: 0}}
        return we, testURI, jump, true</span>
}

// loadFileText returns the file content and lines. It prefers the open document; otherwise reads from disk.
func (s *Server) loadFileText(uri string) (string, []string) <span class="cov3" title="4">{
        if d := s.getDocument(uri); d != nil </span><span class="cov2" title="2">{
                return d.text, append([]string{}, d.lines...)
        }</span>
        <span class="cov2" title="2">path := strings.TrimPrefix(uri, "file://")
        b, err := os.ReadFile(path)
        if err != nil </span><span class="cov0" title="0">{
                return "", nil
        }</span>
        <span class="cov2" title="2">txt := string(b)
        return txt, splitLines(txt)</span>
}

func fileExists(path string) bool <span class="cov3" title="3">{
        if _, err := os.Stat(path); err == nil </span><span class="cov1" title="1">{
                return true
        }</span>
        <span class="cov2" title="2">return false</span>
}

// parseGoPackageName returns the package name from file lines, or empty if not found.
func parseGoPackageName(lines []string) string <span class="cov4" title="5">{
        for _, ln := range lines </span><span class="cov4" title="6">{
                t := strings.TrimSpace(ln)
                if strings.HasPrefix(t, "package ") </span><span class="cov3" title="4">{
                        name := strings.TrimSpace(strings.TrimPrefix(t, "package "))
                        // strip inline comments
                        if i := strings.Index(name, " "); i &gt;= 0 </span><span class="cov1" title="1">{
                                name = name[:i]
                        }</span>
                        <span class="cov3" title="4">if i := strings.Index(name, "\t"); i &gt;= 0 </span><span class="cov0" title="0">{
                                name = name[:i]
                        }</span>
                        <span class="cov3" title="4">if i := strings.Index(name, "//"); i &gt;= 0 </span><span class="cov0" title="0">{
                                name = strings.TrimSpace(name[:i])
                        }</span>
                        <span class="cov3" title="4">return name</span>
                }
        }
        <span class="cov1" title="1">return ""</span>
}

// findGoFunctionAtLine finds the function enclosing or preceding line idx. Returns start and end line indexes.
func findGoFunctionAtLine(lines []string, idx int) (int, int) <span class="cov3" title="4">{
        if idx &lt; 0 </span><span class="cov0" title="0">{
                idx = 0
        }</span>
        <span class="cov3" title="4">if idx &gt;= len(lines) </span><span class="cov0" title="0">{
                idx = len(lines) - 1
        }</span>
        // find signature start
        <span class="cov3" title="4">start := -1
        for i := idx; i &gt;= 0; i-- </span><span class="cov3" title="4">{
                if strings.Contains(lines[i], "func ") </span><span class="cov3" title="4">{
                        start = i
                        break</span>
                }
                <span class="cov0" title="0">if strings.Contains(lines[i], "}") </span><span class="cov0" title="0">{
                        break</span>
                }
        }
        <span class="cov3" title="4">if start == -1 </span><span class="cov0" title="0">{
                return -1, -1
        }</span>
        // find first '{'
        <span class="cov3" title="4">depth := 0
        seenOpen := false
        for i := start; i &lt; len(lines); i++ </span><span class="cov4" title="5">{
                ln := lines[i]
                for j := 0; j &lt; len(ln); j++ </span><span class="cov10" title="106">{
                        switch ln[j] </span>{
                        case '{':<span class="cov3" title="3">
                                depth++
                                seenOpen = true</span>
                        case '}':<span class="cov3" title="3">
                                if depth &gt; 0 </span><span class="cov3" title="3">{
                                        depth--
                                }</span>
                                <span class="cov3" title="3">if seenOpen &amp;&amp; depth == 0 </span><span class="cov3" title="3">{
                                        return start, i
                                }</span>
                        }
                }
        }
        // if never saw '{', assume single-line prototype; return that line
        <span class="cov1" title="1">if !seenOpen </span><span class="cov1" title="1">{
                return start, start
        }</span>
        <span class="cov0" title="0">return start, -1</span>
}

// generateGoTestFunction uses LLM to produce a test function; falls back to a stub when unavailable.
func (s *Server) generateGoTestFunction(funcCode string) string <span class="cov3" title="4">{
        if s.llmClient != nil </span><span class="cov2" title="2">{
                sys := s.promptGoTestSystem
                user := renderTemplate(s.promptGoTestUser, map[string]string{"function": funcCode})
                ctx, cancel := context.WithTimeout(context.Background(), 8*time.Second)
                defer cancel()
                messages := []llm.Message{{Role: "system", Content: sys}, {Role: "user", Content: user}}
                opts := s.llmRequestOpts()
                if out, err := s.llmClient.Chat(ctx, messages, opts...); err == nil </span><span class="cov2" title="2">{
                        cleaned := strings.TrimSpace(stripCodeFences(out))
                        if cleaned != "" </span><span class="cov2" title="2">{
                                return cleaned
                        }</span>
                } else<span class="cov0" title="0"> {
                        logging.Logf("lsp ", "codeAction go_test llm error: %v", err)
                }</span>
        }
        // Fallback stub
        <span class="cov2" title="2">name := deriveGoFuncName(funcCode)
        if name == "" </span><span class="cov0" title="0">{
                name = "Function"
        }</span>
        <span class="cov2" title="2">return fmt.Sprintf("func Test%s(t *testing.T) {\n\t// TODO: implement tests for %s\n}\n", exportName(name), name)</span>
}

// deriveGoFuncName extracts function or method name from code.
func deriveGoFuncName(code string) string <span class="cov3" title="4">{
        // look for line starting with func
        line := firstLine(code)
        line = strings.TrimSpace(line)
        if !strings.HasPrefix(line, "func ") </span><span class="cov0" title="0">{
                return ""
        }</span>
        <span class="cov3" title="4">rest := strings.TrimSpace(strings.TrimPrefix(line, "func "))
        // method receiver
        if strings.HasPrefix(rest, "(") </span><span class="cov1" title="1">{
                // find ")"
                if i := strings.Index(rest, ")"); i &gt;= 0 &amp;&amp; i+1 &lt; len(rest) </span><span class="cov1" title="1">{
                        rest = strings.TrimSpace(rest[i+1:])
                }</span>
        }
        // now rest should start with Name(
        <span class="cov3" title="4">if i := strings.Index(rest, "("); i &gt; 0 </span><span class="cov3" title="4">{
                return strings.TrimSpace(rest[:i])
        }</span>
        <span class="cov0" title="0">return ""</span>
}

func exportName(name string) string <span class="cov2" title="2">{
        if name == "" </span><span class="cov0" title="0">{
                return name
        }</span>
        <span class="cov2" title="2">r := []rune(name)
        if r[0] &gt;= 'a' &amp;&amp; r[0] &lt;= 'z' </span><span class="cov0" title="0">{
                r[0] = r[0] - ('a' - 'A')
        }</span>
        <span class="cov2" title="2">return string(r)</span>
}
</pre>
		
		<pre class="file" id="file24" style="display: none">// Summary: Completion handlers split from handlers.go to reduce file size and isolate feature logic.
package lsp

import (
        "context"
        "encoding/json"
        "fmt"
        "strings"
        "time"

        "codeberg.org/snonux/hexai/internal/llm"
        "codeberg.org/snonux/hexai/internal/logging"
)

func (s *Server) handleCompletion(req Request) <span class="cov1" title="1">{
        var p CompletionParams
        var docStr string
        if err := json.Unmarshal(req.Params, &amp;p); err == nil </span><span class="cov1" title="1">{
                // Log trigger information for every completion request from client
                tk, tch := extractTriggerInfo(p)
                logging.Logf("lsp ", "completion trigger kind=%d char=%q uri=%s line=%d char=%d",
                        tk, tch, p.TextDocument.URI, p.Position.Line, p.Position.Character)
                above, current, below, funcCtx := s.lineContext(p.TextDocument.URI, p.Position)
                docStr = s.buildDocString(p, above, current, below, funcCtx)
                if s.logContext </span><span class="cov0" title="0">{
                        s.logCompletionContext(p, above, current, below, funcCtx)
                }</span>
                <span class="cov1" title="1">if s.llmClient != nil </span><span class="cov1" title="1">{
                        newFunc := s.isDefiningNewFunction(p.TextDocument.URI, p.Position)
                        extra, has := s.buildAdditionalContext(newFunc, p.TextDocument.URI, p.Position)
                        items, ok := s.tryLLMCompletion(p, above, current, below, funcCtx, docStr, has, extra)
                        if ok </span><span class="cov1" title="1">{
                                s.reply(req.ID, CompletionList{IsIncomplete: false, Items: items}, nil)
                                return
                        }</span>
                }
        }
        <span class="cov0" title="0">items := s.fallbackCompletionItems(docStr)
        s.reply(req.ID, CompletionList{IsIncomplete: false, Items: items}, nil)</span>
}

// extractTriggerInfo returns the LSP completion TriggerKind and TriggerCharacter
// if provided by the client; when absent it returns zeros.
func extractTriggerInfo(p CompletionParams) (kind int, ch string) <span class="cov3" title="2">{
        if p.Context == nil </span><span class="cov0" title="0">{
                return 0, ""
        }</span>
        <span class="cov3" title="2">var ctx struct {
                TriggerKind      int    `json:"triggerKind"`
                TriggerCharacter string `json:"triggerCharacter,omitempty"`
        }
        if raw, ok := p.Context.(json.RawMessage); ok </span><span class="cov1" title="1">{
                _ = json.Unmarshal(raw, &amp;ctx)
        }</span> else<span class="cov1" title="1"> {
                b, _ := json.Marshal(p.Context)
                _ = json.Unmarshal(b, &amp;ctx)
        }</span>
        <span class="cov3" title="2">return ctx.TriggerKind, ctx.TriggerCharacter</span>
}

// --- completion helpers ---

func (s *Server) buildDocString(p CompletionParams, above, current, below, funcCtx string) string <span class="cov3" title="2">{
        return fmt.Sprintf("file: %s\nline: %d\nabove: %s\ncurrent: %s\nbelow: %s\nfunction: %s",
                p.TextDocument.URI, p.Position.Line, trimLen(above), trimLen(current), trimLen(below), trimLen(funcCtx))
}</span>

func (s *Server) logCompletionContext(p CompletionParams, above, current, below, funcCtx string) <span class="cov1" title="1">{
        logging.Logf("lsp ", "completion ctx uri=%s line=%d char=%d above=%q current=%q below=%q function=%q",
                p.TextDocument.URI, p.Position.Line, p.Position.Character, trimLen(above), trimLen(current), trimLen(below), trimLen(funcCtx))
}</span>

func (s *Server) tryLLMCompletion(p CompletionParams, above, current, below, funcCtx, docStr string, hasExtra bool, extraText string) ([]CompletionItem, bool) <span class="cov10" title="18">{
        ctx, cancel := context.WithTimeout(context.Background(), 6*time.Second)
        defer cancel()

        inlinePrompt := lineHasInlinePrompt(current)
        if !inlinePrompt &amp;&amp; !s.isTriggerEvent(p, current) </span><span class="cov7" title="8">{
                logging.Logf("lsp ", "%scompletion skip=no-trigger line=%d char=%d current=%q%s", logging.AnsiYellow, p.Position.Line, p.Position.Character, trimLen(current), logging.AnsiBase)
                return []CompletionItem{}, true
        }</span>
        <span class="cov8" title="10">if s.shouldSuppressForChatTriggerEOL(current, p) </span><span class="cov0" title="0">{
                return []CompletionItem{}, true
        }</span>

        <span class="cov8" title="10">inParams := inParamList(current, p.Position.Character)
        manualInvoke := parseManualInvoke(p.Context)

        // Cache fast-path
        key := s.completionCacheKey(p, above, current, below, funcCtx, inParams, hasExtra, extraText)
        if cleaned, ok := s.completionCacheGet(key); ok &amp;&amp; strings.TrimSpace(cleaned) != "" </span><span class="cov1" title="1">{
                logging.Logf("lsp ", "completion cache hit uri=%s line=%d char=%d preview=%s%s%s",
                        p.TextDocument.URI, p.Position.Line, p.Position.Character,
                        logging.AnsiGreen, logging.PreviewForLog(cleaned), logging.AnsiBase)
                return s.makeCompletionItems(cleaned, inParams, current, p, docStr), true
        }</span>
        <span class="cov7" title="9">if isBareDoubleOpen(current) || isBareDoubleOpen(below) </span><span class="cov1" title="1">{
                logging.Logf("lsp ", "%scompletion skip=empty-double-semicolon line=%d char=%d current=%q%s", logging.AnsiYellow, p.Position.Line, p.Position.Character, trimLen(current), logging.AnsiBase)
                return []CompletionItem{}, true
        }</span>

        <span class="cov7" title="8">if !inParams &amp;&amp; !s.prefixHeuristicAllows(inlinePrompt, current, p, manualInvoke) </span><span class="cov0" title="0">{
                logging.Logf("lsp ", "%scompletion skip=short-prefix line=%d char=%d current=%q%s", logging.AnsiYellow, p.Position.Line, p.Position.Character, trimLen(current), logging.AnsiBase)
                return []CompletionItem{}, true
        }</span>

        // Provider-native path
        <span class="cov7" title="8">if items, ok := s.tryProviderNativeCompletion(current, p, above, below, funcCtx, docStr, hasExtra, extraText, inParams); ok </span><span class="cov1" title="1">{
                return items, true
        }</span>

        // Chat path
        <span class="cov7" title="7">messages := s.buildCompletionMessages(inlinePrompt, hasExtra, extraText, inParams, p, above, current, below, funcCtx)
        // Counters and options
        sentSize := 0
        for _, m := range messages </span><span class="cov9" title="14">{
                sentSize += len(m.Content)
        }</span>
        <span class="cov7" title="7">s.incSentCounters(sentSize)
        opts := []llm.RequestOption{llm.WithMaxTokens(s.maxTokens)}
        if s.codingTemperature != nil </span><span class="cov0" title="0">{
                opts = append(opts, llm.WithTemperature(*s.codingTemperature))
        }</span>
        // Debounce and throttle before making the LLM call
        <span class="cov7" title="7">s.waitForDebounce(ctx)
        if !s.waitForThrottle(ctx) </span><span class="cov0" title="0">{
                return nil, false
        }</span>
        <span class="cov7" title="7">logging.Logf("lsp ", "completion llm=requesting model=%s", s.llmClient.DefaultModel())

        text, err := s.llmClient.Chat(ctx, messages, opts...)
        if err != nil </span><span class="cov0" title="0">{
                logging.Logf("lsp ", "llm completion error: %v", err)
                s.logLLMStats()
                return nil, false
        }</span>
        <span class="cov7" title="7">s.incRecvCounters(len(text))
        s.logLLMStats()

        cleaned := s.postProcessCompletion(strings.TrimSpace(text), current[:p.Position.Character], current)
        if cleaned == "" </span><span class="cov0" title="0">{
                return nil, false
        }</span>
        <span class="cov7" title="7">s.completionCachePut(key, cleaned)
        return s.makeCompletionItems(cleaned, inParams, current, p, docStr), true</span>
}

// parseManualInvoke inspects the LSP completion context and reports whether the user manually invoked completion.
func parseManualInvoke(ctx any) bool <span class="cov8" title="11">{
        if ctx == nil </span><span class="cov6" title="5">{
                return false
        }</span>
        <span class="cov6" title="6">var c struct {
                TriggerKind int `json:"triggerKind"`
        }
        if raw, ok := ctx.(json.RawMessage); ok </span><span class="cov6" title="6">{
                _ = json.Unmarshal(raw, &amp;c)
        }</span> else<span class="cov0" title="0"> {
                b, _ := json.Marshal(ctx)
                _ = json.Unmarshal(b, &amp;c)
        }</span>
        <span class="cov6" title="6">return c.TriggerKind == 1</span>
}

// shouldSuppressForChatTriggerEOL returns true when a chat trigger like "&gt;" follows ?, !, :, or ; at EOL.
func (s *Server) shouldSuppressForChatTriggerEOL(current string, p CompletionParams) bool <span class="cov9" title="15">{
        t := strings.TrimRight(current, " \t")
        if s.chatSuffix == "" </span><span class="cov6" title="6">{
                return false
        }</span>
        <span class="cov7" title="9">if strings.HasSuffix(t, s.chatSuffix) </span><span class="cov5" title="4">{
                if len(t) &lt; len(s.chatSuffix)+1 </span><span class="cov0" title="0">{
                        return false
                }</span>
                <span class="cov5" title="4">prev := string(t[len(t)-len(s.chatSuffix)-1])
                for _, pf := range s.chatPrefixes </span><span class="cov8" title="10">{
                        if prev == pf </span><span class="cov3" title="2">{
                                logging.Logf("lsp ", "completion skip=chat-trigger-eol uri=%s line=%d", p.TextDocument.URI, p.Position.Line)
                                return true
                        }</span>
                }
        }
        <span class="cov7" title="7">return false</span>
}

// prefixHeuristicAllows applies minimal prefix rules unless inlinePrompt or structural triggers apply.
func (s *Server) prefixHeuristicAllows(inlinePrompt bool, current string, p CompletionParams, manualInvoke bool) bool <span class="cov8" title="13">{
        // Determine the effective cursor index within current line, clamped, and
        // skip over trailing spaces/tabs to support cases like "type Matrix| ".
        idx := p.Position.Character
        if idx &gt; len(current) </span><span class="cov0" title="0">{
                idx = len(current)
        }</span>
        <span class="cov8" title="13">allowNoPrefix := inlinePrompt
        if idx &gt; 0 </span><span class="cov8" title="11">{
                ch := current[idx-1]
                if ch == '.' || ch == ':' || ch == '/' || ch == '_' || ch == ')' </span><span class="cov5" title="4">{
                        allowNoPrefix = true
                }</span>
        }
        <span class="cov8" title="13">if allowNoPrefix </span><span class="cov6" title="6">{
                return true
        }</span>
        // Walk left over whitespace
        <span class="cov7" title="7">j := idx
        for j &gt; 0 </span><span class="cov8" title="13">{
                c := current[j-1]
                if c == ' ' || c == '\t' </span><span class="cov7" title="7">{
                        j--
                        continue</span>
                }
                <span class="cov6" title="6">break</span>
        }
        <span class="cov7" title="7">start := computeWordStart(current, j)
        min := 1
        if manualInvoke &amp;&amp; s.manualInvokeMinPrefix &gt;= 0 </span><span class="cov6" title="5">{
                min = s.manualInvokeMinPrefix
        }</span>
        <span class="cov7" title="7">return j-start &gt;= min</span>
}

// tryProviderNativeCompletion attempts provider-native completion and returns items when successful.
func (s *Server) tryProviderNativeCompletion(current string, p CompletionParams, above, below, funcCtx, docStr string, hasExtra bool, extraText string, inParams bool) ([]CompletionItem, bool) <span class="cov8" title="11">{
        cc, ok := s.llmClient.(llm.CodeCompleter)
        if !ok </span><span class="cov6" title="6">{
                return nil, false
        }</span>
        <span class="cov6" title="5">before, after := s.docBeforeAfter(p.TextDocument.URI, p.Position)
        path := strings.TrimPrefix(p.TextDocument.URI, "file://")
        // Build provider-native prompt from template
        prompt := renderTemplate(s.promptNativeCompletion, map[string]string{
                "path":   path,
                "before": before,
        })
        lang := ""
        temp := 0.0
        if s.codingTemperature != nil </span><span class="cov0" title="0">{
                temp = *s.codingTemperature
        }</span>
        <span class="cov6" title="5">prov := ""
        if s.llmClient != nil </span><span class="cov6" title="5">{
                prov = s.llmClient.Name()
        }</span>
        <span class="cov6" title="5">logging.Logf("lsp ", "completion path=codex provider=%s uri=%s", prov, path)
        ctx2, cancel2 := context.WithTimeout(context.Background(), 8*time.Second)
        defer cancel2()

        // Debounce and throttle prior to provider-native call
        s.waitForDebounce(ctx2)
        if !s.waitForThrottle(ctx2) </span><span class="cov0" title="0">{
                return nil, false
        }</span>
        <span class="cov6" title="5">suggestions, err := cc.CodeCompletion(ctx2, prompt, after, 1, lang, temp)
        if err == nil &amp;&amp; len(suggestions) &gt; 0 </span><span class="cov5" title="4">{
                cleaned := strings.TrimSpace(suggestions[0])
                if cleaned != "" </span><span class="cov5" title="4">{
                        cleaned = stripDuplicateAssignmentPrefix(current[:p.Position.Character], cleaned)
                        if cleaned != "" </span><span class="cov5" title="4">{
                                cleaned = stripDuplicateGeneralPrefix(current[:p.Position.Character], cleaned)
                        }</span>
                        <span class="cov5" title="4">if cleaned != "" &amp;&amp; hasDoubleOpenTrigger(current) </span><span class="cov1" title="1">{
                                indent := leadingIndent(current)
                                if indent != "" </span><span class="cov1" title="1">{
                                        cleaned = applyIndent(indent, cleaned)
                                }</span>
                        }
                        <span class="cov5" title="4">if strings.TrimSpace(cleaned) != "" </span><span class="cov5" title="4">{
                                key := s.completionCacheKey(p, above, current, below, funcCtx, inParams, hasExtra, extraText)
                                s.completionCachePut(key, cleaned)
                                return s.makeCompletionItems(cleaned, inParams, current, p, docStr), true
                        }</span>
                }
        } else<span class="cov1" title="1"> if err != nil </span><span class="cov1" title="1">{
                logging.Logf("lsp ", "completion path=codex error=%v (falling back to chat)", err)
        }</span>
        <span class="cov1" title="1">return nil, false</span>
}

// waitForDebounce sleeps until there has been no input activity for at least
// completionDebounce. If debounce is zero or ctx is done, it returns promptly.
func (s *Server) waitForDebounce(ctx context.Context) <span class="cov8" title="13">{
        d := s.completionDebounce
        if d &lt;= 0 </span><span class="cov8" title="11">{
                return
        }</span>
        <span class="cov3" title="2">for </span><span class="cov5" title="4">{
                s.mu.RLock()
                last := s.lastInput
                s.mu.RUnlock()
                if last.IsZero() </span><span class="cov0" title="0">{
                        return
                }</span>
                <span class="cov5" title="4">since := time.Since(last)
                if since &gt;= d </span><span class="cov3" title="2">{
                        return
                }</span>
                <span class="cov3" title="2">rem := d - since
                timer := time.NewTimer(rem)
                select </span>{
                case &lt;-ctx.Done():<span class="cov0" title="0">
                        timer.Stop()
                        return</span>
                case &lt;-timer.C:<span class="cov3" title="2"></span>
                        // loop and re-evaluate in case input occurred during sleep
                }
        }
}

// waitForThrottle enforces a minimum spacing between LLM calls. Returns false
// if the context is canceled while waiting.
func (s *Server) waitForThrottle(ctx context.Context) bool <span class="cov8" title="13">{
        interval := s.throttleInterval
        if interval &lt;= 0 </span><span class="cov8" title="10">{
                return true
        }</span>
        <span class="cov4" title="3">var wait time.Duration
        for </span><span class="cov6" title="5">{
                s.mu.Lock()
                next := s.lastLLMCall.Add(interval)
                now := time.Now()
                if now.Before(next) </span><span class="cov3" title="2">{
                        wait = next.Sub(now)
                        s.mu.Unlock()
                        timer := time.NewTimer(wait)
                        select </span>{
                        case &lt;-ctx.Done():<span class="cov0" title="0">
                                timer.Stop()
                                return false</span>
                        case &lt;-timer.C:<span class="cov3" title="2">
                                // try again to set the next call time
                                continue</span>
                        }
                }
                // we are allowed to proceed now; record this call as the latest
                <span class="cov4" title="3">s.lastLLMCall = now
                s.mu.Unlock()
                return true</span>
        }
}

// buildCompletionMessages constructs the LLM messages for completion.
func (s *Server) buildCompletionMessages(inlinePrompt, hasExtra bool, extraText string, inParams bool, p CompletionParams, above, current, below, funcCtx string) []llm.Message <span class="cov8" title="13">{
        // Vars for templates
        vars := map[string]string{
                "file":     p.TextDocument.URI,
                "function": funcCtx,
                "above":    above,
                "current":  current,
                "below":    below,
                "char":     fmt.Sprintf("%d", p.Position.Character),
        }
        sys := s.promptCompSysGeneral
        userTpl := s.promptCompUserGeneral
        if inParams </span><span class="cov3" title="2">{
                sys = s.promptCompSysParams
                userTpl = s.promptCompUserParams
        }</span>
        <span class="cov8" title="13">if inlinePrompt &amp;&amp; strings.TrimSpace(s.promptCompSysInline) != "" </span><span class="cov1" title="1">{
                sys = s.promptCompSysInline
        }</span>
        <span class="cov8" title="13">user := renderTemplate(userTpl, vars)
        messages := []llm.Message{{Role: "system", Content: sys}, {Role: "user", Content: user}}
        if hasExtra &amp;&amp; strings.TrimSpace(extraText) != "" </span><span class="cov1" title="1">{
                extra := renderTemplate(s.promptCompExtraHeader, map[string]string{"context": extraText})
                if strings.TrimSpace(extra) == "" </span><span class="cov0" title="0">{
                        extra = extraText
                }</span>
                <span class="cov1" title="1">messages = append(messages, llm.Message{Role: "user", Content: extra})</span>
        }
        <span class="cov8" title="13">return messages</span>
}

// postProcessCompletion normalizes and deduplicates completion text and applies indentation rules.
func (s *Server) postProcessCompletion(text string, leftOfCursor string, currentLine string) string <span class="cov8" title="10">{
        cleaned := stripCodeFences(text)
        if cleaned != "" &amp;&amp; strings.ContainsRune(cleaned, '`') </span><span class="cov0" title="0">{
                if inline := stripInlineCodeSpan(cleaned); strings.TrimSpace(inline) != "" </span><span class="cov0" title="0">{
                        cleaned = inline
                }</span>
        }
        <span class="cov8" title="10">if cleaned != "" </span><span class="cov8" title="10">{
                cleaned = stripDuplicateAssignmentPrefix(leftOfCursor, cleaned)
        }</span>
        <span class="cov8" title="10">if cleaned != "" </span><span class="cov8" title="10">{
                cleaned = stripDuplicateGeneralPrefix(leftOfCursor, cleaned)
        }</span>
        <span class="cov8" title="10">if cleaned != "" &amp;&amp; hasDoubleOpenTrigger(currentLine) </span><span class="cov1" title="1">{
                if indent := leadingIndent(currentLine); indent != "" </span><span class="cov1" title="1">{
                        cleaned = applyIndent(indent, cleaned)
                }</span>
        }
        <span class="cov8" title="10">return cleaned</span>
}
</pre>
		
		<pre class="file" id="file25" style="display: none">// Summary: Document open/change/close and in-editor chat handlers split out of handlers.go.
package lsp

import (
        "context"
        "encoding/json"
        "strings"
        "time"

        "codeberg.org/snonux/hexai/internal/llm"
        "codeberg.org/snonux/hexai/internal/logging"
)

// Package-level chat trigger vars for helpers without Server receiver.
// NewServer assigns these from configuration on startup.
var (
        chatSuffixChar    byte = '&gt;'
        chatPrefixSingles      = []string{"?", "!", ":", ";"}
)

func (s *Server) handleDidOpen(req Request) <span class="cov1" title="1">{
        var p DidOpenTextDocumentParams
        if err := json.Unmarshal(req.Params, &amp;p); err == nil </span><span class="cov1" title="1">{
                s.setDocument(p.TextDocument.URI, p.TextDocument.Text)
                s.markActivity()
        }</span>
}

func (s *Server) handleDidChange(req Request) <span class="cov1" title="1">{
        var p DidChangeTextDocumentParams
        if err := json.Unmarshal(req.Params, &amp;p); err == nil </span><span class="cov1" title="1">{
                if len(p.ContentChanges) &gt; 0 </span><span class="cov1" title="1">{
                        s.setDocument(p.TextDocument.URI, p.ContentChanges[len(p.ContentChanges)-1].Text)
                }</span>
                <span class="cov1" title="1">s.markActivity()
                // Detect in-editor chat trigger lines and respond inline.
                s.detectAndHandleChat(p.TextDocument.URI)</span>
        }
}

func (s *Server) handleDidClose(req Request) <span class="cov1" title="1">{
        var p DidCloseTextDocumentParams
        if err := json.Unmarshal(req.Params, &amp;p); err == nil </span><span class="cov1" title="1">{
                s.deleteDocument(p.TextDocument.URI)
                s.markActivity()
        }</span>
}

// docBeforeAfter returns the full document text split at the given position.
// The returned strings are the text before the cursor (inclusive of anything
// left of the position) and the text after the cursor.
func (s *Server) docBeforeAfter(uri string, pos Position) (string, string) <span class="cov8" title="7">{
        d := s.getDocument(uri)
        if d == nil </span><span class="cov6" title="4">{
                return "", ""
        }</span>
        // Clamp indices
        <span class="cov5" title="3">line := pos.Line
        if line &lt; 0 </span><span class="cov0" title="0">{
                line = 0
        }</span>
        <span class="cov5" title="3">if line &gt;= len(d.lines) </span><span class="cov1" title="1">{
                line = len(d.lines) - 1
        }</span>
        <span class="cov5" title="3">col := pos.Character
        if col &lt; 0 </span><span class="cov0" title="0">{
                col = 0
        }</span>
        <span class="cov5" title="3">if col &gt; len(d.lines[line]) </span><span class="cov1" title="1">{
                col = len(d.lines[line])
        }</span>
        // Build before
        <span class="cov5" title="3">var b strings.Builder
        for i := 0; i &lt; line; i++ </span><span class="cov5" title="3">{
                b.WriteString(d.lines[i])
                b.WriteByte('\n')
        }</span>
        <span class="cov5" title="3">b.WriteString(d.lines[line][:col])
        before := b.String()
        // Build after
        var a strings.Builder
        a.WriteString(d.lines[line][col:])
        for i := line + 1; i &lt; len(d.lines); i++ </span><span class="cov3" title="2">{
                a.WriteByte('\n')
                a.WriteString(d.lines[i])
        }</span>
        <span class="cov5" title="3">return before, a.String()</span>
}

// --- in-editor chat (";C ...") ---

// detectAndHandleChat scans the current document for any line that starts with
// a new trigger pair (e.g., "?&gt;" ",&gt;" ":&gt;" ";&gt;") at EOL and inserts the LLM
// reply below.
func (s *Server) detectAndHandleChat(uri string) <span class="cov7" title="5">{
        if s.llmClient == nil </span><span class="cov1" title="1">{
                return
        }</span>
        <span class="cov6" title="4">d := s.getDocument(uri)
        if d == nil || len(d.lines) == 0 </span><span class="cov0" title="0">{
                return
        }</span>
        <span class="cov6" title="4">for i, raw := range d.lines </span><span class="cov7" title="6">{
                // Find last non-space character index
                j := len(raw) - 1
                for j &gt;= 0 </span><span class="cov7" title="5">{
                        if raw[j] == ' ' || raw[j] == '\t' </span><span class="cov0" title="0">{
                                j--
                                continue</span>
                        }
                        <span class="cov7" title="5">break</span>
                }
                <span class="cov7" title="6">if j &lt; 0 </span><span class="cov1" title="1">{
                        continue</span>
                }
                // Check suffix/prefix according to configuration
                <span class="cov7" title="5">if s.chatSuffix == "" </span><span class="cov3" title="2">{
                        continue</span>
                }
                // Last non-space must equal suffix
                <span class="cov5" title="3">if string(raw[j]) != s.chatSuffix </span><span class="cov0" title="0">{
                        continue</span>
                }
                // Require at least one char before suffix and that char must be in chatPrefixes
                <span class="cov5" title="3">if j &lt; 1 </span><span class="cov0" title="0">{
                        continue</span>
                }
                <span class="cov5" title="3">prev := string(raw[j-1])
                isTrigger := false
                for _, pfx := range s.chatPrefixes </span><span class="cov5" title="3">{
                        if prev == pfx </span><span class="cov5" title="3">{
                                isTrigger = true
                                break</span>
                        }
                }
                <span class="cov5" title="3">if !isTrigger </span><span class="cov0" title="0">{
                        continue</span>
                }
                // Avoid double-answering: if the next non-empty line starts with '&gt;' we skip.
                <span class="cov5" title="3">k := i + 1
                for k &lt; len(d.lines) &amp;&amp; strings.TrimSpace(d.lines[k]) == "" </span><span class="cov7" title="5">{
                        k++
                }</span>
                <span class="cov5" title="3">if k &lt; len(d.lines) &amp;&amp; strings.HasPrefix(strings.TrimSpace(d.lines[k]), "&gt;") </span><span class="cov0" title="0">{
                        continue</span>
                }
                // Derive prompt by removing only the trailing '&gt;'
                <span class="cov5" title="3">removeCount := len(s.chatSuffix)
                base := raw[:j+1-removeCount]
                prompt := strings.TrimSpace(base)
                if prompt == "" </span><span class="cov0" title="0">{
                        continue</span>
                }
                <span class="cov5" title="3">lineIdx := i
                lastIdx := j
                go func(prompt string, remove int) </span><span class="cov5" title="3">{
                        ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
                        defer cancel()
                        sys := s.promptChatSystem
                        // Build short conversation history from the document above this line
                        history := s.buildChatHistory(uri, lineIdx, prompt)
                        msgs := append([]llm.Message{{Role: "system", Content: sys}}, history...)
                        opts := s.llmRequestOpts()
                        logging.Logf("lsp ", "chat llm=requesting model=%s", s.llmClient.DefaultModel())
                        text, err := s.llmClient.Chat(ctx, msgs, opts...)
                        if err != nil </span><span class="cov0" title="0">{
                                logging.Logf("lsp ", "chat llm error: %v", err)
                                return
                        }</span>
                        <span class="cov5" title="3">out := strings.TrimSpace(stripCodeFences(text))
                        if out == "" </span><span class="cov0" title="0">{
                                return
                        }</span>
                        <span class="cov5" title="3">s.applyChatEdits(uri, lineIdx, lastIdx, remove, "&gt; "+out)</span>
                }(prompt, removeCount)
                // Only handle one per change tick to avoid flooding
                <span class="cov5" title="3">break</span>
        }
}

// applyChatEdits removes the triggering punctuation at end of the line and
// inserts two newlines followed by a new line with the response prefixed.
func (s *Server) applyChatEdits(uri string, lineIdx int, lastNonSpace int, removeCount int, response string) <span class="cov5" title="3">{
        d := s.getDocument(uri)
        if d == nil </span><span class="cov0" title="0">{
                return
        }</span>
        // 1) Delete the trailing punctuation (1 or 2 chars)
        <span class="cov5" title="3">delStart := Position{Line: lineIdx, Character: lastNonSpace + 1 - removeCount}
        delEnd := Position{Line: lineIdx, Character: lastNonSpace + 1}
        // 2) Insert two newlines and the response at end-of-line, then one extra blank line
        insPos := Position{Line: lineIdx, Character: len(d.lines[lineIdx])}
        resp := strings.TrimRight(response, "\n") + "\n"
        insert := "\n\n" + resp + "\n"
        edits := []TextEdit{
                {Range: Range{Start: delStart, End: delEnd}, NewText: ""},
                {Range: Range{Start: insPos, End: insPos}, NewText: insert},
        }
        we := WorkspaceEdit{Changes: map[string][]TextEdit{uri: edits}}
        s.clientApplyEdit("Hexai: insert chat response", we)</span>
}

// buildChatHistory walks upwards from the current line to collect the most recent
// Q/A pairs in the in-editor transcript. Returns messages ending with current prompt.
func (s *Server) buildChatHistory(uri string, lineIdx int, currentPrompt string) []llm.Message <span class="cov6" title="4">{
        d := s.getDocument(uri)
        if d == nil </span><span class="cov0" title="0">{
                return []llm.Message{{Role: "user", Content: currentPrompt}}
        }</span>
        <span class="cov6" title="4">type pair struct{ q, a string }
        pairs := []pair{}
        i := lineIdx - 1
        for i &gt;= 0 &amp;&amp; len(pairs) &lt; 3 </span><span class="cov3" title="2">{
                for i &gt;= 0 &amp;&amp; strings.TrimSpace(d.lines[i]) == "" </span><span class="cov1" title="1">{
                        i--
                }</span>
                <span class="cov3" title="2">if i &lt; 0 </span><span class="cov0" title="0">{
                        break</span>
                }
                <span class="cov3" title="2">if !strings.HasPrefix(strings.TrimSpace(d.lines[i]), "&gt;") </span><span class="cov0" title="0">{
                        break</span>
                }
                <span class="cov3" title="2">var replyLines []string
                for i &gt;= 0 </span><span class="cov6" title="4">{
                        line := strings.TrimSpace(d.lines[i])
                        if strings.HasPrefix(line, "&gt;") </span><span class="cov3" title="2">{
                                replyLines = append([]string{strings.TrimSpace(strings.TrimPrefix(line, "&gt;"))}, replyLines...)
                                i--
                                continue</span>
                        }
                        <span class="cov3" title="2">break</span>
                }
                <span class="cov3" title="2">for i &gt;= 0 &amp;&amp; strings.TrimSpace(d.lines[i]) == "" </span><span class="cov0" title="0">{
                        i--
                }</span>
                <span class="cov3" title="2">if i &lt; 0 </span><span class="cov0" title="0">{
                        break</span>
                }
                <span class="cov3" title="2">q := strings.TrimSpace(d.lines[i])
                q = stripTrailingTrigger(q)
                pairs = append([]pair{{q: q, a: strings.Join(replyLines, "\n")}}, pairs...)
                i--</span>
        }
        <span class="cov6" title="4">msgs := make([]llm.Message, 0, len(pairs)*2+1)
        for _, p := range pairs </span><span class="cov3" title="2">{
                if strings.TrimSpace(p.q) != "" </span><span class="cov3" title="2">{
                        msgs = append(msgs, llm.Message{Role: "user", Content: p.q})
                }</span>
                <span class="cov3" title="2">if strings.TrimSpace(p.a) != "" </span><span class="cov3" title="2">{
                        msgs = append(msgs, llm.Message{Role: "assistant", Content: p.a})
                }</span>
        }
        <span class="cov6" title="4">msgs = append(msgs, llm.Message{Role: "user", Content: currentPrompt})
        return msgs</span>
}

// stripTrailingTrigger removes the trailing chat trigger punctuation from a line if present.
func stripTrailingTrigger(sx string) string <span class="cov8" title="8">{
        s := strings.TrimRight(sx, " \t")
        if len(s) == 0 </span><span class="cov0" title="0">{
                return sx
        }</span>
        // Configurable suffix removal when preceded by configured prefixes
        <span class="cov8" title="8">if len(s) &gt;= 2 &amp;&amp; s[len(s)-1] == chatSuffixChar </span><span class="cov7" title="5">{
                prev := string(s[len(s)-2])
                for _, pf := range chatPrefixSingles </span><span class="cov10" title="11">{
                        if prev == pf </span><span class="cov7" title="5">{
                                return strings.TrimRight(s[:len(s)-1], " \t")
                        }</span>
                }
        }
        // Legacy: remove one trailing punctuation (?, !, :) to build history nicely
        <span class="cov5" title="3">last := s[len(s)-1]
        switch last </span>{
        case '?', '!', ':':<span class="cov1" title="1">
                return strings.TrimRight(s[:len(s)-1], " \t")</span>
        default:<span class="cov3" title="2">
                return sx</span>
        }
}

// clientApplyEdit sends a workspace/applyEdit request to the client.
func (s *Server) clientApplyEdit(label string, edit WorkspaceEdit) <span class="cov5" title="3">{
        params := ApplyWorkspaceEditParams{Label: label, Edit: edit}
        id := s.nextReqID()
        req := Request{JSONRPC: "2.0", ID: id, Method: "workspace/applyEdit"}
        b, _ := json.Marshal(params)
        req.Params = b
        s.writeMessage(req)
}</span>

// nextReqID returns a unique json.RawMessage id for server-initiated requests.
func (s *Server) nextReqID() json.RawMessage <span class="cov7" title="6">{
        s.mu.Lock()
        s.nextID++
        idNum := s.nextID
        s.mu.Unlock()
        b, _ := json.Marshal(idNum)
        return b
}</span>

// clientShowDocument asks the client to open/focus a document and select a range.
func (s *Server) clientShowDocument(uri string, sel *Range) <span class="cov5" title="3">{
        var params struct {
                URI       string `json:"uri"`
                External  bool   `json:"external,omitempty"`
                TakeFocus bool   `json:"takeFocus,omitempty"`
                Selection *Range `json:"selection,omitempty"`
        }
        params.URI = uri
        params.TakeFocus = true
        params.Selection = sel
        id := s.nextReqID()
        req := Request{JSONRPC: "2.0", ID: id, Method: "window/showDocument"}
        b, _ := json.Marshal(params)
        req.Params = b
        s.writeMessage(req)
}</span>

// deferShowDocument schedules a showDocument after a short delay to allow the client
// time to apply any pending edits (e.g., create the file before focusing it).
func (s *Server) deferShowDocument(uri string, sel Range) <span class="cov1" title="1">{
        go func() </span><span class="cov1" title="1">{
                time.Sleep(120 * time.Millisecond)
                s.clientShowDocument(uri, &amp;sel)
        }</span>()
}
</pre>
		
		<pre class="file" id="file26" style="display: none">// Summary: ExecuteCommand handler to support post-edit navigation (jump to generated test).
package lsp

import (
        "encoding/json"
)

func (s *Server) handleExecuteCommand(req Request) <span class="cov8" title="1">{
        var p ExecuteCommandParams
        if err := json.Unmarshal(req.Params, &amp;p); err != nil </span><span class="cov0" title="0">{
                s.reply(req.ID, nil, nil)
                return
        }</span>
        <span class="cov8" title="1">switch p.Command </span>{
        case "hexai.showDocument":<span class="cov8" title="1">
                if len(p.Arguments) &gt;= 2 </span><span class="cov8" title="1">{
                        uri, _ := p.Arguments[0].(string)
                        var r Range
                        // Convert second arg to Range via re-marshal to be robust across clients
                        if b, err := json.Marshal(p.Arguments[1]); err == nil </span><span class="cov8" title="1">{
                                _ = json.Unmarshal(b, &amp;r)
                        }</span>
                        <span class="cov8" title="1">if uri != "" </span><span class="cov8" title="1">{
                                s.clientShowDocument(uri, &amp;r)
                        }</span>
                }
                <span class="cov8" title="1">s.reply(req.ID, nil, nil)
                return</span>
        default:<span class="cov0" title="0">
                // Unknown command; no-op
                s.reply(req.ID, nil, nil)
                return</span>
        }
}
</pre>
		
		<pre class="file" id="file27" style="display: none">// Summary: Initialization and lifecycle handlers split from handlers.go.
package lsp

import (
        "os"

        "codeberg.org/snonux/hexai/internal"
        "codeberg.org/snonux/hexai/internal/logging"
)

func (s *Server) handleInitialize(req Request) <span class="cov10" title="2">{
        version := internal.Version
        if s.llmClient != nil </span><span class="cov0" title="0">{
                version = version + " [" + s.llmClient.Name() + ":" + s.llmClient.DefaultModel() + "]"
        }</span>
        <span class="cov10" title="2">res := InitializeResult{
                Capabilities: ServerCapabilities{
                        TextDocumentSync: 1, // 1 = TextDocumentSyncKindFull
                        CompletionProvider: &amp;CompletionOptions{
                                ResolveProvider:   false,
                                TriggerCharacters: s.triggerChars,
                        },
                        CodeActionProvider: CodeActionOptions{ResolveProvider: true},
                },
                ServerInfo: &amp;ServerInfo{Name: "hexai", Version: version},
        }
        s.reply(req.ID, res, nil)</span>
}

func (s *Server) handleInitialized() <span class="cov1" title="1">{
        logging.Logf("lsp ", "client initialized")
}</span>

func (s *Server) handleShutdown(req Request) <span class="cov1" title="1">{
        s.reply(req.ID, nil, nil)
}</span>

func (s *Server) handleExit() <span class="cov0" title="0">{
        s.exited = true
        os.Exit(0)
}</span>
</pre>
		
		<pre class="file" id="file28" style="display: none">// Summary: Generic LSP helpers shared across handlers (LLM opts, prompts, text utils, counters).
package lsp

import (
    "strings"
    "time"

    "codeberg.org/snonux/hexai/internal/llm"
    "codeberg.org/snonux/hexai/internal/logging"
    "codeberg.org/snonux/hexai/internal/textutil"
)

// Configurable inline trigger characters (default to '&gt;') used by free helpers below.
// NewServer assigns these based on ServerOptions.
var (
        inlineOpenChar  byte = '&gt;'
        inlineCloseChar byte = '&gt;'
)

// llmRequestOpts builds request options from server settings.
func (s *Server) llmRequestOpts() []llm.RequestOption <span class="cov6" title="17">{
        opts := []llm.RequestOption{llm.WithMaxTokens(s.maxTokens)}
        if s.codingTemperature != nil </span><span class="cov0" title="0">{
                opts = append(opts, llm.WithTemperature(*s.codingTemperature))
        }</span>
        <span class="cov6" title="17">return opts</span>
}

// small helpers for LLM traffic stats
func (s *Server) incSentCounters(n int) <span class="cov5" title="8">{
        s.mu.Lock()
        s.llmReqTotal++
        s.llmSentBytesTotal += int64(n)
        s.mu.Unlock()
}</span>

func (s *Server) incRecvCounters(n int) <span class="cov5" title="8">{
        s.mu.Lock()
        s.llmRespTotal++
        s.llmRespBytesTotal += int64(n)
        s.mu.Unlock()
}</span>

func (s *Server) logLLMStats() <span class="cov5" title="8">{
        s.mu.RLock()
        avgSent := int64(0)
        if s.llmReqTotal &gt; 0 </span><span class="cov5" title="8">{
                avgSent = s.llmSentBytesTotal / s.llmReqTotal
        }</span>
        <span class="cov5" title="8">avgRecv := int64(0)
        if s.llmRespTotal &gt; 0 </span><span class="cov5" title="8">{
                avgRecv = s.llmRespBytesTotal / s.llmRespTotal
        }</span>
        <span class="cov5" title="8">reqs, sentTot, recvTot := s.llmReqTotal, s.llmSentBytesTotal, s.llmRespBytesTotal
        s.mu.RUnlock()
        mins := time.Since(s.startTime).Minutes()
        if mins &lt;= 0 </span><span class="cov0" title="0">{
                mins = 0.001
        }</span>
        <span class="cov5" title="8">rpm := float64(reqs) / mins
        sentPerMin := float64(sentTot) / mins
        recvPerMin := float64(recvTot) / mins
        logging.Logf("lsp ", "llm stats reqs=%d avg_sent=%d avg_recv=%d sent_total=%d recv_total=%d rpm=%.2f sent_per_min=%.0f recv_per_min=%.0f", reqs, avgSent, avgRecv, sentTot, recvTot, rpm, sentPerMin, recvPerMin)</span>
}

// Completion prompt builders and filters
func inParamList(current string, cursor int) bool <span class="cov6" title="13">{
        if !strings.Contains(current, "func ") </span><span class="cov4" title="7">{
                return false
        }</span>
        <span class="cov4" title="6">open := strings.Index(current, "(")
        close := strings.Index(current, ")")
        return open &gt;= 0 &amp;&amp; cursor &gt; open &amp;&amp; (close == -1 || cursor &lt;= close)</span>
}

// renderTemplate performs simple {{var}} replacement in a template string.
func renderTemplate(t string, vars map[string]string) string <span class="cov7" title="33">{ return textutil.RenderTemplate(t, vars) }</span>

func computeTextEditAndFilter(cleaned string, inParams bool, current string, p CompletionParams) (*TextEdit, string) <span class="cov6" title="17">{
        if inParams </span><span class="cov3" title="3">{
                open := strings.Index(current, "(")
                close := strings.Index(current, ")")
                if open &gt;= 0 </span><span class="cov3" title="3">{
                        left := open + 1
                        right := len(current)
                        if close &gt;= 0 &amp;&amp; close &gt;= left </span><span class="cov3" title="3">{
                                right = close
                        }</span>
                        <span class="cov3" title="3">if p.Position.Character &lt; right </span><span class="cov2" title="2">{
                                right = p.Position.Character
                        }</span>
                        <span class="cov3" title="3">te := &amp;TextEdit{Range: Range{Start: Position{Line: p.Position.Line, Character: left}, End: Position{Line: p.Position.Line, Character: right}}, NewText: cleaned}
                        var filter string
                        if left &gt;= 0 &amp;&amp; right &gt;= left &amp;&amp; right &lt;= len(current) </span><span class="cov3" title="3">{
                                filter = strings.TrimLeft(current[left:right], " \t")
                        }</span>
                        <span class="cov3" title="3">return te, filter</span>
                }
        }
        <span class="cov6" title="14">startChar := computeWordStart(current, p.Position.Character)
        te := &amp;TextEdit{Range: Range{Start: Position{Line: p.Position.Line, Character: startChar}, End: Position{Line: p.Position.Line, Character: p.Position.Character}}, NewText: cleaned}
        filter := strings.TrimLeft(current[startChar:p.Position.Character], " \t")
        return te, filter</span>
}

func computeWordStart(current string, at int) int <span class="cov7" title="24">{
        if at &gt; len(current) </span><span class="cov0" title="0">{
                at = len(current)
        }</span>
        <span class="cov7" title="24">for at &gt; 0 </span><span class="cov8" title="49">{
                ch := current[at-1]
                if (ch &gt;= 'a' &amp;&amp; ch &lt;= 'z') || (ch &gt;= 'A' &amp;&amp; ch &lt;= 'Z') || (ch &gt;= '0' &amp;&amp; ch &lt;= '9') || ch == '_' </span><span class="cov7" title="31">{
                        at--
                        continue</span>
                }
                <span class="cov6" title="18">break</span>
        }
        <span class="cov7" title="24">return at</span>
}

func isIdentChar(ch byte) bool <span class="cov7" title="26">{
        return (ch &gt;= 'a' &amp;&amp; ch &lt;= 'z') || (ch &gt;= 'A' &amp;&amp; ch &lt;= 'Z') || (ch &gt;= '0' &amp;&amp; ch &lt;= '9') || ch == '_'
}</span>

// Inline prompt utilities
func lineHasInlinePrompt(line string) bool <span class="cov6" title="21">{
        if _, _, _, ok := findStrictInlineTag(line); ok </span><span class="cov3" title="4">{
                return true
        }</span>
        <span class="cov6" title="17">return hasDoubleOpenTrigger(line)</span>
}

func leadingIndent(line string) string <span class="cov3" title="4">{
        i := 0
        for i &lt; len(line) </span><span class="cov6" title="14">{
                if line[i] == ' ' || line[i] == '\t' </span><span class="cov5" title="10">{
                        i++
                        continue</span>
                }
                <span class="cov3" title="4">break</span>
        }
        <span class="cov3" title="4">if i == 0 </span><span class="cov0" title="0">{
                return ""
        }</span>
        <span class="cov3" title="4">return line[:i]</span>
}

func applyIndent(indent, suggestion string) string <span class="cov3" title="4">{
        if indent == "" || suggestion == "" </span><span class="cov0" title="0">{
                return suggestion
        }</span>
        <span class="cov3" title="4">lines := splitLines(suggestion)
        for i, ln := range lines </span><span class="cov5" title="10">{
                if strings.TrimSpace(ln) == "" </span><span class="cov1" title="1">{
                        continue</span>
                }
                <span class="cov5" title="9">if strings.HasPrefix(ln, indent) </span><span class="cov0" title="0">{
                        continue</span>
                }
                <span class="cov5" title="9">lines[i] = indent + ln</span>
        }
        <span class="cov3" title="4">return strings.Join(lines, "\n")</span>
}

// --- Inline marker parsing and general string utilities ---

// findStrictInlineTag finds &gt;text&gt; (configurable), with no space after the first
// opening marker and no space immediately before the closing marker. Returns the
// text between markers, the start index, the end index just after closing, and ok.
func findStrictInlineTag(line string) (string, int, int, bool) <span class="cov8" title="50">{
        pos := 0
        for pos &lt; len(line) </span><span class="cov9" title="65">{
                // find opening marker
                j := strings.IndexByte(line[pos:], inlineOpenChar)
                if j &lt; 0 </span><span class="cov7" title="27">{
                        return "", 0, 0, false
                }</span>
                <span class="cov8" title="38">j += pos
                // ensure single open (not double) and non-space after
                if j+1 &gt;= len(line) || line[j+1] == inlineOpenChar || line[j+1] == ' ' </span><span class="cov6" title="21">{
                        pos = j + 1
                        continue</span>
                }
                // find closing marker
                <span class="cov6" title="17">k := strings.IndexByte(line[j+1:], inlineCloseChar)
                if k &lt; 0 </span><span class="cov1" title="1">{
                        return "", 0, 0, false
                }</span>
                <span class="cov6" title="16">closeIdx := j + 1 + k
                if closeIdx-1 &lt; 0 || line[closeIdx-1] == ' ' </span><span class="cov1" title="1">{
                        pos = closeIdx + 1
                        continue</span>
                }
                <span class="cov6" title="15">inner := strings.TrimSpace(line[j+1 : closeIdx])
                if inner == "" </span><span class="cov0" title="0">{
                        pos = closeIdx + 1
                        continue</span>
                }
                <span class="cov6" title="15">end := closeIdx + 1
                return inner, j, end, true</span>
        }
        <span class="cov4" title="7">return "", 0, 0, false</span>
}

// isBareDoubleSemicolon reports whether the line contains a standalone
// double-semicolon marker with no inline content (";;" possibly with only
// whitespace after it). It explicitly excludes the valid form ";;text;".
func isBareDoubleOpen(line string) bool <span class="cov6" title="19">{
        t := strings.TrimSpace(line)
        // check for double-open pattern
        dbl := string([]byte{inlineOpenChar, inlineOpenChar})
        if !strings.Contains(t, dbl) </span><span class="cov6" title="16">{
                return false
        }</span>
        <span class="cov3" title="3">if hasDoubleOpenTrigger(t) </span><span class="cov1" title="1">{
                return false
        }</span>
        <span class="cov2" title="2">if strings.HasPrefix(t, dbl) </span><span class="cov2" title="2">{
                rest := strings.TrimSpace(t[len(dbl):])
                if rest == "" || rest == ";" </span><span class="cov2" title="2">{
                        return true
                }</span>
        }
        <span class="cov0" title="0">return false</span>
}

// stripDuplicateAssignmentPrefix removes a duplicated assignment prefix from the suggestion.
func stripDuplicateAssignmentPrefix(prefixBeforeCursor, suggestion string) string <span class="cov6" title="19">{
        s2 := strings.TrimLeft(suggestion, " \t")
        // Prefer := if present at end of prefix
        if idx := strings.LastIndex(prefixBeforeCursor, ":="); idx &gt;= 0 &amp;&amp; idx+2 &lt;= len(prefixBeforeCursor) </span><span class="cov3" title="4">{
                tail := prefixBeforeCursor[idx+2:]
                if strings.TrimSpace(tail) == "" </span><span class="cov3" title="4">{
                        start := idx - 1
                        for start &gt;= 0 &amp;&amp; (isIdentChar(prefixBeforeCursor[start]) || prefixBeforeCursor[start] == ' ' || prefixBeforeCursor[start] == '\t') </span><span class="cov6" title="20">{
                                start--
                        }</span>
                        <span class="cov3" title="4">start++
                        seg := strings.TrimRight(prefixBeforeCursor[start:idx+2], " \t")
                        if strings.HasPrefix(s2, seg) </span><span class="cov3" title="4">{
                                return strings.TrimLeft(s2[len(seg):], " \t")
                        }</span>
                }
        }
        // Fallback to plain '=' if present
        <span class="cov6" title="15">if idx := strings.LastIndex(prefixBeforeCursor, "="); idx &gt;= 0 </span><span class="cov2" title="2">{
                if !(idx &gt; 0 &amp;&amp; prefixBeforeCursor[idx-1] == ':') </span><span class="cov2" title="2">{ // not :=
                        tail := prefixBeforeCursor[idx+1:]
                        if strings.TrimSpace(tail) == "" </span><span class="cov2" title="2">{
                                start := idx - 1
                                for start &gt;= 0 &amp;&amp; (isIdentChar(prefixBeforeCursor[start]) || prefixBeforeCursor[start] == ' ' || prefixBeforeCursor[start] == '\t') </span><span class="cov3" title="4">{
                                        start--
                                }</span>
                                <span class="cov2" title="2">start++
                                seg := strings.TrimRight(prefixBeforeCursor[start:idx+1], " \t")
                                if strings.HasPrefix(s2, seg) </span><span class="cov2" title="2">{
                                        return strings.TrimLeft(s2[len(seg):], " \t")
                                }</span>
                        }
                }
        }
        <span class="cov6" title="13">return suggestion</span>
}

// stripDuplicateGeneralPrefix removes any already-typed prefix that the model repeated.
func stripDuplicateGeneralPrefix(prefixBeforeCursor, suggestion string) string <span class="cov6" title="19">{
        if suggestion == "" </span><span class="cov0" title="0">{
                return suggestion
        }</span>
        <span class="cov6" title="19">s := strings.TrimLeft(suggestion, " \t")
        p := strings.TrimRight(prefixBeforeCursor, " \t")
        if p != "" &amp;&amp; strings.HasPrefix(s, p) </span><span class="cov4" title="5">{
                return strings.TrimLeft(s[len(p):], " \t")
        }</span>
        <span class="cov6" title="14">for k := len(p) - 1; k &gt; 0; k-- </span><span class="cov10" title="100">{
                if !isIdentBoundary(p[k-1]) </span><span class="cov9" title="77">{
                        continue</span>
                }
                <span class="cov7" title="23">suf := strings.TrimLeft(p[k:], " \t")
                if suf == "" </span><span class="cov0" title="0">{
                        continue</span>
                }
                <span class="cov7" title="23">if strings.HasPrefix(s, suf) </span><span class="cov0" title="0">{
                        return strings.TrimLeft(s[len(suf):], " \t")
                }</span>
        }
        <span class="cov6" title="14">return suggestion</span>
}

func isIdentBoundary(ch byte) bool <span class="cov10" title="100">{
        return !((ch &gt;= 'a' &amp;&amp; ch &lt;= 'z') || (ch &gt;= 'A' &amp;&amp; ch &lt;= 'Z') || (ch &gt;= '0' &amp;&amp; ch &lt;= '9') || ch == '_')
}</span>

// stripCodeFences removes surrounding Markdown code fences from a model response.
func stripCodeFences(s string) string <span class="cov8" title="36">{ return textutil.StripCodeFences(s) }</span>

// stripInlineCodeSpan returns the contents of the first inline backtick code span if present.
func stripInlineCodeSpan(s string) string <span class="cov5" title="11">{
        t := strings.TrimSpace(s)
        if t == "" </span><span class="cov0" title="0">{
                return t
        }</span>
        <span class="cov5" title="11">i := strings.IndexByte(t, '`')
        if i &lt; 0 </span><span class="cov2" title="2">{
                return t
        }</span>
        <span class="cov5" title="9">jrel := strings.IndexByte(t[i+1:], '`')
        if jrel &lt; 0 </span><span class="cov2" title="2">{
                return t
        }</span>
        <span class="cov4" title="7">j := i + 1 + jrel
        return t[i+1 : j]</span>
}

// labelForCompletion picks a short, readable label for the completion list.
func labelForCompletion(cleaned, filter string) string <span class="cov6" title="20">{
        label := trimLen(firstLine(cleaned))
        if filter != "" &amp;&amp; !strings.HasPrefix(strings.ToLower(label), strings.ToLower(filter)) </span><span class="cov4" title="5">{
                return filter
        }</span>
        <span class="cov6" title="15">return label</span>
}

// extractRangeText returns the exact text within the given document range.
func extractRangeText(d *document, r Range) string <span class="cov3" title="4">{
        if r.Start.Line == r.End.Line </span><span class="cov3" title="3">{
                line := d.lines[r.Start.Line]
                if r.Start.Character &lt; 0 </span><span class="cov0" title="0">{
                        r.Start.Character = 0
                }</span>
                <span class="cov3" title="3">if r.End.Character &gt; len(line) </span><span class="cov0" title="0">{
                        r.End.Character = len(line)
                }</span>
                <span class="cov3" title="3">if r.Start.Character &gt; r.End.Character </span><span class="cov1" title="1">{
                        return ""
                }</span>
                <span class="cov2" title="2">return line[r.Start.Character:r.End.Character]</span>
        }
        <span class="cov1" title="1">var b strings.Builder
        // first line
        first := d.lines[r.Start.Line]
        if r.Start.Character &lt; 0 </span><span class="cov0" title="0">{
                r.Start.Character = 0
        }</span>
        <span class="cov1" title="1">if r.Start.Character &gt; len(first) </span><span class="cov0" title="0">{
                r.Start.Character = len(first)
        }</span>
        <span class="cov1" title="1">b.WriteString(first[r.Start.Character:])
        b.WriteString("\n")
        // middle lines
        for i := r.Start.Line + 1; i &lt; r.End.Line; i++ </span><span class="cov1" title="1">{
                b.WriteString(d.lines[i])
                if i+1 &lt;= r.End.Line </span><span class="cov1" title="1">{
                        b.WriteString("\n")
                }</span>
        }
        // last line
        <span class="cov1" title="1">last := d.lines[r.End.Line]
        if r.End.Character &lt; 0 </span><span class="cov0" title="0">{
                r.End.Character = 0
        }</span>
        <span class="cov1" title="1">if r.End.Character &gt; len(last) </span><span class="cov0" title="0">{
                r.End.Character = len(last)
        }</span>
        <span class="cov1" title="1">b.WriteString(last[:r.End.Character])
        return b.String()</span>
}

// collectPromptRemovalEdits returns edits to remove all inline prompt markers.
func (s *Server) collectPromptRemovalEdits(uri string) []TextEdit <span class="cov6" title="13">{
        d := s.getDocument(uri)
        if d == nil || len(d.lines) == 0 </span><span class="cov5" title="11">{
                return nil
        }</span>
        <span class="cov2" title="2">var edits []TextEdit
        for i, line := range d.lines </span><span class="cov4" title="7">{
                edits = append(edits, promptRemovalEditsForLine(line, i)...)
        }</span>
        <span class="cov2" title="2">return edits</span>
}

func promptRemovalEditsForLine(line string, lineNum int) []TextEdit <span class="cov5" title="11">{
        if hasDoubleOpenTrigger(line) </span><span class="cov3" title="4">{
                return []TextEdit{{Range: Range{Start: Position{Line: lineNum, Character: 0}, End: Position{Line: lineNum, Character: len(line)}}, NewText: ""}}
        }</span>
        <span class="cov4" title="7">return collectSemicolonMarkers(line, lineNum)</span>
}

func hasDoubleOpenTrigger(line string) bool <span class="cov8" title="56">{
        pos := 0
        for pos &lt; len(line) </span><span class="cov8" title="58">{
                // look for double-open sequence
                dbl := string([]byte{inlineOpenChar, inlineOpenChar})
                j := strings.Index(line[pos:], dbl)
                if j &lt; 0 </span><span class="cov8" title="36">{
                        return false
                }</span>
                <span class="cov7" title="22">j += pos
                contentStart := j + len(dbl)
                if contentStart &gt;= len(line) </span><span class="cov4" title="7">{
                        return false
                }</span>
                <span class="cov6" title="15">first := line[contentStart]
                if first == ' ' || first == inlineOpenChar </span><span class="cov3" title="4">{
                        pos = contentStart + 1
                        continue</span>
                }
                // find closing
                <span class="cov5" title="11">k := strings.IndexByte(line[contentStart+1:], inlineCloseChar)
                if k &lt; 0 </span><span class="cov0" title="0">{
                        return false
                }</span>
                <span class="cov5" title="11">closeIdx := contentStart + 1 + k
                if closeIdx-1 &gt;= 0 &amp;&amp; line[closeIdx-1] == ' ' </span><span class="cov1" title="1">{
                        pos = closeIdx + 1
                        continue</span>
                }
                <span class="cov5" title="10">return true</span>
        }
        <span class="cov3" title="3">return false</span>
}

func collectSemicolonMarkers(line string, lineNum int) []TextEdit <span class="cov5" title="9">{
        var edits []TextEdit
        startSemi := 0
        for startSemi &lt; len(line) </span><span class="cov6" title="14">{
                j := strings.IndexByte(line[startSemi:], inlineOpenChar)
                if j &lt; 0 </span><span class="cov5" title="8">{
                        break</span>
                }
                <span class="cov4" title="6">j += startSemi
                k := strings.IndexByte(line[j+1:], inlineCloseChar)
                if k &lt; 0 </span><span class="cov0" title="0">{
                        break</span>
                }
                <span class="cov4" title="6">if j+1 &gt;= len(line) || line[j+1] == ' ' </span><span class="cov0" title="0">{
                        startSemi = j + 1
                        continue</span>
                }
                <span class="cov4" title="6">if line[j+1] == inlineOpenChar </span><span class="cov0" title="0">{ // skip double-open start
                        startSemi = j + 2
                        continue</span>
                }
                <span class="cov4" title="6">closeIdx := j + 1 + k
                if closeIdx-1 &lt; 0 || line[closeIdx-1] == ' ' </span><span class="cov0" title="0">{
                        startSemi = closeIdx + 1
                        continue</span>
                }
                <span class="cov4" title="6">if closeIdx-(j+1) &lt; 1 </span><span class="cov0" title="0">{
                        startSemi = closeIdx + 1
                        continue</span>
                }
                <span class="cov4" title="6">endChar := closeIdx + 1
                if endChar &lt; len(line) &amp;&amp; line[endChar] == ' ' </span><span class="cov3" title="4">{
                        endChar++
                }</span>
                <span class="cov4" title="6">edits = append(edits, TextEdit{Range: Range{Start: Position{Line: lineNum, Character: j}, End: Position{Line: lineNum, Character: endChar}}, NewText: ""})
                startSemi = endChar</span>
        }
        <span class="cov5" title="9">return edits</span>
}
</pre>
		
		<pre class="file" id="file29" style="display: none">// Summary: Minimal LSP server over stdio; manages documents, dispatches requests, and tracks stats.
package lsp

import (
        "bufio"
        "encoding/json"
        "io"
        "log"
        "strings"
        "sync"
        "time"

        "codeberg.org/snonux/hexai/internal/llm"
        "codeberg.org/snonux/hexai/internal/logging"
)

// Server implements a minimal LSP over stdio.
type Server struct {
        in               *bufio.Reader
        out              io.Writer
        logger           *log.Logger
        exited           bool
        mu               sync.RWMutex
        docs             map[string]*document
        logContext       bool
        llmClient        llm.Client
        lastInput        time.Time
        maxTokens        int
        contextMode      string
        windowLines      int
        maxContextTokens int
        triggerChars     []string
        // If set, used as the LSP coding temperature for all LLM calls
        codingTemperature *float64
        // LLM request stats
        llmReqTotal       int64
        llmSentBytesTotal int64
        llmRespTotal      int64
        llmRespBytesTotal int64
        startTime         time.Time
        // Small LRU cache for recent code completion outputs (keyed by context)
        compCache      map[string]string
        compCacheOrder []string // most-recent at end; cap ~10
        // Outgoing JSON-RPC id counter for server-initiated requests
        nextID int64
        // Minimum identifier chars required for manual invoke to bypass prefix checks
        manualInvokeMinPrefix int

        // Debounce and throttle settings
        completionDebounce time.Duration
        throttleInterval   time.Duration
        lastLLMCall        time.Time

        // Dispatch table for JSON-RPC methods → handler functions
        handlers map[string]func(Request)

        // Configurable trigger characters
        inlineOpen   string
        inlineClose  string
        chatSuffix   string
        chatPrefixes []string

        // Prompt templates
        // Completion
        promptCompSysGeneral  string
        promptCompSysParams   string
        promptCompSysInline   string
        promptCompUserGeneral string
        promptCompUserParams  string
        promptCompExtraHeader string
        // Provider-native code completion
        promptNativeCompletion string
        // In-editor chat
        promptChatSystem string
        // Code actions
        promptRewriteSystem     string
        promptDiagnosticsSystem string
        promptDocumentSystem    string
        promptRewriteUser       string
        promptDiagnosticsUser   string
        promptDocumentUser      string
        promptGoTestSystem      string
        promptGoTestUser        string
}

// ServerOptions collects configuration for NewServer to avoid long parameter lists.
type ServerOptions struct {
        LogContext       bool
        MaxTokens        int
        ContextMode      string
        WindowLines      int
        MaxContextTokens int

        Client                llm.Client
        TriggerCharacters     []string
        CodingTemperature     *float64
        ManualInvokeMinPrefix int
        CompletionDebounceMs  int
        CompletionThrottleMs  int

        // Inline/chat triggers
        InlineOpen   string
        InlineClose  string
        ChatSuffix   string
        ChatPrefixes []string

        // Prompt templates
        PromptCompSysGeneral    string
        PromptCompSysParams     string
        PromptCompSysInline     string
        PromptCompUserGeneral   string
        PromptCompUserParams    string
        PromptCompExtraHeader   string
        PromptNativeCompletion  string
        PromptChatSystem        string
        PromptRewriteSystem     string
        PromptDiagnosticsSystem string
        PromptDocumentSystem    string
        PromptRewriteUser       string
        PromptDiagnosticsUser   string
        PromptDocumentUser      string
        PromptGoTestSystem      string
        PromptGoTestUser        string
}

func NewServer(r io.Reader, w io.Writer, logger *log.Logger, opts ServerOptions) *Server <span class="cov10" title="7">{
        s := &amp;Server{in: bufio.NewReader(r), out: w, logger: logger, docs: make(map[string]*document), logContext: opts.LogContext}
        maxTokens := opts.MaxTokens
        if maxTokens &lt;= 0 </span><span class="cov9" title="6">{
                maxTokens = 500
        }</span>
        <span class="cov10" title="7">s.maxTokens = maxTokens
        contextMode := opts.ContextMode
        if contextMode == "" </span><span class="cov9" title="6">{
                contextMode = "file-on-new-func"
        }</span>
        <span class="cov10" title="7">windowLines := opts.WindowLines
        if windowLines &lt;= 0 </span><span class="cov9" title="6">{
                windowLines = 120
        }</span>
        <span class="cov10" title="7">maxContextTokens := opts.MaxContextTokens
        if maxContextTokens &lt;= 0 </span><span class="cov9" title="6">{
                maxContextTokens = 2000
        }</span>
        <span class="cov10" title="7">s.contextMode = contextMode
        s.windowLines = windowLines
        s.maxContextTokens = maxContextTokens

        s.startTime = time.Now()
        s.llmClient = opts.Client
        if len(opts.TriggerCharacters) == 0 </span><span class="cov10" title="7">{
                // Defaults (no space to avoid auto-trigger after whitespace)
                s.triggerChars = []string{".", ":", "/", "_", ")", "{"}
        }</span> else<span class="cov0" title="0"> {
                s.triggerChars = append([]string{}, opts.TriggerCharacters...)
        }</span>
        <span class="cov10" title="7">s.codingTemperature = opts.CodingTemperature
        s.compCache = make(map[string]string)
        s.manualInvokeMinPrefix = opts.ManualInvokeMinPrefix
        if opts.CompletionDebounceMs &gt; 0 </span><span class="cov1" title="1">{
                s.completionDebounce = time.Duration(opts.CompletionDebounceMs) * time.Millisecond
        }</span>
        <span class="cov10" title="7">if opts.CompletionThrottleMs &gt; 0 </span><span class="cov0" title="0">{
                s.throttleInterval = time.Duration(opts.CompletionThrottleMs) * time.Millisecond
        }</span>
        // Trigger character config (with sane defaults if missing)
        <span class="cov10" title="7">if strings.TrimSpace(opts.InlineOpen) == "" </span><span class="cov8" title="5">{
                s.inlineOpen = "&gt;"
        }</span> else<span class="cov4" title="2"> {
                s.inlineOpen = opts.InlineOpen
        }</span>
        <span class="cov10" title="7">if strings.TrimSpace(opts.InlineClose) == "" </span><span class="cov8" title="5">{
                s.inlineClose = "&gt;"
        }</span> else<span class="cov4" title="2"> {
                s.inlineClose = opts.InlineClose
        }</span>
        <span class="cov10" title="7">if strings.TrimSpace(opts.ChatSuffix) == "" </span><span class="cov7" title="4">{
                s.chatSuffix = "&gt;"
        }</span> else<span class="cov6" title="3"> {
                s.chatSuffix = opts.ChatSuffix
        }</span>
        <span class="cov10" title="7">if len(opts.ChatPrefixes) == 0 </span><span class="cov7" title="4">{
                s.chatPrefixes = []string{"?", "!", ":", ";"}
        }</span> else<span class="cov6" title="3"> {
                s.chatPrefixes = append([]string{}, opts.ChatPrefixes...)
        }</span>

        // Prompts
        <span class="cov10" title="7">s.promptCompSysGeneral = opts.PromptCompSysGeneral
        s.promptCompSysParams = opts.PromptCompSysParams
        s.promptCompSysInline = opts.PromptCompSysInline
        s.promptCompUserGeneral = opts.PromptCompUserGeneral
        s.promptCompUserParams = opts.PromptCompUserParams
        s.promptCompExtraHeader = opts.PromptCompExtraHeader
        s.promptNativeCompletion = opts.PromptNativeCompletion
        s.promptChatSystem = opts.PromptChatSystem
        s.promptRewriteSystem = opts.PromptRewriteSystem
        s.promptDiagnosticsSystem = opts.PromptDiagnosticsSystem
        s.promptDocumentSystem = opts.PromptDocumentSystem
        s.promptRewriteUser = opts.PromptRewriteUser
        s.promptDiagnosticsUser = opts.PromptDiagnosticsUser
        s.promptDocumentUser = opts.PromptDocumentUser
        s.promptGoTestSystem = opts.PromptGoTestSystem
        s.promptGoTestUser = opts.PromptGoTestUser

        // Assign package-level inline trigger chars for free helper functions
        if s.inlineOpen != "" </span><span class="cov10" title="7">{
                inlineOpenChar = s.inlineOpen[0]
        }</span>
        <span class="cov10" title="7">if s.inlineClose != "" </span><span class="cov10" title="7">{
                inlineCloseChar = s.inlineClose[0]
        }</span>
        <span class="cov10" title="7">if s.chatSuffix != "" </span><span class="cov10" title="7">{
                chatSuffixChar = s.chatSuffix[0]
        }</span>
        <span class="cov10" title="7">if len(s.chatPrefixes) &gt; 0 </span><span class="cov10" title="7">{
                chatPrefixSingles = append([]string{}, s.chatPrefixes...)
        }</span>
        // Initialize dispatch table
        <span class="cov10" title="7">s.handlers = map[string]func(Request){
                "initialize":               s.handleInitialize,
                "initialized":              func(_ Request) </span><span class="cov0" title="0">{ s.handleInitialized() }</span>,
                "shutdown":                 s.handleShutdown,
                "exit":                     func(_ Request) <span class="cov0" title="0">{ s.handleExit() }</span>,
                "textDocument/didOpen":     s.handleDidOpen,
                "textDocument/didChange":   s.handleDidChange,
                "textDocument/didClose":    s.handleDidClose,
                "textDocument/completion":  s.handleCompletion,
                "textDocument/codeAction":  s.handleCodeAction,
                "codeAction/resolve":       s.handleCodeActionResolve,
                "workspace/executeCommand": s.handleExecuteCommand,
        }
        <span class="cov10" title="7">return s</span>
}

func (s *Server) Run() error <span class="cov1" title="1">{
        for </span><span class="cov1" title="1">{
                body, err := s.readMessage()
                if err == io.EOF </span><span class="cov1" title="1">{
                        return nil
                }</span>
                <span class="cov0" title="0">if err != nil </span><span class="cov0" title="0">{
                        return err
                }</span>
                <span class="cov0" title="0">var req Request
                if err := json.Unmarshal(body, &amp;req); err != nil </span><span class="cov0" title="0">{
                        logging.Logf("lsp ", "invalid JSON: %v", err)
                        continue</span>
                }
                <span class="cov0" title="0">if req.Method == "" </span><span class="cov0" title="0">{
                        // A response from client; ignore
                        continue</span>
                }
                <span class="cov0" title="0">go s.handle(req)
                if s.exited </span><span class="cov0" title="0">{
                        return nil
                }</span>
        }
}
</pre>
		
		<pre class="file" id="file30" style="display: none">// Summary: LSP transport utilities to read and write JSON-RPC messages with Content-Length framing.
package lsp

import (
        "encoding/json"
        "fmt"
        "io"
        "net/textproto"
        "strconv"
        "strings"

        "codeberg.org/snonux/hexai/internal/logging"
)

func (s *Server) readMessage() ([]byte, error) <span class="cov3" title="2">{
        tp := textproto.NewReader(s.in)
        var contentLength int
        for </span><span class="cov4" title="3">{
                line, err := tp.ReadLine()
                if err != nil </span><span class="cov1" title="1">{
                        return nil, err
                }</span>
                <span class="cov3" title="2">if line == "" </span><span class="cov1" title="1">{ // end of headers
                        break</span>
                }
                <span class="cov1" title="1">parts := strings.SplitN(line, ":", 2)
                if len(parts) != 2 </span><span class="cov0" title="0">{
                        continue</span>
                }
                <span class="cov1" title="1">key := strings.TrimSpace(strings.ToLower(parts[0]))
                val := strings.TrimSpace(parts[1])
                switch key </span>{
                case "content-length":<span class="cov1" title="1">
                        n, err := strconv.Atoi(val)
                        if err != nil </span><span class="cov0" title="0">{
                                return nil, fmt.Errorf("invalid Content-Length: %v", err)
                        }</span>
                        <span class="cov1" title="1">contentLength = n</span>
                }
        }
        <span class="cov1" title="1">if contentLength &lt;= 0 </span><span class="cov0" title="0">{
                return nil, fmt.Errorf("missing or invalid Content-Length")
        }</span>
        <span class="cov1" title="1">buf := make([]byte, contentLength)
        if _, err := io.ReadFull(s.in, buf); err != nil </span><span class="cov0" title="0">{
                return nil, err
        }</span>
        <span class="cov1" title="1">return buf, nil</span>
}

func (s *Server) writeMessage(v any) <span class="cov10" title="18">{
        data, err := json.Marshal(v)
        if err != nil </span><span class="cov0" title="0">{
                logging.Logf("lsp ", "marshal error: %v", err)
                return
        }</span>
        <span class="cov10" title="18">header := fmt.Sprintf("Content-Length: %d\r\n\r\n", len(data))
        if _, err := io.WriteString(s.out, header); err != nil </span><span class="cov0" title="0">{
                logging.Logf("lsp ", "write header error: %v", err)
                return
        }</span>
        <span class="cov10" title="18">if _, err := s.out.Write(data); err != nil </span><span class="cov0" title="0">{
                logging.Logf("lsp ", "write body error: %v", err)
                return
        }</span>
}
</pre>
		
		<pre class="file" id="file31" style="display: none">package testutil

// MultilineDocBlock returns a realistic multi-line documentation block.
func MultilineDocBlock() string <span class="cov8" title="1">{
        return "// add adds two numbers\n// returns their sum"
}</span>

// MultilineChatReply returns a multi-line assistant reply for chat tests.
func MultilineChatReply() string <span class="cov8" title="1">{
        return "Hello, world!\nThis is a multi-line reply."
}</span>

// MultilineFunctionSuggestion returns a more realistic multi-line function body suggestion.
func MultilineFunctionSuggestion() string <span class="cov8" title="1">{
        return "(ctx context.Context, input string) (*CustData, error) {\n    // TODO: implement\n    return &amp;CustData{}, nil\n}"
}</span>

// MarkdownCodeFence returns a fenced markdown snippet used in post-processing tests.
func MarkdownCodeFence() string <span class="cov8" title="1">{
        return "```go\nname := value\n```"
}</span>

// MalformedJSON returns a deliberately malformed JSON string.
func MalformedJSON() string <span class="cov8" title="1">{
        return "{\"choices\":[{\"delta\":{\"content\":\"oops\"}}]"
}</span>
</pre>
		
		<pre class="file" id="file32" style="display: none">package textutil

import "strings"

// RenderTemplate performs simple {{var}} replacement in a template string.
func RenderTemplate(t string, vars map[string]string) string <span class="cov8" title="45">{
    if t == "" || len(vars) == 0 </span><span class="cov5" title="11">{
        return t
    }</span>
    <span class="cov7" title="34">out := t
    for k, v := range vars </span><span class="cov9" title="93">{
        out = strings.ReplaceAll(out, "{{"+k+"}}", v)
    }</span>
    <span class="cov7" title="34">return out</span>
}

// StripCodeFences removes surrounding Markdown triple-backtick fences.
func StripCodeFences(s string) string <span class="cov8" title="51">{
    t := strings.TrimSpace(s)
    if t == "" </span><span class="cov0" title="0">{
        return t
    }</span>
    <span class="cov8" title="51">lines := strings.Split(t, "\n")
    start := 0
    for start &lt; len(lines) &amp;&amp; strings.TrimSpace(lines[start]) == "" </span><span class="cov0" title="0">{
        start++
    }</span>
    <span class="cov8" title="51">end := len(lines) - 1
    for end &gt;= 0 &amp;&amp; strings.TrimSpace(lines[end]) == "" </span><span class="cov0" title="0">{
        end--
    }</span>
    <span class="cov8" title="51">if start &gt;= len(lines) || end &lt; 0 || start &gt; end </span><span class="cov0" title="0">{
        return t
    }</span>
    <span class="cov8" title="51">first := strings.TrimSpace(lines[start])
    last := strings.TrimSpace(lines[end])
    if strings.HasPrefix(first, "```") &amp;&amp; last == "```" &amp;&amp; end &gt; start </span><span class="cov6" title="20">{
        inner := strings.Join(lines[start+1:end], "\n")
        return inner
    }</span>
    <span class="cov7" title="31">return t</span>
}

// InstructionFromSelection extracts the first inline instruction and returns
// (instruction, cleanedSelection). It detects markers on the earliest position
// per line in precedence: strict ;text;, /* */, &lt;!-- --&gt;, //, #, --.
func InstructionFromSelection(sel string) (string, string) <span class="cov6" title="14">{
    lines := strings.Split(sel, "\n")
    for idx, line := range lines </span><span class="cov6" title="14">{
        if instr, cleaned, ok := FindFirstInstructionInLine(line); ok &amp;&amp; strings.TrimSpace(instr) != "" </span><span class="cov6" title="14">{
            lines[idx] = cleaned
            return instr, strings.Join(lines, "\n")
        }</span>
    }
    <span class="cov0" title="0">return "", sel</span>
}

// FindFirstInstructionInLine returns (instruction, cleaned, ok) for a single line.
func FindFirstInstructionInLine(line string) (instr, cleaned string, ok bool) <span class="cov6" title="15">{
    type cand struct{ start, end int; text string }
    cands := []cand{}
    if t, l, r, ok := FindStrictInlineTag(line); ok </span><span class="cov4" title="5">{
        cands = append(cands, cand{start: l, end: r, text: t})
    }</span>
    <span class="cov6" title="15">if i := strings.Index(line, "/*"); i &gt;= 0 </span><span class="cov2" title="2">{
        if j := strings.Index(line[i+2:], "*/"); j &gt;= 0 </span><span class="cov2" title="2">{
            start := i
            end := i + 2 + j + 2
            text := strings.TrimSpace(line[i+2 : i+2+j])
            cands = append(cands, cand{start: start, end: end, text: text})
        }</span>
    }
    <span class="cov6" title="15">if i := strings.Index(line, "&lt;!--"); i &gt;= 0 </span><span class="cov2" title="2">{
        if j := strings.Index(line[i+4:], "--&gt;"); j &gt;= 0 </span><span class="cov2" title="2">{
            start := i
            end := i + 4 + j + 3
            text := strings.TrimSpace(line[i+4 : i+4+j])
            cands = append(cands, cand{start: start, end: end, text: text})
        }</span>
    }
    <span class="cov6" title="15">if i := strings.Index(line, "//"); i &gt;= 0 </span><span class="cov3" title="3">{
        cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+2:])})
    }</span>
    <span class="cov6" title="15">if i := strings.Index(line, "#"); i &gt;= 0 </span><span class="cov2" title="2">{
        cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+1:])})
    }</span>
    <span class="cov6" title="15">if i := strings.Index(line, "--"); i &gt;= 0 </span><span class="cov3" title="4">{
        cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+2:])})
    }</span>
    <span class="cov6" title="15">if len(cands) == 0 </span><span class="cov0" title="0">{ return "", line, false }</span>
    <span class="cov6" title="15">best := cands[0]
    for _, c := range cands[1:] </span><span class="cov3" title="3">{
        if c.start &gt;= 0 &amp;&amp; (best.start &lt; 0 || c.start &lt; best.start) </span><span class="cov0" title="0">{ best = c }</span>
    }
    <span class="cov6" title="15">cleaned = strings.TrimRight(line[:best.start]+line[best.end:], " \t")
    return best.text, cleaned, true</span>
}

// FindStrictInlineTag finds ;text; with no spaces after/before semicolons.
func FindStrictInlineTag(line string) (text string, left, right int, ok bool) <span class="cov6" title="17">{
    for i := 0; i &lt; len(line); i++ </span><span class="cov10" title="113">{
        if line[i] != ';' </span><span class="cov9" title="105">{ continue</span> }
        <span class="cov4" title="8">if i+1 &lt; len(line) &amp;&amp; line[i+1] == ' ' </span><span class="cov1" title="1">{ continue</span> }
        <span class="cov4" title="7">for j := i + 1; j &lt; len(line); j++ </span><span class="cov8" title="41">{
            if line[j] == ';' </span><span class="cov4" title="6">{
                if j-1 &gt;= 0 &amp;&amp; line[j-1] == ' ' </span><span class="cov0" title="0">{ continue</span> }
                <span class="cov4" title="6">inner := strings.TrimSpace(line[i+1 : j])
                if inner != "" </span><span class="cov4" title="6">{ return inner, i, j + 1, true }</span>
            }
        }
    }
    <span class="cov5" title="11">return "", -1, -1, false</span>
}

</pre>
		
		<pre class="file" id="file33" style="display: none">package tmux

import (
    "os"
    "os/exec"
    "strconv"
    "strings"
)

// Available reports whether tmux is available and we appear to be in a tmux session.
func Available() bool <span class="cov2" title="2">{ return HasBinary() &amp;&amp; InSession() }</span>

// HasBinary reports whether the tmux binary is on PATH.
var lookPath = exec.LookPath
var command = exec.Command

func HasBinary() bool <span class="cov4" title="4">{ _, err := lookPath("tmux"); return err == nil }</span>

// InSession reports whether we seem to be running inside a tmux session.
func InSession() bool <span class="cov4" title="3">{ return strings.TrimSpace(os.Getenv("TMUX")) != "" }</span>

// SplitOpts controls how a new pane is created for running a command.
type SplitOpts struct {
        Target   string // optional pane target, e.g. ":."
        Vertical bool   // true =&gt; split vertically (-v); false =&gt; horizontally (-h)
        Percent  int    // 1..100; 0 means use tmux default
}

// SplitRun splits the current tmux window and runs argv in the new pane.
// It returns once tmux has launched the child process.
func SplitRun(opts SplitOpts, argv []string) error <span class="cov1" title="1">{
        if len(argv) == 0 </span><span class="cov0" title="0">{
                return nil
        }</span>
        <span class="cov1" title="1">args := []string{"split-window"}
        if opts.Vertical </span><span class="cov1" title="1">{
                args = append(args, "-v")
        }</span> else<span class="cov0" title="0"> {
                args = append(args, "-h")
        }</span>
        <span class="cov1" title="1">if opts.Percent &gt; 0 &amp;&amp; opts.Percent &lt;= 100 </span><span class="cov1" title="1">{
                args = append(args, "-p", strconv.Itoa(opts.Percent))
        }</span>
        <span class="cov1" title="1">if strings.TrimSpace(opts.Target) != "" </span><span class="cov1" title="1">{
                args = append(args, "-t", opts.Target)
        }</span>
        // tmux takes a single command string. Use a conservative shell join.
        <span class="cov1" title="1">cmdStr := shellJoin(argv)
        args = append(args, cmdStr)
    c := command("tmux", args...)
    return c.Run()</span>
}

// shellJoin quotes argv elements for safe use in a single shell command string.
// It avoids interpretation by wrapping in single quotes and escaping embedded single quotes.
func shellJoin(argv []string) string <span class="cov1" title="1">{
        out := make([]string, 0, len(argv))
        for _, a := range argv </span><span class="cov4" title="4">{
                if a == "" </span><span class="cov0" title="0">{
                        out = append(out, "''")
                        continue</span>
                }
                <span class="cov4" title="4">if isSafeBare(a) </span><span class="cov2" title="2">{
                        out = append(out, a)
                        continue</span>
                }
                // single-quote wrapping with escaped single quotes
                // ' =&gt; '\'' (close, escaped quote, reopen)
                <span class="cov2" title="2">esc := strings.ReplaceAll(a, "'", "'\\''")
                out = append(out, "'"+esc+"'")</span>
        }
        <span class="cov1" title="1">return strings.Join(out, " ")</span>
}

// isSafeBare returns true if a contains only safe characters for bare words.
func isSafeBare(s string) bool <span class="cov4" title="4">{
        for i := 0; i &lt; len(s); i++ </span><span class="cov10" title="27">{
                b := s[i]
                if (b &gt;= 'a' &amp;&amp; b &lt;= 'z') || (b &gt;= 'A' &amp;&amp; b &lt;= 'Z') || (b &gt;= '0' &amp;&amp; b &lt;= '9') || b == '-' || b == '_' || b == '.' || b == '/' || b == ':' </span><span class="cov9" title="25">{
                        continue</span>
                }
                <span class="cov2" title="2">return false</span>
        }
        <span class="cov2" title="2">return true</span>
}
</pre>
		
		</div>
	</body>
	<script>
	(function() {
		var files = document.getElementById('files');
		var visible;
		files.addEventListener('change', onChange, false);
		function select(part) {
			if (visible)
				visible.style.display = 'none';
			visible = document.getElementById(part);
			if (!visible)
				return;
			files.value = part;
			visible.style.display = 'block';
			location.hash = part;
		}
		function onChange() {
			select(files.value);
			window.scrollTo(0, 0);
		}
		if (location.hash != "") {
			select(location.hash.substr(1));
		}
		if (!visible) {
			select("file0");
		}
	})();
	</script>
</html>