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
pub mod autocomplete_glue;
pub mod backend;
pub mod markdown;
pub mod nvim_rpc;
pub mod parse_incremental;
pub mod snapshot;
pub mod view;
mod vim;
pub mod widener_metrics;
pub mod word_wrap;
use arboard::Clipboard;
use ratatui::Frame;
use ratatui::crossterm::event::{KeyCode, KeyModifiers, MouseButton, MouseEventKind};
use ratatui::layout::Rect;
use ratatui::style::{Modifier, Style};
use ratatui::text::{Line, Span};
use ratatui::widgets::Paragraph;
use ratatui_textarea::{CursorMove, DataCursor, TextArea};
use std::num::NonZeroU64;
/// Convert `TextArea::cursor()` from the library's `DataCursor` newtype to a
/// plain `(row, col)` tuple — the neutral interchange type shared with the
/// Nvim backend (whose `NvimSnapshot::cursor` is already a tuple).
pub(crate) fn cursor_tuple(ta: &TextArea<'_>) -> (usize, usize) {
let DataCursor(r, c) = ta.cursor();
(r, c)
}
/// Build an `EditorSnapshot` from the editor's backend + content
/// revision. Free function (not a method on `TextEditorComponent`) so
/// production callers that need to mutate other fields of
/// `TextEditorComponent` afterwards can pass `&self.backend` and
/// `self.content_revision` directly — the borrow checker can split
/// borrows across distinct fields but not across method calls.
fn snapshot_from_backend(
backend: &BackendState,
content_revision: NonZeroU64,
) -> EditorSnapshot<'_> {
match backend {
BackendState::Textarea(tb) => {
let cursor = cursor_tuple(&tb.ta);
EditorSnapshot::borrowed(tb.ta.lines(), cursor, content_revision)
}
BackendState::Nvim(nvim) => {
let snap = nvim.snapshot();
let lines_len = snap.lines.len();
let cursor_row = if lines_len == 0 {
0
} else {
snap.cursor.0.min(lines_len - 1)
};
let cursor = (cursor_row, snap.cursor.1);
let lines = snap.lines.clone();
let rev = NonZeroU64::new(snap.content_gen.saturating_add(1))
.unwrap_or_else(|| NonZeroU64::new(1).unwrap());
drop(snap);
EditorSnapshot::owned(lines, cursor, rev)
}
}
}
/// Returns true if any autocomplete trigger char (`[` for `[[wikilink`,
/// `#` for `#hashtag`) appears between the start of `line` and the
/// cursor's char column. Walks backwards from the cursor so the common
/// "user just typed inside a trigger" case short-circuits quickly. The
/// scan stays within one row because triggers can't cross a newline.
///
/// UTF-8 safe: takes a char column and never slices on a byte that is
/// not a codepoint boundary. Wikilinks can contain spaces
/// (`[[my note title`), so the walk does NOT stop at whitespace — only
/// the trigger char or start-of-row halts it.
fn has_trigger_before_cursor(line: &str, col: usize) -> bool {
let cursor_byte = line
.char_indices()
.nth(col)
.map(|(b, _)| b)
.unwrap_or(line.len());
line[..cursor_byte]
.chars()
.rev()
.any(|c| c == '[' || c == '#')
}
/// Move or extend the selection by `movement`.
///
/// If `shift` is held and no selection is currently active, anchors the selection
/// first; otherwise the existing anchor is kept. Without `shift`, any active
/// selection is cancelled before the cursor moves.
macro_rules! cursor_move {
($ta:expr, $mv:expr, $shift:expr) => {{
if $shift {
if $ta.selection_range().is_none() {
$ta.start_selection();
}
} else {
$ta.cancel_selection();
}
$ta.move_cursor($mv);
}};
}
use self::backend::BackendState;
use self::markdown::ParsedBuffer;
use self::snapshot::{EditorMode, EditorSnapshot};
use self::view::MarkdownEditorView;
use crate::util::single_slot_task::SingleSlotTask;
/// If `marker` is an ordered-list marker like `"3. "`, returns the next marker
/// (`"4. "`). Returns `None` for unordered markers or unrecognized input.
fn increment_ordered_marker(marker: &str) -> Option<String> {
let trimmed = marker.trim_end_matches(' ');
let dot = trimmed.strip_suffix('.')?;
let n: u32 = dot.parse().ok()?;
Some(format!("{}. ", n + 1))
}
/// Convert a 0-based character column into a byte offset within `line`.
/// Out-of-range columns return `line.len()`.
fn char_col_to_byte(line: &str, char_col: usize) -> usize {
line.char_indices()
.nth(char_col)
.map(|(b, _)| b)
.unwrap_or(line.len())
}
/// Returns the text covered by the textarea's current selection, or `None` if
/// there is no selection or the range is empty.
///
/// `selection_range()` returns char-column coordinates, so they must be
/// converted to byte offsets before slicing to support multi-byte UTF-8 text.
fn selection_text(ta: &TextArea<'_>) -> Option<String> {
let ((sr, sc), (er, ec)) = ta.selection_range()?;
if sr == er && sc == ec {
return None;
}
let lines = ta.lines();
Some(if sr == er {
let line = &lines[sr];
let sb = char_col_to_byte(line, sc);
let eb = char_col_to_byte(line, ec);
line[sb..eb].to_string()
} else {
let first = &lines[sr];
let sb = char_col_to_byte(first, sc);
let mut parts = vec![first[sb..].to_string()];
for line in &lines[(sr + 1)..er] {
parts.push(line.clone());
}
let last = &lines[er];
let eb = char_col_to_byte(last, ec);
parts.push(last[..eb].to_string());
parts.join("\n")
})
}
/// Auto-surround pair for `c`: typing an opening pair character or a
/// symmetric one while a selection is active wraps the selection instead of
/// replacing it. Closing characters return `None` — they replace, like any
/// other key. See CONTEXT.md "Auto-surround".
fn surround_pair(c: char) -> Option<(&'static str, &'static str)> {
match c {
'(' => Some(("(", ")")),
'[' => Some(("[", "]")),
'{' => Some(("{", "}")),
'<' => Some(("<", ">")),
'"' => Some(("\"", "\"")),
'\'' => Some(("'", "'")),
'`' => Some(("`", "`")),
'*' => Some(("*", "*")),
'_' => Some(("_", "_")),
'~' => Some(("~", "~")),
_ => None,
}
}
/// Re-establishes the textarea selection over `start..end` (char-based data
/// coordinates, as returned by `selection_range`). `Jump` clamps, so the
/// saturating casts degrade gracefully on pathologically large buffers.
fn set_selection(ta: &mut TextArea<'_>, start: (usize, usize), end: (usize, usize)) {
let jump = |(row, col): (usize, usize)| {
CursorMove::Jump(
u16::try_from(row).unwrap_or(u16::MAX),
u16::try_from(col).unwrap_or(u16::MAX),
)
};
ta.cancel_selection();
ta.move_cursor(jump(start));
ta.start_selection();
ta.move_cursor(jump(end));
}
/// Owned RGBA image data lifted from the system clipboard. Returned by
/// [`TextEditorComponent::take_clipboard_image`] so the screen layer can
/// encode + persist without holding the editor's clipboard borrow.
#[derive(Debug, Clone)]
pub struct ClipboardImage {
pub width: usize,
pub height: usize,
pub rgba: Vec<u8>,
}
/// Schemes the paste-over-selection flow recognises as "linkable" — broader
/// than `core::note::scan::is_remote_url` (http/https only) because users routinely paste
/// `mailto:` and FTP links and expect them wrapped as markdown links too.
const LINKABLE_PASTE_SCHEMES: &[&str] = &["http", "https", "ftp", "ftps", "mailto"];
fn linkable_url(s: &str) -> Option<&str> {
kimun_core::note::scan::url_with_allowed_scheme(s, LINKABLE_PASTE_SCHEMES)
}
/// If `clip` is a linkable URL and `selection` is non-empty, returns
/// `Some("[escaped_selection](url)")`. Otherwise returns `None`, signalling the
/// caller to insert `clip` verbatim.
fn try_build_markdown_link(clip: &str, selection: Option<&str>) -> Option<String> {
let url = linkable_url(clip)?;
let sel = selection.filter(|s| !s.is_empty())?;
let escaped = sel.replace('\\', r"\\").replace(']', r"\]");
Some(format!("[{escaped}]({url})"))
}
use std::sync::Arc;
use kimun_core::NoteVault;
use crate::components::Component;
use crate::components::autocomplete::{
self, AutocompleteController, AutocompleteHost, AutocompleteMode, HandleKeyOutcome,
};
use crate::components::event_state::EventState;
use crate::components::events::AppEvent;
use crate::components::events::AppTx;
use crate::components::events::InputEvent;
use crate::components::events::redraw_callback;
use crate::components::single_line_input::{InputOutcome, SingleLineInput};
use crate::components::text_editor::autocomplete_glue::apply_accept_to_textarea;
use crate::keys::KeyBindings;
use crate::keys::action_shortcuts::TextAction;
use crate::settings::AppSettings;
use crate::settings::themes::Theme;
/// The resolved target of a cursor follow-link action.
#[derive(Debug, Clone, PartialEq)]
pub enum LinkTarget {
/// A note reference (wiki-link or markdown link) with the raw target string.
Note(String),
/// A hashtag label with the name **without** the leading `#`.
Label(String),
}
struct SearchState {
input: SingleLineInput,
status: SearchStatus,
}
enum SearchStatus {
Empty,
Match,
NoMatch,
Invalid(String),
}
impl SearchStatus {
fn from_found(found: bool) -> Self {
if found { Self::Match } else { Self::NoMatch }
}
}
const FIND_PROMPT: &str = "Find: ";
const FIND_HINTS: &str = " [Enter] next [Shift+Enter] prev [Esc] close";
fn render_search_bar(
f: &mut Frame,
rect: Rect,
state: &mut SearchState,
theme: &Theme,
focused: bool,
) {
let base = theme.base_style();
let muted = Style::default()
.fg(theme.gray.to_ratatui())
.bg(theme.bg.to_ratatui());
let err = Style::default()
.fg(theme.red.to_ratatui())
.bg(theme.bg.to_ratatui());
let prompt_cols = unicode_width::UnicodeWidthStr::width(FIND_PROMPT) as u16;
// Tail sits after the full value (in display columns, accounting for
// wide/CJK chars), not after the caret — otherwise it would overlap the
// trailing characters when the user moves the cursor mid-string.
let value_total_cols = state.input.display_width() as u16;
let tail: Option<(String, Style)> = match &state.status {
SearchStatus::Empty => None,
SearchStatus::Match => Some((FIND_HINTS.to_string(), muted)),
SearchStatus::NoMatch => Some((" no match".to_string(), err)),
SearchStatus::Invalid(msg) => Some((format!(" invalid regex: {msg}"), err)),
};
f.render_widget(
Paragraph::new(Line::from(Span::styled(
FIND_PROMPT,
base.add_modifier(Modifier::BOLD),
)))
.style(base),
Rect {
width: prompt_cols.min(rect.width),
..rect
},
);
state.input.render(f, rect, base, prompt_cols, focused);
if let Some((text, style)) = tail {
let consumed = prompt_cols.saturating_add(value_total_cols);
let tail_rect = Rect {
x: rect.x.saturating_add(consumed),
width: rect.width.saturating_sub(consumed),
..rect
};
f.render_widget(Paragraph::new(text).style(style), tail_rect);
}
}
/// Snapshot used to satisfy `AutocompleteHost`. Wraps an
/// `EditorSnapshot` (Cow-borrowed from the textarea on the common
/// path — perf #8) plus the cursor's last-rendered screen
/// position. The host's `cache_key` mirrors the editor's
/// `content_revision`; `None` is reserved for hosts whose buffer
/// has no stable identity (the search-box modal).
struct EditorHostSnapshot<'a> {
snap: EditorSnapshot<'a>,
cursor_screen: Option<(u16, u16)>,
cache_key: Option<NonZeroU64>,
}
impl<'a> AutocompleteHost for EditorHostSnapshot<'a> {
fn buffer_snapshot(&self) -> EditorSnapshot<'_> {
// Re-package the inner snap as a fresh borrowed view tied
// to `&self`. `Cow::as_ref` works for both Borrowed and
// Owned variants — the latter only occurs on the Nvim path
// where the inner snapshot already paid the clone cost.
EditorSnapshot::borrowed(
self.snap.lines.as_ref(),
self.snap.cursor,
self.snap.content_revision,
)
}
fn cache_key(&self) -> Option<NonZeroU64> {
self.cache_key
}
fn screen_anchor_for(&self, _byte_offset: usize) -> Option<(u16, u16)> {
// Anchor at the cursor's last-rendered screen position. The
// controller passes `anchor_col` (byte offset of the start of
// the typed query) but visually anchoring at the cursor is
// fine — the popup sits adjacent to the typed text either way
// and avoids re-walking the wrap layout for an arbitrary byte
// offset.
//
// When `cursor_screen` is None (no prior render — e.g. the
// user opens a note and types `[[` before the first frame),
// return a placeholder so the controller still opens the
// popup. The editor's render path skips drawing it until
// `view.last_cursor_screen` is available, then re-anchors and
// draws with the correct position.
Some(self.cursor_screen.unwrap_or((0, 0)))
}
}
/// Free-function builder for `EditorHostSnapshot`. Production
/// callers pass `&self.backend`, `self.content_revision`,
/// `self.view.last_cursor_screen` directly so the borrow checker
/// can split borrows from `&mut self.autocomplete`. Returns `None`
/// on the Nvim backend (autocomplete is Textarea-only).
fn build_editor_host_snapshot<'a>(
backend: &'a BackendState,
content_revision: NonZeroU64,
cursor_screen: Option<(u16, u16)>,
) -> Option<EditorHostSnapshot<'a>> {
if !backend.is_textarea() {
return None;
}
Some(EditorHostSnapshot {
snap: snapshot_from_backend(backend, content_revision),
cursor_screen,
cache_key: Some(content_revision),
})
}
/// Snapshot of the textarea backend used to classify a key event as a
/// text edit (text differs) vs. a pure cursor move (text same, cursor
/// moved) vs. a no-op (both same).
pub struct TextEditorComponent {
backend: BackendState,
/// Tracks the rendered rect to map mouse click coordinates.
rect: Rect,
key_bindings: KeyBindings,
/// `content_revision` snapshot that matches the on-disk content.
/// `Some(content_revision)` after a successful save (or after
/// `set_text` loaded a note); `None` when the saved snapshot
/// diverges from the current buffer. Compared against
/// `content_revision` by `is_dirty()` so the per-frame title bar
/// avoids materialising the buffer and so cursor moves (which bump
/// `edit_generation` but not `content_revision`) don't flag the
/// buffer as dirty.
saved_content_rev: Option<NonZeroU64>,
view: MarkdownEditorView,
/// Incremented on every input event that may affect rendering — text
/// edits AND cursor/selection moves. Drives view-cache invalidation in
/// non-perf-critical paths; do NOT use for dirty tracking (cursor moves
/// bump this too).
edit_generation: u64,
/// Incremented only when the buffer text actually changes (insert,
/// delete, paste, undo/redo, autocomplete accept). Cursor-only
/// shortcuts (arrows, Home/End, select-all) do NOT bump this. On
/// the Nvim backend, `handle_key` does not bump either — the
/// reverse-refresh task in `backend.rs` sees `snap.lines` change
/// and bumps `snap.content_gen`; the editor mirrors that value
/// into `content_revision` at the render sync point. Consumers:
/// - `handle_input` diffs it across a key event to classify the
/// event as a text edit vs. a cursor move without materialising
/// the buffer.
/// - `view.update()` uses the value as the cache-invalidation
/// key, so arrow-key navigation reuses the per-line parse cache
/// instead of rebuilding it.
/// - `AutocompleteHost::content_revision` exposes it as a
/// `NonZeroU64` cache key.
/// - `mark_saved_at_revision` / `is_dirty` use it as the
/// save-correlation token; navigation keys never invalidate a
/// save in flight.
///
/// `NonZeroU64` because `Option<NonZeroU64>` is the cleanest way
/// to express "no cacheable revision" without a magic-value
/// sentinel and without a separate field.
content_revision: NonZeroU64,
/// Current selection range in logical (row, byte-col) coordinates.
/// Only tracked for the Textarea backend; always `None` for Nvim.
selection: Option<((usize, usize), (usize, usize))>,
/// System clipboard handle. `None` if the clipboard is unavailable (e.g. headless CI).
clipboard: Option<Clipboard>,
/// `true` after a `Z` keypress in Normal mode; cleared on the next key.
/// Lets us intercept `ZZ` (write+quit) and `ZQ` (quit) without forwarding them to nvim.
nvim_pending_z: bool,
/// Active Ctrl+F find bar; `None` when not searching.
search: Option<SearchState>,
/// Wikilink/hashtag autocomplete. Only populated for the textarea
/// backend after `set_vault` is called; remains `None` for the Nvim
/// backend (nvim users have their own completion ecosystem).
autocomplete: Option<AutocompleteController>,
/// Vault handle stored at `set_vault` time. Kept even on the Nvim
/// backend so `maybe_recover_from_dead_nvim` can spin up the
/// autocomplete controller after the fallback to Textarea.
autocomplete_vault: Option<Arc<NoteVault>>,
/// Whether the autocomplete controller's redraw callback has been
/// bound to the app event bus. Bound lazily on the first
/// `handle_input` because `AppTx` is not available at
/// construction.
autocomplete_redraw_bound: bool,
/// Background full-parse fallback for large buffers (perf #9).
/// The view installs a placeholder `ParsedBuffer` and signals
/// pending; this slot owns the spawned tokio task that runs
/// the real `ParsedBuffer::parse`. `SingleSlotTask` aborts the
/// previous spawn on a fresh edit, so a burst of edits resolves
/// against the latest content.
full_parse_task: SingleSlotTask<()>,
/// Set by a right-click with no selection: the host (which owns the note
/// path) opens the note's context menu and clears the flag.
pub wants_context_menu: bool,
/// Lowercased needles to emphasize in the rendered buffer — set when the
/// note was opened from a query result (spec §5.1 "search match"), and
/// dropped on the first edit (`needles_revision` mismatch).
search_needles: Vec<String>,
/// The content revision `search_needles` was set against.
needles_revision: Option<NonZeroU64>,
full_parse_tx: tokio::sync::mpsc::UnboundedSender<(u64, ParsedBuffer)>,
full_parse_rx: tokio::sync::mpsc::UnboundedReceiver<(u64, ParsedBuffer)>,
/// `AppTx` clone bound the first time `handle_input` runs, so the
/// spawned full-parse task can post `AppEvent::Redraw` on
/// completion without waiting for the next user keystroke.
redraw_tx: Option<AppTx>,
}
impl TextEditorComponent {
pub fn new(key_bindings: KeyBindings, settings: &AppSettings) -> Self {
let (full_parse_tx, full_parse_rx) = tokio::sync::mpsc::unbounded_channel();
Self {
backend: BackendState::from_settings(
&settings.editor_backend,
settings.nvim_path.as_ref(),
),
rect: Rect::default(),
key_bindings,
saved_content_rev: NonZeroU64::new(1),
view: MarkdownEditorView::new(),
edit_generation: 0,
content_revision: NonZeroU64::new(1).unwrap(),
selection: None,
clipboard: Clipboard::new().ok(),
nvim_pending_z: false,
search: None,
autocomplete: None,
autocomplete_vault: None,
autocomplete_redraw_bound: false,
full_parse_task: SingleSlotTask::empty(),
wants_context_menu: false,
search_needles: Vec::new(),
needles_revision: None,
full_parse_tx,
full_parse_rx,
redraw_tx: None,
}
}
/// Attach a vault so autocomplete can query notes/tags. Activates
/// the controller immediately on the textarea backend; on Nvim, the
/// vault is stashed and the controller is spun up later if
/// `maybe_recover_from_dead_nvim` falls back to Textarea.
pub fn set_vault(&mut self, vault: Arc<NoteVault>) {
self.autocomplete_vault = Some(vault.clone());
if self.backend.is_textarea() {
self.autocomplete = Some(AutocompleteController::new(
std::sync::Arc::new(crate::components::search_list::VaultSuggestions { vault }),
AutocompleteMode::Both,
));
}
}
/// Spin up the autocomplete controller if a vault was previously
/// stashed and the controller isn't already running. Called after
/// the Nvim → Textarea fallback so the post-crash session has the
/// popup available.
fn ensure_autocomplete_for_textarea(&mut self) {
if self.autocomplete.is_some() {
return;
}
if !self.backend.is_textarea() {
return;
}
let Some(vault) = self.autocomplete_vault.clone() else {
return;
};
self.autocomplete = Some(AutocompleteController::new(
std::sync::Arc::new(crate::components::search_list::VaultSuggestions { vault }),
AutocompleteMode::Both,
));
// Fresh controller — `bind_autocomplete_redraw` must rebind
// on the next handle_input.
self.autocomplete_redraw_bound = false;
}
/// Build a snapshot view of the editor state for the autocomplete
/// controller. Method form wraps `build_editor_host_snapshot` for
/// callers that do not need to split borrows; production hot
/// paths (`refresh_autocomplete_if_open`, `sync_autocomplete`)
/// inline the free function instead so `&self.backend` and
/// `&mut self.autocomplete` can coexist.
#[allow(dead_code)]
fn autocomplete_host_snapshot(&self) -> Option<EditorHostSnapshot<'_>> {
build_editor_host_snapshot(
&self.backend,
self.content_revision,
self.view.last_cursor_screen,
)
}
/// Pull the latest async query results into the popup state. Called
/// once per render before drawing the overlay.
fn poll_autocomplete(&mut self) {
if let Some(controller) = self.autocomplete.as_mut() {
controller.poll_results();
}
}
/// Cheap cursor read — `None` for the Nvim backend. Used by `handle_input`
/// to diff cursor position across a key event without materialising the
/// whole buffer.
fn textarea_cursor(&self) -> Option<(usize, usize)> {
let ta = self.backend.as_textarea()?;
Some(cursor_tuple(ta))
}
fn refresh_autocomplete_if_open(&mut self) {
// No controller (e.g. Nvim backend) or popup closed → nothing to refresh.
if !self.autocomplete.as_ref().is_some_and(|c| c.is_open()) {
return;
}
// Inline the snapshot via the free function so `&self.backend`
// (the snapshot's borrow source) and `&mut self.autocomplete`
// (the controller below) can coexist via field-disjoint borrows.
let Some(snapshot) = build_editor_host_snapshot(
&self.backend,
self.content_revision,
self.view.last_cursor_screen,
) else {
self.close_autocomplete();
return;
};
if let Some(controller) = self.autocomplete.as_mut() {
controller.refresh_if_open(&snapshot);
}
}
/// Recompute the popup's trigger context from the current buffer and
/// cursor. Call after any mutating key handle (typed letter, paste,
/// backspace, cursor movement, etc.).
fn sync_autocomplete(&mut self) {
let Some(controller) = self.autocomplete.as_ref() else {
return; // Nvim backend or no controller
};
// Fast-path bail: when the popup is closed AND no trigger character
// appears between the cursor and the start of the current row, no
// reconcile can open a popup. Skip the expensive buffer snapshot +
// pulldown-cmark scan.
//
// Trigger chars: `[` (for `[[wikilink`) and `#` (for `#hashtag`).
// Wikilinks can contain spaces (`[[my note title`), so the scan
// walks back to the start of the row, not to the nearest whitespace.
// The walk short-circuits on the first trigger char, so for typical
// lines it touches only a handful of chars before bailing or
// promoting to the slow path. Using `char_indices().rev()` keeps
// the walk UTF-8-safe — never slices mid-codepoint.
if !controller.is_open() {
let Some(ta) = self.backend.as_textarea() else {
return;
};
let (row, col) = cursor_tuple(ta);
let line = ta.lines().get(row).map(|s| s.as_str()).unwrap_or("");
if !has_trigger_before_cursor(line, col) {
return;
}
}
// Slow path: build the borrowed snapshot for the controller to
// reconcile. Free function so `&self.backend` and
// `&mut self.autocomplete` can coexist.
let Some(snapshot) = build_editor_host_snapshot(
&self.backend,
self.content_revision,
self.view.last_cursor_screen,
) else {
if let Some(c) = self.autocomplete.as_mut() {
c.close();
}
return;
};
if let Some(controller) = self.autocomplete.as_mut() {
controller.sync(&snapshot);
}
}
/// Returns the buffer lines for direct access.
///
/// For the Textarea backend, returns the live lines.
/// For the Nvim backend, returns an empty slice — use `get_text()` instead,
/// which reads from the snapshot.
pub fn lines(&self) -> &[String] {
match &self.backend {
BackendState::Textarea(tb) => tb.ta.lines(),
BackendState::Nvim(_) => &[],
}
}
/// Single producer for the editor's atomic `(lines, cursor,
/// content_revision)` view. Downstream consumers (`MarkdownEditorView`,
/// `click_to_logical_u16`, the autocomplete host) take a
/// `&EditorSnapshot` and stop guarding against drift between cursor
/// and lines on every leaf access — the snapshot owns that
/// invariant at construction time.
///
/// On the Textarea backend the snapshot borrows live lines (no
/// clone) and the cursor is already in-bounds. On the Nvim backend
/// the lines are cloned out from behind the `Mutex` (same cost as
/// today's render path) and the cursor row is clamped to
/// `lines.len() - 1` before the snapshot is returned.
///
/// Production hot paths that also need `&mut self.view` (notably
/// `render`) must instead inline the snapshot via
/// `snapshot_from_backend(&self.backend, self.content_revision)`
/// so the borrow checker can split the borrows across distinct
/// fields.
pub fn view_snapshot(&self) -> EditorSnapshot<'_> {
snapshot_from_backend(&self.backend, self.content_revision)
}
/// The cursor's (row, col) without materialising a snapshot — the Nvim
/// path of `view_snapshot` clones every buffer line, far too heavy for
/// per-frame consumers that only want the position (status-bar ln/col).
pub fn cursor_pos(&self) -> (usize, usize) {
self.backend.cursor()
}
/// Set the search needles to emphasize in the rendered buffer (the note
/// was opened from a query result). Cleared automatically on the first
/// edit.
pub fn set_search_needles(&mut self, needles: Vec<String>) {
self.search_needles = needles
.into_iter()
.map(|n| n.to_lowercase())
.filter(|n| !n.is_empty())
.collect();
self.needles_revision = Some(self.content_revision);
}
pub fn set_text(&mut self, text: String) {
// No-op when the buffer would be identical — preserves view scroll,
// selection, edit generation cache, and an open autocomplete popup.
// Saves the expensive lines clone too. Still normalises the saved
// marker: if the buffer was flagged dirty by a previous divergent
// save, reloading the same content from disk should clear that
// flag rather than persist a phantom `[+]` in the title bar.
if text == self.get_text() {
self.saved_content_rev = Some(self.content_revision);
if let Some(nvim) = self.backend.as_nvim() {
nvim.mark_clean();
}
return;
}
match &mut self.backend {
BackendState::Textarea(tb) => {
let lines = text.lines();
tb.ta = TextArea::from(lines);
}
BackendState::Nvim(nvim) => {
nvim.set_text(&text);
}
}
self.backend.vim_reset_to_normal();
self.bump_content();
let reconstructed = self.get_text();
self.mark_saved(reconstructed);
// Buffer replaced — close any open autocomplete popup so it does
// not linger over the new note (e.g. after Ctrl+G follow-link).
self.close_autocomplete();
}
pub fn get_text(&self) -> String {
self.backend.text()
}
/// Current content revision. Bumped on every text-mutating handler;
/// stable across cursor moves and idle frames. Used by the autosave
/// path to record "this snapshot was saved" without rebuilding the
/// buffer text on completion. `NonZeroU64` makes 0 unrepresentable
/// so callers can express "no revision" as `Option<NonZeroU64>::None`
/// without a magic-value sentinel.
pub fn content_revision(&self) -> NonZeroU64 {
self.content_revision
}
/// Mark the buffer as clean iff its current revision still matches
/// `rev` (i.e. no edits landed between the save being issued and
/// completing). Diverged revision → no-op: leave `saved_content_rev`
/// alone, because some OTHER mechanism (a synchronous `try_save`
/// racing this completion) may have already marked a NEWER revision
/// clean, and a stale completion must not clobber that. `is_dirty`
/// already reads true when `saved_content_rev != Some(self.content_revision)`,
/// so doing nothing on a mismatch keeps the editor correctly dirty
/// without overwriting a legitimately-newer saved snapshot.
pub fn mark_saved_at_revision(&mut self, rev: NonZeroU64) {
if rev != self.content_revision {
return;
}
if let Some(nvim) = self.backend.as_nvim() {
nvim.mark_clean();
}
self.saved_content_rev = Some(rev);
}
/// Synchronous mark-saved used by `try_save` and `set_text`. Unlike
/// `mark_saved_at_revision` (which no-ops on a stale revision because
/// it can race a sync mark_saved), this one CLOBBERS `saved_content_rev`
/// to `None` when the supplied text diverges: the sync caller holds
/// `&mut self` for the whole save, so there is no concurrent newer
/// clean state to preserve, and the user typing between
/// `get_text()` and this call must show as dirty.
pub fn mark_saved(&mut self, text: String) {
let matches = text == self.get_text();
if matches {
if let Some(nvim) = self.backend.as_nvim() {
nvim.mark_clean();
}
self.saved_content_rev = Some(self.content_revision);
} else {
// Textarea: divergent save → stay dirty.
// Nvim: snapshot's `dirty` was untouched anyway; the Textarea
// dirty signal (saved_content_rev) is what is_dirty consults
// on the Textarea backend, and we explicitly mark it None here.
self.saved_content_rev = None;
}
}
pub fn is_dirty(&self) -> bool {
match &self.backend {
BackendState::Textarea(_) => self.saved_content_rev != Some(self.content_revision),
BackendState::Nvim(nvim) => nvim.snapshot().dirty,
}
}
/// Whether a bare Space should start the leader (vim Normal mode only).
/// Returns `false` for the direct textarea backend, the nvim backend,
/// vim Insert/Visual modes, and any pending state.
pub fn vim_space_leads(&self) -> bool {
self.backend.vim_space_leads()
}
/// Returns the link or label target under the cursor, or `None` if the
/// cursor is not inside a wikilink, markdown link, or hashtag span.
pub fn link_at_cursor(&self) -> Option<LinkTarget> {
let (_row, col, line) = match &self.backend {
BackendState::Textarea(tb) => {
let (row, col) = cursor_tuple(&tb.ta);
let line = tb.ta.lines().get(row)?.to_string();
(row, col, line)
}
BackendState::Nvim(nvim) => {
let snap = nvim.snapshot();
let (row, col) = snap.cursor;
let line = snap.lines.get(row)?.to_string();
(row, col, line)
}
};
// F5: Check wiki-link / markdown-link spans first; Link wins over Label
// even if a future edit accidentally lets a Label slip through a Link range.
if let Some(span) = kimun_core::note::scan::link_char_spans(&line)
.into_iter()
.find(|s| s.start <= col && col < s.end)
{
return Some(LinkTarget::Note(span.target));
}
// Fallback: check for a hashtag label (via the markdown parser).
let parsed = self::markdown::ParsedLine::parse(&line);
parsed
.elements
.iter()
.find(|e| {
e.kind == self::markdown::ElementKind::Label
&& col >= e.start_char
&& col < e.end_char
})
.map(|e| {
let span: String = line
.chars()
.skip(e.start_char)
.take(e.end_char - e.start_char)
.collect();
let name = span.trim_start_matches('#').to_string();
LinkTarget::Label(name)
})
}
/// Copy selected text to the system clipboard.
fn copy_selection_to_clipboard(&mut self) {
let text = {
let Some(ta) = self.backend.as_textarea() else {
return;
};
match selection_text(ta) {
Some(t) => t,
None => return,
}
};
if let Some(cb) = &mut self.clipboard {
let _ = cb.set_text(text);
}
}
/// Paste text from the system clipboard at the cursor, replacing any active selection.
fn paste_from_clipboard(&mut self, tx: &AppTx) {
let text = match &mut self.clipboard {
Some(cb) => match cb.get_text() {
Ok(t) if !t.is_empty() => t,
_ => return,
},
None => return,
};
self.paste_text(&text, tx);
}
/// Inserts `text` at the cursor, replacing any active selection. When `text`
/// is a URL (http/https/ftp/ftps/mailto) and a selection is active, the
/// selection is wrapped as a markdown link `[selection](url)` instead of
/// being replaced by the raw URL.
///
/// On the Nvim backend the URL-wrap shortcut is skipped (would require
/// reading the visual selection from nvim) — `text` is forwarded via
/// `nvim_paste`, which honours the current mode (insert/normal/visual).
pub fn paste_text(&mut self, text: &str, tx: &AppTx) {
if text.is_empty() {
return;
}
match &mut self.backend {
BackendState::Textarea(tb) => {
let selection = linkable_url(text).and_then(|_| selection_text(&tb.ta));
let wrapped = try_build_markdown_link(text, selection.as_deref());
if tb.ta.selection_range().is_some() {
tb.ta.cut();
}
tb.ta.insert_str(wrapped.as_deref().unwrap_or(text));
self.selection = tb.ta.selection_range();
self.bump_content();
}
BackendState::Nvim(nvim) => {
nvim.paste(text, tx.clone());
self.bump_content();
}
}
// The buffer just changed under the popup's feet; reconcile
// the trigger context so a stale replace_range cannot survive
// into the next Accept.
self.bind_autocomplete_redraw(tx);
self.sync_autocomplete();
}
/// Inserts `text` at the cursor, replacing any active selection. Routes
/// through `nvim_paste` on the Nvim backend (delegates to [`paste_text`]
/// for that case — URL-wrap is a no-op when nothing in the supplied text
/// matches `linkable_url`, so the two paths are equivalent on Nvim).
pub fn insert_at_cursor(&mut self, text: &str, tx: &AppTx) {
if matches!(self.backend, BackendState::Nvim(_)) {
self.paste_text(text, tx);
return;
}
if let Some(ta) = self.backend.as_textarea_mut() {
if ta.selection_range().is_some() {
ta.cut();
}
ta.insert_str(text);
self.selection = ta.selection_range();
self.bump_content();
}
// See `paste_text` — out-of-band buffer mutation must
// re-reconcile the popup state.
self.bind_autocomplete_redraw(tx);
self.sync_autocomplete();
}
/// Snapshot of the system clipboard image, if any. Returns owned RGBA bytes
/// plus the image dimensions. The screen layer is responsible for encoding
/// (e.g. PNG) and persisting via the vault.
pub fn take_clipboard_image(&mut self) -> Option<ClipboardImage> {
let cb = self.clipboard.as_mut()?;
let img = cb.get_image().ok()?;
Some(ClipboardImage {
width: img.width,
height: img.height,
rgba: img.bytes.into_owned(),
})
}
/// Wraps the active selection in `open`/`close` and re-selects the inner
/// text so wraps chain (see CONTEXT.md "Auto-surround"). Returns `false`
/// without touching the buffer when there is no (non-empty) selection or
/// on the Nvim backend. Callers on the key path don't reconcile the
/// autocomplete popup — `handle_input` re-syncs on any content bump.
fn wrap_selection(&mut self, open: &str, close: &str) -> bool {
let Some(ta) = self.backend.as_textarea_mut() else {
return false;
};
let Some(((sr, sc), (er, ec))) = ta.selection_range() else {
return false;
};
let Some(text) = selection_text(ta) else {
return false;
};
ta.insert_str(format!("{open}{text}{close}"));
// Reselect the inner text. The open marker shifts cols on the first
// selected line only; coordinates are char-based, matching
// `selection_range`.
let shift = open.chars().count();
let inner_end_col = if sr == er { ec + shift } else { ec };
set_selection(ta, (sr, sc + shift), (er, inner_end_col));
self.selection = ta.selection_range();
self.bump_content();
true
}
/// Wrap a selection in (or insert at the cursor) markdown markers for
/// Bold/Italic/Strikethrough. No-op for other actions and on the Nvim backend.
pub fn apply_text_action(&mut self, action: TextAction) {
let marker = match action {
TextAction::Bold => "**",
TextAction::Italic => "*",
TextAction::Strikethrough => "~~",
_ => return,
};
if self.wrap_selection(marker, marker) {
return;
}
let Some(ta) = self.backend.as_textarea_mut() else {
return;
};
ta.insert_str(format!("{marker}{marker}"));
for _ in 0..marker.len() {
ta.move_cursor(CursorMove::Back);
}
self.selection = ta.selection_range();
self.bump_content();
}
/// Smart Enter: continue list markers, preserve indent, dedent on empty
/// indent-only lines, clear empty list markers. Returns `true` if handled
/// (caller should not insert a plain newline). Always `false` on Nvim
/// backend or when there is an active selection.
pub fn smart_enter(&mut self) -> bool {
enum Action {
ClearLine { chars: usize },
InsertPrefix(String),
Dedent,
}
let action = {
let Some(ta) = self.backend.as_textarea() else {
return false;
};
// A mouse click leaves a zero-width selection active (handle_mouse
// calls start_selection on Down), so only bail on a non-empty one.
if ta
.selection_range()
.is_some_and(|(start, end)| start != end)
{
return false;
}
let (row, col) = cursor_tuple(ta);
let Some(line) = ta.lines().get(row) else {
return false;
};
let total_chars = line.chars().count();
if col != total_chars {
return false;
}
// ASCII whitespace, so byte index == char index here.
let ws_end = markdown::leading_ws_byte_len(line);
let (ws, after_ws) = line.split_at(ws_end);
if let Some(marker_len) = markdown::list_marker_len(after_ws) {
if after_ws.len() == marker_len {
// Empty list item: dedent first if indented, then clear
// the marker once fully unindented.
if ws_end > 0 {
Action::Dedent
} else {
Action::ClearLine { chars: total_chars }
}
} else {
let marker_str = &after_ws[..marker_len];
let next_marker = increment_ordered_marker(marker_str)
.unwrap_or_else(|| marker_str.to_string());
Action::InsertPrefix(format!("{ws}{next_marker}"))
}
} else if ws_end > 0 && total_chars == ws_end {
Action::Dedent
} else if ws_end > 0 {
Action::InsertPrefix(ws.to_string())
} else {
return false;
}
};
match action {
Action::Dedent => {
self.indent_lines(true);
return true;
}
Action::ClearLine { chars } => {
let Some(ta) = self.backend.as_textarea_mut() else {
unreachable!()
};
ta.move_cursor(CursorMove::Head);
ta.delete_str(chars);
}
Action::InsertPrefix(prefix) => {
let Some(ta) = self.backend.as_textarea_mut() else {
unreachable!()
};
ta.insert_newline();
ta.insert_str(prefix);
}
}
let Some(ta) = self.backend.as_textarea() else {
unreachable!()
};
self.selection = ta.selection_range();
self.bump_content();
true
}
/// Move the cursor to the first markdown heading line whose text equals
/// `heading` (any level), e.g. for the OUTLINE drawer's jump. No-op when
/// the heading is not found, and on the Nvim backend (same policy as
/// [`Self::indent_lines`]).
pub fn jump_to_heading(&mut self, heading: &str) {
let Some(ta) = self.backend.as_textarea_mut() else {
return;
};
// The OUTLINE entries carry the extractor-rendered heading text
// (inline markup resolved, closing ATX `#` dropped), so normalise
// both sides before comparing: strip the ATX markers and the
// common inline-emphasis characters.
fn normalise(text: &str) -> String {
text.trim()
.trim_end_matches('#')
.trim()
.replace(['*', '_', '`'], "")
}
let wanted = normalise(heading);
let row = ta.lines().iter().position(|l| {
let t = l.trim_start();
let stripped = t.trim_start_matches('#');
stripped.len() != t.len() && normalise(stripped) == wanted
});
if let Some(row) = row {
ta.move_cursor(CursorMove::Jump(row as u16, 0));
self.bump_cursor();
}
}
/// Indent or dedent whole lines. Tab unit is `\t` if `hard_tab_indent` is
/// on, else `tab_length` spaces. Dedent counts a leading tab as one unit.
/// No-op on Nvim backend.
pub fn indent_lines(&mut self, dedent: bool) {
let Some(ta) = self.backend.as_textarea_mut() else {
return;
};
let tab_len = ta.tab_length() as usize;
let hard_tab = ta.hard_tab_indent();
let indent: String = if hard_tab {
"\t".to_string()
} else {
" ".repeat(tab_len)
};
if indent.is_empty() {
return;
}
let indent_chars = indent.len();
let sel = ta.selection_range();
let saved_cursor = if sel.is_none() {
Some(cursor_tuple(ta))
} else {
None
};
let (start_row, end_row) = match sel {
Some(((sr, _), (er, ec))) => {
// A selection that ends at column 0 of a row visually doesn't
// include that row, so don't indent it.
let last = if ec == 0 && er > sr { er - 1 } else { er };
(sr, last)
}
None => {
let (r, _) = saved_cursor.unwrap();
(r, r)
}
};
let row_count = end_row.saturating_sub(start_row) + 1;
let mut row_deltas: Vec<isize> = Vec::with_capacity(row_count);
let mut any_change = false;
// Drop the live selection before mutating: with the anchor still set,
// `move_cursor(Jump(row, 0))` re-anchors the selection from the start
// column back to col 0, so `insert_str`/`delete_str` would replace the
// text before the selection. The selection is restored at the end.
ta.cancel_selection();
for row in start_row..=end_row {
if dedent {
let count = {
let line = ta.lines().get(row).map(|s| s.as_str()).unwrap_or("");
let max_remove = if hard_tab { 1 } else { tab_len };
let mut count = 0usize;
for (i, c) in line.chars().enumerate() {
if i >= max_remove {
break;
}
if c == '\t' {
count += 1;
break;
} else if c == ' ' && !hard_tab {
count += 1;
} else {
break;
}
}
count
};
if count > 0 {
ta.move_cursor(CursorMove::Jump(row as u16, 0));
ta.delete_str(count);
any_change = true;
}
row_deltas.push(-(count as isize));
} else {
ta.move_cursor(CursorMove::Jump(row as u16, 0));
ta.insert_str(&indent);
row_deltas.push(indent_chars as isize);
any_change = true;
}
}
let adj = |row: usize, col: usize| -> usize {
if row >= start_row && row <= end_row {
let d = row_deltas[row - start_row];
if d >= 0 {
col + d as usize
} else {
col.saturating_sub((-d) as usize)
}
} else {
col
}
};
match sel {
Some(((ssr, ssc), (ser, sec))) => {
set_selection(ta, (ssr, adj(ssr, ssc)), (ser, adj(ser, sec)));
}
None => {
let (cr, cc) = saved_cursor.expect("captured when sel is None");
let new_col = adj(cr, cc);
ta.move_cursor(CursorMove::Jump(cr as u16, new_col as u16));
}
}
if any_change {
self.selection = ta.selection_range();
self.bump_content();
}
}
}
impl TextEditorComponent {
/// Bumps `edit_generation` only (cursor/selection moves, mouse clicks
/// that do not touch the buffer text). Lets the view invalidate its
/// cursor-dependent caches without telling the autocomplete controller
/// that the buffer changed.
#[inline]
fn bump_cursor(&mut self) {
self.edit_generation = self.edit_generation.wrapping_add(1);
}
/// Bumps both `edit_generation` and `content_revision`. Use at every
/// site that mutates the buffer (insert, delete, paste, undo/redo,
/// autocomplete accept) on the Textarea backend. `handle_input` uses
/// the `content_revision` delta to detect a real text change without
/// materialising the buffer.
///
/// Not called by the Nvim path — the reverse-refresh task in
/// `backend.rs` bumps `snap.content_gen` on real diffs and the
/// editor mirrors that value into `content_revision` at render time.
#[inline]
fn bump_content(&mut self) {
self.edit_generation = self.edit_generation.wrapping_add(1);
// NonZeroU64 enforces the skip-zero invariant for free: on
// wrap-around from u64::MAX, `NonZeroU64::new(0)` returns None
// and we substitute 1. 2^64 edits is astronomical but the
// invariant is type-checkable.
let next = self.content_revision.get().wrapping_add(1);
self.content_revision = NonZeroU64::new(next).unwrap_or(NonZeroU64::new(1).unwrap());
}
/// If the Nvim process has died, fall back to a Textarea with the last known content.
fn maybe_recover_from_dead_nvim(&mut self) {
if self.backend.recover_from_dead_nvim() {
// Spin up the autocomplete controller now that we're on the
// textarea backend — set_vault was a no-op at startup when
// we were still on Nvim.
self.ensure_autocomplete_for_textarea();
}
}
/// Handle a key event when using the Nvim backend.
///
/// Returns `Some(EventState)` if the event was handled (or should be),
/// `None` if the backend is not Nvim and the caller should fall through.
fn handle_nvim_key(
&mut self,
key: &ratatui::crossterm::event::KeyEvent,
tx: &AppTx,
) -> Option<EventState> {
let nvim = self.backend.as_nvim()?;
// FocusSidebar / FocusEditor shortcuts are intercepted at the
// EditorScreen level for directional navigation.
// Intercept ZZ / ZQ in Normal mode: buffer the first Z, then
// decide on the second key without forwarding either to nvim.
if self.nvim_pending_z {
self.nvim_pending_z = false;
match key.code {
KeyCode::Char('Z') => {
// ZZ — write + quit
tx.send(AppEvent::Autosave).ok();
tx.send(AppEvent::FocusSidebar).ok();
return Some(EventState::Consumed);
}
KeyCode::Char('Q') => {
// ZQ — quit without saving
tx.send(AppEvent::FocusSidebar).ok();
return Some(EventState::Consumed);
}
_ => {
// Not a quit sequence — replay the buffered Z first.
nvim.handle_key(
&ratatui::crossterm::event::KeyEvent::new(
KeyCode::Char('Z'),
KeyModifiers::NONE,
),
tx.clone(),
);
// Then fall through to forward the current key normally.
}
}
} else if key.code == KeyCode::Char('Z') {
let in_normal = {
let snap = nvim.snapshot();
snap.mode == EditorMode::Normal
};
if in_normal {
self.nvim_pending_z = true;
return Some(EventState::Consumed);
}
}
// Intercept vim quit/write-quit commands so they don't kill the
// embedded nvim process.
if key.code == KeyCode::Enter {
let (is_cmd, cmdline) = {
let snap = nvim.snapshot();
let cmd = if snap.mode == EditorMode::Command {
snap.cmdline
.as_deref()
.unwrap_or("")
.trim_start_matches(':')
.to_string()
} else {
String::new()
};
(snap.mode == EditorMode::Command, cmd)
};
if is_cmd {
let saves = matches!(
cmdline.as_str(),
"w" | "wq" | "wq!" | "wqa" | "wqa!" | "x" | "xa" | "x!"
);
let quits =
saves || matches!(cmdline.as_str(), "q" | "q!" | "qa" | "qa!" | "cq" | "cq!");
if quits {
nvim.handle_key(
&ratatui::crossterm::event::KeyEvent::new(KeyCode::Esc, KeyModifiers::NONE),
tx.clone(),
);
if saves {
tx.send(AppEvent::Autosave).ok();
}
tx.send(AppEvent::FocusSidebar).ok();
return Some(EventState::Consumed);
}
}
}
nvim.handle_key(key, tx.clone());
// Nvim handle_key only bumps `edit_generation` (any-input
// counter for view-cache invalidation). `content_revision` is
// owned by the reverse-refresh task in `backend.rs`, which
// bumps `snap.content_gen` only when `snap.lines` actually
// diffs — that value is mirrored into `content_revision` at
// the next render sync point. Result: navigation keys never
// invalidate an in-flight save's revision token, and the
// autocomplete cache (when wired up on Nvim in a future
// revision) survives navigation.
self.bump_cursor();
Some(EventState::Consumed)
}
/// Open the find bar; if already open, advance to the next match. No-op
/// on the Nvim backend (which has its own `/` search). Public so
/// `EditorScreen` can route the configurable `FindInBuffer` shortcut here.
pub fn open_or_advance_search(&mut self) {
if !self.backend.is_textarea() {
return;
}
if self.search.is_some() {
self.search_advance(false);
return;
}
// Yield key focus to the find bar — close the autocomplete popup
// so it stops intercepting Esc / Up / Down / Tab / Enter, which
// belong to the find bar while it is active.
self.close_autocomplete();
self.search = Some(SearchState {
input: SingleLineInput::new(),
status: SearchStatus::Empty,
});
}
/// Close the autocomplete popup, if any. Cheap; safe on any backend
/// (no-op when `autocomplete` is None). Use whenever focus moves
/// away from the editor or another overlay takes over key input.
pub fn close_autocomplete(&mut self) {
if let Some(c) = self.autocomplete.as_mut() {
c.close();
}
}
/// Bind the redraw channel up front (e.g. on note open) so the
/// background full-parse task can wake the event-driven render loop
/// on the FIRST render of a large buffer, before any keystroke has
/// run `handle_input`. No-op after the first successful bind.
pub fn set_redraw_tx(&mut self, tx: &AppTx) {
self.bind_autocomplete_redraw(tx);
}
/// Bind the autocomplete controller's redraw callback AND the
/// editor's background-full-parse redraw signal to the app
/// event bus. Called from `handle_input` (the first place where
/// the editor has access to `AppTx`). The autocomplete piece is
/// a no-op after the first successful bind; the redraw_tx clone
/// is set unconditionally so a reset autocomplete controller
/// (e.g. after Nvim → Textarea fallback) doesn't lose the
/// editor's redraw channel.
fn bind_autocomplete_redraw(&mut self, tx: &AppTx) {
if self.redraw_tx.is_none() {
self.redraw_tx = Some(tx.clone());
}
if self.autocomplete_redraw_bound {
return;
}
if let Some(c) = self.autocomplete.as_mut() {
c.set_redraw_callback(redraw_callback(tx.clone()));
self.autocomplete_redraw_bound = true;
}
}
fn close_search(&mut self) {
if let Some(ta) = self.backend.as_textarea_mut() {
let _ = ta.set_search_pattern("");
}
self.search = None;
self.selection = None;
}
/// Push pattern to the textarea. When `jump` is true and the query compiles,
/// also jumps to the first match at or after the cursor (live preview).
fn refresh_search_pattern(&mut self, jump: bool) {
let Some(state) = self.search.as_mut() else {
return;
};
let Some(ta) = self.backend.as_textarea_mut() else {
return;
};
if state.input.is_empty() {
let _ = ta.set_search_pattern("");
state.status = SearchStatus::Empty;
self.selection = None;
return;
}
if let Err(e) = ta.set_search_pattern(state.input.value()) {
state.status = SearchStatus::Invalid(e.to_string());
self.selection = None;
return;
}
if !jump {
state.status = SearchStatus::Match;
return;
}
let found = ta.search_forward(true);
state.status = SearchStatus::from_found(found);
self.highlight_current_match(found);
}
fn search_advance(&mut self, backward: bool) {
let Some(state) = self.search.as_mut() else {
return;
};
if state.input.is_empty() {
return;
}
let Some(ta) = self.backend.as_textarea_mut() else {
return;
};
let found = if backward {
ta.search_back(false)
} else {
ta.search_forward(false)
};
state.status = SearchStatus::from_found(found);
self.highlight_current_match(found);
}
/// After a search step, paint the match at the textarea's cursor as the
/// editor selection so the user can see where the match is — our custom
/// `MarkdownEditorView` does not render the textarea library's built-in
/// search highlights.
fn highlight_current_match(&mut self, found: bool) {
self.selection = if found {
self.compute_match_selection()
} else {
None
};
}
/// Locate the regex match starting at the textarea cursor and return its
/// span as a `(row, char_col)` pair. Returns `None` when no pattern is set,
/// the cursor is out of range, or the cursor is not on a match — guards
/// against stale cursor/pattern state if callers ever invoke without a
/// fresh search step.
fn compute_match_selection(&self) -> Option<((usize, usize), (usize, usize))> {
let ta = self.backend.as_textarea()?;
let re = ta.search_pattern()?;
let DataCursor(row, col_chars) = ta.cursor();
let line = ta.lines().get(row)?;
let byte_off = char_col_to_byte(line, col_chars);
let m = re.find_at(line, byte_off)?;
if m.start() != byte_off {
return None;
}
let match_chars = line[m.range()].chars().count();
Some(((row, col_chars), (row, col_chars + match_chars)))
}
/// Returns `true` when the key was consumed by the find bar.
fn handle_search_key(&mut self, key: &ratatui::crossterm::event::KeyEvent) -> bool {
let Some(state) = self.search.as_mut() else {
return false;
};
let shift = key.modifiers.contains(KeyModifiers::SHIFT);
let outcome = state.input.handle_key(key);
match outcome {
InputOutcome::Cancel => self.close_search(),
InputOutcome::Submit => {
if self.backend.is_vim() {
// Vim confirm: keep the textarea search pattern so n/N can
// use it, but close the find bar. Incremental search already
// placed the cursor on the first match — do NOT advance again.
self.search = None;
} else {
self.search_advance(shift);
}
}
InputOutcome::Changed => self.refresh_search_pattern(true),
InputOutcome::Consumed | InputOutcome::NotConsumed => {}
}
true
}
/// Repeat the last search (vim `n`/`N`) using the textarea's persisted
/// pattern, even when the find bar is closed.
fn vim_search_repeat(&mut self, backward: bool) {
let found = {
let Some(ta) = self.backend.as_textarea_mut() else {
return;
};
if backward {
ta.search_back(false)
} else {
ta.search_forward(false)
}
};
self.highlight_current_match(found);
}
/// Handle a key event when using the Textarea backend.
fn handle_textarea_key(
&mut self,
key: &ratatui::crossterm::event::KeyEvent,
tx: &AppTx,
) -> EventState {
// Find bar — intercept ALL keys while active.
if self.handle_search_key(key) {
return EventState::Consumed;
}
// System clipboard shortcuts — intercept before passing to textarea.
if key.modifiers == KeyModifiers::CONTROL {
match key.code {
KeyCode::Char('c') => {
self.copy_selection_to_clipboard();
return EventState::Consumed;
}
KeyCode::Char('v') => {
self.paste_from_clipboard(tx);
return EventState::Consumed;
}
KeyCode::Char('x') => {
self.copy_selection_to_clipboard();
let cut = if let Some(ta) = self.backend.as_textarea_mut() {
// `ta.cut()` returns `false` when the selection was
// empty / nothing to remove. Use its return value
// directly rather than pre-checking selection_range —
// one source of truth, no spurious view rebuild on
// no-op Ctrl+X.
let cut = ta.cut();
self.selection = ta.selection_range();
cut
} else {
false
};
if cut {
self.bump_content();
}
return EventState::Consumed;
}
_ => {}
}
}
let Some(ta) = self.backend.as_textarea_mut() else {
unreachable!("handle_textarea_key called with non-Textarea backend")
};
// macOS-style navigation shortcuts not handled by ratatui-textarea.
let shift = key.modifiers.contains(KeyModifiers::SHIFT);
let handled = match (key.modifiers & !KeyModifiers::SHIFT, key.code) {
(KeyModifiers::ALT, KeyCode::Left) => {
cursor_move!(ta, CursorMove::WordBack, shift);
true
}
(KeyModifiers::ALT, KeyCode::Right) => {
cursor_move!(ta, CursorMove::WordForward, shift);
true
}
// Emacs-style word motions. macOS terminals (Terminal.app, Ghostty)
// translate Option+Left/Right into `Esc b` / `Esc f` by default,
// which crossterm reports as Alt+b / Alt+f. The shifted variants
// arrive as the uppercase char (with SHIFT set, so `shift` holds).
(KeyModifiers::ALT, KeyCode::Char('b') | KeyCode::Char('B')) => {
cursor_move!(ta, CursorMove::WordBack, shift);
true
}
(KeyModifiers::ALT, KeyCode::Char('f') | KeyCode::Char('F')) => {
cursor_move!(ta, CursorMove::WordForward, shift);
true
}
(KeyModifiers::SUPER, KeyCode::Left) => {
cursor_move!(ta, CursorMove::Head, shift);
true
}
(KeyModifiers::SUPER, KeyCode::Right) => {
cursor_move!(ta, CursorMove::End, shift);
true
}
(KeyModifiers::SUPER, KeyCode::Up) => {
cursor_move!(ta, CursorMove::Top, shift);
true
}
(KeyModifiers::SUPER, KeyCode::Down) => {
cursor_move!(ta, CursorMove::Bottom, shift);
true
}
_ => false,
};
if handled {
self.selection = ta.selection_range();
self.bump_cursor();
return EventState::Consumed;
}
// FocusSidebar / FocusEditor shortcuts are intercepted at the
// EditorScreen level for directional navigation.
// Standard text-editor shortcuts.
// `input_without_shortcuts` only handles chars, backspace, delete, tab, newline —
// all navigation and editing shortcuts must be mapped explicitly.
// Outcome tracks whether the handled shortcut mutated the buffer, only
// moved the cursor, or did literally nothing (e.g. Ctrl+Z on an empty
// undo stack) — so neither `text_revision` nor `edit_generation` is
// bumped on true no-ops.
enum ShortcutOutcome {
NoOp,
CursorOnly,
TextMutated,
}
let outcome: Option<ShortcutOutcome> =
match (key.modifiers & !KeyModifiers::SHIFT, key.code) {
// --- Cursor movement (Shift extends the selection) ---
(KeyModifiers::NONE, KeyCode::Left) => {
cursor_move!(ta, CursorMove::Back, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::NONE, KeyCode::Right) => {
cursor_move!(ta, CursorMove::Forward, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::NONE, KeyCode::Up) => {
cursor_move!(ta, CursorMove::Up, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::NONE, KeyCode::Down) => {
cursor_move!(ta, CursorMove::Down, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::NONE, KeyCode::Home) => {
cursor_move!(ta, CursorMove::Head, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::NONE, KeyCode::End) => {
cursor_move!(ta, CursorMove::End, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::NONE, KeyCode::PageUp) => {
cursor_move!(ta, CursorMove::ParagraphBack, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::NONE, KeyCode::PageDown) => {
cursor_move!(ta, CursorMove::ParagraphForward, shift);
Some(ShortcutOutcome::CursorOnly)
}
// Word navigation (Ctrl+arrow, Windows/Linux style)
(KeyModifiers::CONTROL, KeyCode::Left) => {
cursor_move!(ta, CursorMove::WordBack, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::CONTROL, KeyCode::Right) => {
cursor_move!(ta, CursorMove::WordForward, shift);
Some(ShortcutOutcome::CursorOnly)
}
// Document start / end
(KeyModifiers::CONTROL, KeyCode::Home) => {
cursor_move!(ta, CursorMove::Top, shift);
Some(ShortcutOutcome::CursorOnly)
}
(KeyModifiers::CONTROL, KeyCode::End) => {
cursor_move!(ta, CursorMove::Bottom, shift);
Some(ShortcutOutcome::CursorOnly)
}
// Undo / Redo (Ctrl+Z / Ctrl+Y / Ctrl+Shift+Z). The textarea
// returns `false` when the stack is empty — no buffer change AND
// no cursor change, so emit NoOp and skip the view-cache bump.
(KeyModifiers::CONTROL, KeyCode::Char('z')) => {
if ta.undo() {
Some(ShortcutOutcome::TextMutated)
} else {
Some(ShortcutOutcome::NoOp)
}
}
(KeyModifiers::CONTROL, KeyCode::Char('y'))
| (KeyModifiers::CONTROL, KeyCode::Char('Z')) => {
if ta.redo() {
Some(ShortcutOutcome::TextMutated)
} else {
Some(ShortcutOutcome::NoOp)
}
}
// Select all
(KeyModifiers::CONTROL, KeyCode::Char('a')) => {
ta.move_cursor(CursorMove::Top);
ta.start_selection();
ta.move_cursor(CursorMove::Bottom);
Some(ShortcutOutcome::CursorOnly)
}
// Delete word before / after cursor. Returns `false` when at a
// word boundary with nothing to delete — no buffer/cursor change.
(KeyModifiers::CONTROL, KeyCode::Backspace)
| (KeyModifiers::ALT, KeyCode::Backspace) => {
if ta.delete_word() {
Some(ShortcutOutcome::TextMutated)
} else {
Some(ShortcutOutcome::NoOp)
}
}
(KeyModifiers::CONTROL, KeyCode::Delete) | (KeyModifiers::ALT, KeyCode::Delete) => {
if ta.delete_next_word() {
Some(ShortcutOutcome::TextMutated)
} else {
Some(ShortcutOutcome::NoOp)
}
}
_ => None,
};
if let Some(kind) = outcome {
self.selection = ta.selection_range();
match kind {
ShortcutOutcome::NoOp => {}
ShortcutOutcome::CursorOnly => self.bump_cursor(),
ShortcutOutcome::TextMutated => self.bump_content(),
}
return EventState::Consumed;
}
// BackTab is what most terminals emit for Shift+Tab.
match (key.modifiers, key.code) {
(m, KeyCode::Tab)
if !m.contains(KeyModifiers::CONTROL) && !m.contains(KeyModifiers::ALT) =>
{
self.indent_lines(m.contains(KeyModifiers::SHIFT));
return EventState::Consumed;
}
(_, KeyCode::BackTab) => {
self.indent_lines(true);
return EventState::Consumed;
}
_ => {}
}
if key.code == KeyCode::Enter && key.modifiers.is_empty() && self.smart_enter() {
return EventState::Consumed;
}
// Auto-surround: an opening/symmetric pair char typed over a selection
// wraps it instead of replacing it (see CONTEXT.md "Auto-surround").
// Shift is allowed (most opening chars are shifted keys); Ctrl/Alt
// chords fall through. The selection lands on the inner text so wraps
// chain: `[` `[` builds a wikilink — and `handle_input`'s post-key
// sync legitimately opens the wikilink popup on the chained wrap.
if let KeyCode::Char(c) = key.code
&& (key.modifiers & !KeyModifiers::SHIFT).is_empty()
&& let Some((open, close)) = surround_pair(c)
&& self.wrap_selection(open, close)
{
return EventState::Consumed;
}
let Some(ta) = self.backend.as_textarea_mut() else {
unreachable!("handle_textarea_key called with non-Textarea backend")
};
// `input_without_shortcuts` returns `false` for keys the textarea
// ignores (F1-F12, KeyCode::Null, modifier-only releases, IME
// composing events). Only bump `text_revision` when the buffer
// actually changed — otherwise harmless keys would silently flip
// the editor to dirty and trigger needless autosaves.
let mutated = ta.input_without_shortcuts(*key);
self.selection = ta.selection_range();
if mutated {
self.bump_content();
} else {
self.bump_cursor();
}
EventState::Consumed
}
/// Handle a mouse event (Textarea backend only).
fn handle_mouse(&mut self, mouse: &ratatui::crossterm::event::MouseEvent) -> EventState {
let r = &self.rect;
let in_bounds = mouse.column >= r.x
&& mouse.column < r.x + r.width
&& mouse.row >= r.y
&& mouse.row < r.y + r.height;
if !in_bounds {
return EventState::NotConsumed;
}
// Right-click: with a selection it copies (unchanged behavior);
// without one it asks the host to open the note's context menu
// (spec §10 — file & note ops).
if matches!(mouse.kind, MouseEventKind::Down(MouseButton::Right))
&& self.selection.is_none_or(|(start, end)| start == end)
{
self.wants_context_menu = true;
return EventState::Consumed;
}
// Everything below drives the textarea backend directly; on Nvim the
// terminal/nvim own the mouse (only the context-menu ask above is
// backend-independent).
if !self.backend.is_textarea() {
return EventState::NotConsumed;
}
// Handle right-click clipboard copy in its own scope to avoid borrow conflicts.
if matches!(mouse.kind, MouseEventKind::Down(MouseButton::Right)) {
self.copy_selection_to_clipboard();
self.selection = if let Some(ta) = self.backend.as_textarea() {
ta.selection_range()
} else {
None
};
self.bump_cursor();
return EventState::Consumed;
}
// Now extract ta for remaining mouse operations.
let Some(ta) = self.backend.as_textarea_mut() else {
unreachable!()
};
match mouse.kind {
MouseEventKind::Down(_) => {
ta.cancel_selection();
let (lrow, lcol) = self
.view
.click_at_screen((mouse.row - r.y) as usize, (mouse.column - r.x) as usize);
ta.move_cursor(CursorMove::Jump(lrow, lcol));
ta.start_selection();
}
MouseEventKind::Drag(_) => {
let (lrow, lcol) = self
.view
.click_at_screen((mouse.row - r.y) as usize, (mouse.column - r.x) as usize);
ta.move_cursor(CursorMove::Jump(lrow, lcol));
}
_ => {
ta.input(*mouse);
}
}
self.selection = ta.selection_range();
// Mouse handling moves the cursor / selection but does not insert
// text — `ratatui-textarea` mouse handling is click/drag/scroll only.
self.bump_cursor();
EventState::Consumed
}
}
/// Viewport post-pass: emphasize search-needle matches
/// (`color_search_match`, bold) and style task checkboxes — `[ ]` accent,
/// `[x]` rows dimmed + struck (spec §5.1). Operates on the rendered buffer
/// rows, so cost is bounded by the visible area regardless of note size.
fn paint_viewport_extras(
buf: &mut ratatui::buffer::Buffer,
area: Rect,
needles: &[String],
theme: &Theme,
) {
use ratatui::layout::Position;
let match_fg = theme.color_search_match.to_ratatui();
let checkbox_fg = theme.accent.to_ratatui();
for y in area.y..area.bottom() {
// Cheap pre-pass: with no needles, only task rows need the full
// string reconstruction — peek at the leading cells for a `- [`
// prefix and skip the row otherwise. Keeps the per-keystroke cost
// of an idle buffer near zero.
if needles.is_empty() {
let mut lead = String::new();
for x in area.x..area.right().min(area.x + 16) {
if let Some(cell) = buf.cell(Position::new(x, y)) {
lead.push_str(cell.symbol());
}
}
if !lead.trim_start().starts_with("- [") {
continue;
}
}
// Reconstruct the row text with a byte→column map (multi-width
// symbols occupy one cell + skipped continuation cells).
let mut row_text = String::new();
let mut byte_to_col: Vec<(usize, u16)> = Vec::new();
for x in area.x..area.right() {
let Some(cell) = buf.cell(Position::new(x, y)) else {
continue;
};
let sym = cell.symbol();
if sym.is_empty() {
continue;
}
byte_to_col.push((row_text.len(), x));
row_text.push_str(sym);
}
if row_text.trim().is_empty() {
continue;
}
let lower = row_text.to_lowercase();
let fold_safe = lower.len() == row_text.len();
let mut restyle =
|from_byte: usize, to_byte: usize, f: &mut dyn FnMut(&mut ratatui::buffer::Cell)| {
for (b, x) in &byte_to_col {
if *b >= from_byte
&& *b < to_byte
&& let Some(cell) = buf.cell_mut(Position::new(*x, y))
{
f(cell);
}
}
};
// Task checkboxes: optional indent, `- [ ] ` / `- [x] `.
let trimmed_start = row_text.len() - row_text.trim_start().len();
let after_indent = &row_text[trimmed_start..];
let is_done = after_indent.starts_with("- [x] ") || after_indent.starts_with("- [X] ");
let is_open = after_indent.starts_with("- [ ] ");
if is_done || is_open {
let box_start = trimmed_start + 2;
let box_end = box_start + 3;
restyle(box_start, box_end, &mut |cell| {
cell.set_fg(checkbox_fg);
});
if is_done {
restyle(box_end, row_text.len(), &mut |cell| {
let style = cell
.style()
.add_modifier(Modifier::DIM | Modifier::CROSSED_OUT);
cell.set_style(style);
});
}
}
// Needle emphasis (skip rows whose case-fold changes length).
if fold_safe {
for needle in needles {
for (start, m) in lower.match_indices(needle.as_str()) {
restyle(start, start + m.len(), &mut |cell| {
let style = cell.style().fg(match_fg).add_modifier(Modifier::BOLD);
cell.set_style(style);
});
}
}
}
}
}
impl Component for TextEditorComponent {
fn handle_input(&mut self, event: &InputEvent, tx: &AppTx) -> EventState {
self.maybe_recover_from_dead_nvim();
self.bind_autocomplete_redraw(tx);
match event {
InputEvent::Key(key) => {
// Cheap popup-open probe first. The snapshot is now a
// Cow-borrowed view of the textarea's lines (zero
// allocation on the Textarea path — perf #8), so
// idle keystrokes pay nothing here even when popup
// checks fire. The free-function form lets `&self.backend`
// and `&mut self.autocomplete` coexist via field-disjoint
// borrows.
let popup_open = self.autocomplete.as_ref().is_some_and(|c| c.is_open());
if popup_open
&& let Some(host) = build_editor_host_snapshot(
&self.backend,
self.content_revision,
self.view.last_cursor_screen,
)
&& let Some(controller) = self.autocomplete.as_mut()
{
match controller.handle_key(*key, &host) {
HandleKeyOutcome::Accepted(action) => {
if let Some(ta) = self.backend.as_textarea_mut() {
apply_accept_to_textarea(ta, &action);
self.selection = ta.selection_range();
}
self.bump_content();
return EventState::Consumed;
}
HandleKeyOutcome::Dismissed | HandleKeyOutcome::Consumed => {
return EventState::Consumed;
}
HandleKeyOutcome::NotHandled => {}
}
}
// Find bar intercepts all keys while active. Must run before the
// vim engine, which would otherwise consume keys in Normal mode
// (the textarea backend also intercepts inside handle_textarea_key,
// but the vim Normal-mode path never reaches that).
if self.search.is_some() && self.handle_search_key(key) {
return EventState::Consumed;
}
// Vim interpreter: Normal/Visual consume the key here; Insert
// mode returns PassThrough and falls into the direct path below
// so typing, autocomplete, auto-surround and smart-Enter all
// keep working (adr/0012).
if let Some(outcome) = self.backend.vim_handle_key(key) {
use self::vim::VimKeyOutcome;
match outcome {
VimKeyOutcome::TextMutated => {
self.selection = None;
self.bump_content();
return EventState::Consumed;
}
VimKeyOutcome::CursorOnly => {
// Mirror the textarea's selection into self.selection so
// Visual mode renders through the existing selection pipeline.
// For non-visual CursorOnly (plain motion), selection_range()
// returns None → self.selection = None (no regression).
self.selection = self
.backend
.as_textarea()
.and_then(|ta| ta.selection_range());
// Charwise Visual highlight: extend end col by 1 so the
// char under the cursor is visually included (vim inclusive).
// VisualLine uses a separate rendering path (full-line) and
// is left unchanged.
if self.backend.vim_is_charwise_visual()
&& let Some(((sr, sc), (er, ec))) = self.selection
{
let len = self
.backend
.as_textarea()
.and_then(|ta| ta.lines().get(er))
.map(|l| l.chars().count())
.unwrap_or(ec);
self.selection = Some(((sr, sc), (er, (ec + 1).min(len))));
}
self.refresh_autocomplete_if_open();
self.edit_generation = self.edit_generation.wrapping_add(1);
return EventState::Consumed;
}
VimKeyOutcome::NoOp => return EventState::Consumed,
VimKeyOutcome::PassThrough => { /* fall through to direct path */ }
VimKeyOutcome::Host(action) => {
use self::vim::VimHostAction;
match action {
VimHostAction::OpenPalette => {
// Reuse the existing palette gateway.
tx.send(AppEvent::ExecuteLeaderAction(
crate::keys::leader::LeaderAction::Palette,
))
.ok();
}
VimHostAction::OpenSearch { forward: _ } => {
// `/` and `?` open the existing find bar.
// (`?` backward-first is a later refinement;
// n/N still navigate both directions.)
self.open_or_advance_search();
}
VimHostAction::SearchNext => self.vim_search_repeat(false),
VimHostAction::SearchPrev => self.vim_search_repeat(true),
}
return EventState::Consumed;
}
}
}
if let Some(state) = self.handle_nvim_key(key, tx) {
return state;
}
// Diff before/after using cheap counters instead of cloning
// the whole buffer. `text_revision` only bumps when the
// buffer actually changed (handlers call `bump_text`);
// cursor position is two `usize`s. Three outcomes:
// - text changed → sync (may open a fresh popup)
// - text unchanged, cursor moved → refresh (close
// popup if cursor left the trigger range; never
// open new popup just because the cursor passed
// over an existing wikilink/hashtag)
// - both unchanged → no autocomplete work needed
let text_rev_before = self.content_revision;
let cursor_before = self.textarea_cursor();
let result = self.handle_textarea_key(key, tx);
let cursor_after = self.textarea_cursor();
if self.content_revision != text_rev_before {
self.sync_autocomplete();
} else if cursor_before != cursor_after {
self.refresh_autocomplete_if_open();
}
result
}
InputEvent::Mouse(mouse) => {
let text_rev_before = self.content_revision;
let cursor_before = self.textarea_cursor();
let result = self.handle_mouse(mouse);
let cursor_after = self.textarea_cursor();
// Mouse clicks typically only move the cursor — refresh
// (which may close the popup) but do not auto-open.
if self.content_revision != text_rev_before {
self.sync_autocomplete();
} else if cursor_before != cursor_after {
self.refresh_autocomplete_if_open();
}
// Spec §10: a left click landing on a wikilink follows it and
// a click on a #tag runs its query. The cursor has already
// been placed by `handle_mouse`, so `link_at_cursor` reads
// the clicked position.
if result == EventState::Consumed
&& matches!(
mouse.kind,
ratatui::crossterm::event::MouseEventKind::Down(
ratatui::crossterm::event::MouseButton::Left
)
)
{
match self.link_at_cursor() {
Some(LinkTarget::Note(target)) => {
tx.send(AppEvent::FollowLink(target)).ok();
}
Some(LinkTarget::Label(name)) => {
tx.send(AppEvent::FollowLabel(name)).ok();
}
None => {}
}
}
// Plan 3 Task 5: reconcile the vim engine mode from whether the
// textarea selection is live after the mouse event. A drag that
// creates a selection enters Visual; a click that clears one
// returns to Normal. Insert mode is left untouched (the engine
// match arm is a no-op for all modes other than Normal/Visual).
// A bare click leaves a collapsed (zero-width) selection active
// because handle_mouse's Down arm calls start_selection().
// Only treat a NON-EMPTY selection as "real" to avoid flipping
// vim Normal→Visual on a plain click. Mirrors the same guard
// at ~line 1014 which protects auto-indent from collapsed sel.
let has_sel = self
.backend
.as_textarea()
.and_then(|ta| ta.selection_range())
.is_some_and(|(s, e)| s != e);
self.backend.vim_sync_mouse_selection(has_sel);
result
}
// Bracketed paste is intercepted by EditorScreen so it can run the
// image-paste flow first. It never reaches us here.
InputEvent::Paste(_) => EventState::NotConsumed,
}
}
fn render(&mut self, f: &mut Frame, rect: Rect, theme: &Theme, focused: bool) {
// Reserve the bottom row for the find bar when active.
let (editor_rect, search_rect) = if self.search.is_some() && rect.height > 1 {
(
Rect {
height: rect.height - 1,
..rect
},
Some(Rect {
y: rect.y + rect.height - 1,
height: 1,
..rect
}),
)
} else {
(rect, None)
};
// Store the editor area (not the full rect) so mouse hit-testing ignores
// clicks on the find-bar row.
self.rect = editor_rect;
// Phase 1: gather per-backend selection + (Nvim only) the
// content_gen the refresh task observed. Done before
// `view_snapshot()` so the Nvim path's content_revision mirror
// lands first.
let (selection, nvim_rev_to_mirror) = match &self.backend {
BackendState::Textarea(_) => (self.selection, None),
BackendState::Nvim(nvim) => {
nvim.maybe_resize(editor_rect.width, editor_rect.height);
let snap = nvim.snapshot();
let visual_selection = snap.visual_selection;
let content_gen = snap.content_gen;
drop(snap);
// Mirror the refresh task's view of "did content
// change" into our own `content_revision`. The
// refresh task only bumps `snap.content_gen` when
// `snap.lines` actually diffs (backend.rs:497) so
// navigation keystrokes leave the value alone, and
// an in-flight autosave's revision token stays valid
// across navigation. Skip-zero is handled by
// `NonZeroU64::new(0) == None`.
let rev = NonZeroU64::new(content_gen.saturating_add(1));
(visual_selection, rev)
}
};
if let Some(rev) = nvim_rev_to_mirror {
self.content_revision = rev;
}
// Drain any completed background full-parse results BEFORE
// running view.update so a just-finished async parse lands
// before Gate 1 has a chance to install another placeholder.
// Generation mismatches drop silently (the spawned task's
// input is older than the current buffer).
while let Ok((generation, buf)) = self.full_parse_rx.try_recv() {
self.view.install_full_parse(generation, buf);
}
// Phase 2: single producer for the atomic snapshot. Borrowed
// on Textarea (zero clone), owned on Nvim (lines cloned out
// from behind the Mutex). Use the free function so the borrow
// checker can split `&self.backend` from `&mut self.view`.
let snap = snapshot_from_backend(&self.backend, self.content_revision);
self.view.update(&snap, editor_rect, selection);
// If `view.update` cap-tripped on a large buffer it
// installed a placeholder + pending-flag instead of running
// ParsedBuffer::parse synchronously. Spawn the real parse
// here so subsequent frames pick up the rich result via the
// drain loop above. `SingleSlotTask::spawn` aborts the prior
// task, so a burst of large-buffer edits resolves against
// the latest content.
if let Some(generation) = self.view.take_pending_full_parse() {
let lines: Vec<String> = snap.lines.iter().cloned().collect();
let tx = self.full_parse_tx.clone();
let redraw = self.redraw_tx.clone();
self.full_parse_task.spawn(async move {
let buf = ParsedBuffer::parse(&lines);
let _ = tx.send((generation, buf));
// Wake the render loop so the rich parse lands
// without waiting for the next keystroke.
if let Some(redraw) = redraw {
let _ = redraw.send(AppEvent::Redraw);
}
});
}
// When the find bar is active, draw it AFTER the editor so its caret
// (set via set_cursor_position) wins over the editor's caret call.
let bar_focused = self.search.is_some() && focused;
let editor_focused = focused && !bar_focused;
use self::view::CursorShape;
let cursor_shape = match self.backend.modal_is_insert() {
None => None, // Direct textarea — leave terminal default
Some(true) => Some(CursorShape::Bar),
Some(false) => Some(CursorShape::Block),
};
self.view
.render(f, editor_rect, theme, editor_focused, cursor_shape);
// Search-match emphasis (spec §5.1): paint needle matches and task
// checkboxes over the rendered viewport. Buffer-level post-pass —
// viewport-only, so large notes pay nothing beyond the visible rows.
if self
.needles_revision
.is_some_and(|r| r != self.content_revision)
{
self.search_needles.clear();
self.needles_revision = None;
}
let mut emphasis_needles = self.search_needles.clone();
if let Some(state) = &self.search {
let q = state.input.value().trim().to_lowercase();
if !q.is_empty() {
emphasis_needles.push(q);
}
}
paint_viewport_extras(f.buffer_mut(), editor_rect, &emphasis_needles, theme);
// Empty-note tip (spec §5.2): dim ghost text in a fresh/empty buffer,
// gone the instant the first character lands (the buffer stops being
// empty). Drawn after the view so it sits over the blank canvas.
if snap.lines.iter().all(|l| l.is_empty()) && editor_rect.height > 0 {
let leader = self
.key_bindings
.first_combo_for(&crate::keys::action_shortcuts::ActionShortcuts::Leader)
.unwrap_or_else(|| "leader".to_string());
f.render_widget(
ratatui::widgets::Paragraph::new(format!(
"Type to start · [[ to link · # to tag · {leader} for commands"
))
.style(
Style::default()
.fg(theme.gray.to_ratatui())
.add_modifier(Modifier::ITALIC),
),
Rect {
x: editor_rect.x.saturating_add(2),
width: editor_rect.width.saturating_sub(2),
height: 1,
..editor_rect
},
);
}
if let (Some(state), Some(bar_rect)) = (self.search.as_mut(), search_rect) {
render_search_bar(f, bar_rect, state, theme, bar_focused);
}
// Autocomplete popup sits on top of the editor. Drain async
// query results first so the popup reflects the latest prefix,
// then re-anchor on the cursor's freshly-rendered screen
// position (otherwise the anchor lags one frame behind on the
// very first popup-opening keystroke). Clamp against
// `editor_rect`, not the full `rect`, so the popup never lands
// on the find-bar row.
self.poll_autocomplete();
// The popup anchors on the cursor's just-rendered screen
// position. When the cursor is off-screen
// (`last_cursor_screen == None`) we skip rendering entirely
// rather than draw at a stale anchor — the popup state is
// preserved, so the popup reappears at the correct position
// once the cursor scrolls back into view.
if let (Some(controller), Some(live_anchor)) =
(self.autocomplete.as_mut(), self.view.last_cursor_screen)
{
if let Some(state) = controller.state_mut() {
state.anchor = live_anchor;
}
if let Some(state) = controller.state() {
autocomplete::render(f, state, editor_rect, theme);
}
}
}
fn hint_shortcuts(&self) -> Vec<(String, String)> {
use crate::keys::action_shortcuts::ActionShortcuts;
// Prepend the modal-mode label (nvim or vim) as the first "hint".
// When the vim interpreter has a pending command sequence (e.g. "2d",
// "f", ">"), append it to the label so the user can see what they have
// typed so far.
if let Some(mut label) = self.backend.mode_label() {
if let Some(p) = self.backend.vim_pending_hint() {
label = format!("{label} {p}");
}
let mut hints = vec![(String::new(), label)];
hints.extend(
[
(ActionShortcuts::FocusSidebar, "\u{2190} focus left"),
(ActionShortcuts::FocusEditor, "focus right \u{2192}"),
(ActionShortcuts::FileOperations, "file ops"),
]
.iter()
.filter_map(|(action, label)| {
self.key_bindings
.first_combo_for(action)
.map(|k| (k, label.to_string()))
}),
);
return hints;
}
// Cursor-context hints come first: what the cursor is on decides the
// most relevant action (spec §5.2).
let mut hints: Vec<(String, String)> = Vec::new();
match self.link_at_cursor() {
Some(LinkTarget::Note(_)) => {
if let Some(k) = self
.key_bindings
.first_combo_for(&ActionShortcuts::FollowLink)
{
hints.push((k, "follow link".to_string()));
}
}
Some(LinkTarget::Label(_)) => {
if let Some(k) = self
.key_bindings
.first_combo_for(&ActionShortcuts::FollowLink)
{
hints.push((k, "browse tag".to_string()));
}
}
None => {}
}
hints.extend(crate::components::hints::hints_for(
&self.key_bindings,
&[
(ActionShortcuts::FocusSidebar, "\u{2190} focus left"),
(ActionShortcuts::FocusEditor, "focus right \u{2192}"),
(ActionShortcuts::FileOperations, "file ops"),
(ActionShortcuts::FindInBuffer, "find"),
],
));
hints
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::keys::KeyBindings;
fn make_editor() -> TextEditorComponent {
TextEditorComponent::new(
KeyBindings::empty(),
&crate::settings::AppSettings::default(),
)
}
fn dummy_tx() -> AppTx {
tokio::sync::mpsc::unbounded_channel().0
}
fn get_ta(editor: &mut TextEditorComponent) -> &mut TextArea<'static> {
match &mut editor.backend {
BackendState::Textarea(tb) => &mut tb.ta,
_ => panic!("expected Textarea backend"),
}
}
#[test]
fn has_trigger_before_cursor_finds_bracket() {
assert!(has_trigger_before_cursor("hello [[foo", 11));
assert!(has_trigger_before_cursor("[[a b c", 7));
}
#[test]
fn has_trigger_before_cursor_finds_hashtag() {
assert!(has_trigger_before_cursor("text #tag", 9));
}
#[test]
fn has_trigger_before_cursor_no_trigger_bails() {
assert!(!has_trigger_before_cursor("plain prose here", 16));
assert!(!has_trigger_before_cursor("", 0));
}
#[test]
fn has_trigger_before_cursor_handles_multibyte_no_panic() {
// Regression: the previous 64-byte saturating_sub slice could
// land mid-codepoint and panic on CJK / emoji / accented lines.
let line = "你好世界".to_string() + &"a".repeat(80);
let col = line.chars().count();
assert!(!has_trigger_before_cursor(&line, col));
let with_emoji = "🦀".repeat(20) + "[[note";
let col = with_emoji.chars().count();
assert!(has_trigger_before_cursor(&with_emoji, col));
let accented = "é".repeat(100);
let col = accented.chars().count();
assert!(!has_trigger_before_cursor(&accented, col));
}
#[test]
fn has_trigger_before_cursor_ignores_chars_after_cursor() {
// Trigger AFTER cursor must not match.
assert!(!has_trigger_before_cursor("foo [[bar", 3));
}
#[test]
fn has_trigger_before_cursor_wikilink_with_spaces() {
// Wikilink contents can contain spaces; we must still detect the
// opening bracket far back on the line.
assert!(has_trigger_before_cursor("[[my note title", 15));
}
#[test]
fn fresh_editor_is_not_dirty() {
let editor = make_editor();
assert!(!editor.is_dirty());
}
#[test]
fn after_set_text_not_dirty() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
assert!(!editor.is_dirty());
}
#[test]
fn get_text_returns_loaded_content() {
let mut editor = make_editor();
editor.set_text("line one\nline two".to_string());
assert_eq!(editor.get_text(), "line one\nline two");
}
#[test]
fn mark_saved_clears_dirty() {
let mut editor = make_editor();
editor.set_text("initial".to_string());
let text = editor.get_text();
editor.mark_saved(text.clone() + "x"); // saved state diverges
assert!(editor.is_dirty());
editor.mark_saved(text); // saved state matches again
assert!(!editor.is_dirty());
}
#[test]
fn trailing_newline_does_not_cause_false_dirty() {
let mut editor = make_editor();
editor.set_text("content\n".to_string());
assert!(
!editor.is_dirty(),
"trailing newline should not make editor dirty after load"
);
}
#[test]
fn cursor_move_does_not_dirty_buffer() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
assert!(!editor.is_dirty());
let tx = dummy_tx();
// Send a cursor-only key (Right arrow). It must bump `edit_generation`
// for view-cache invalidation but must NOT bump `text_revision`, so
// `is_dirty` stays false.
let key = ratatui::crossterm::event::KeyEvent::new(KeyCode::Right, KeyModifiers::NONE);
let _ = editor.handle_input(&InputEvent::Key(key), &tx);
assert!(
!editor.is_dirty(),
"cursor move must not mark the editor as dirty"
);
}
#[test]
fn empty_stack_undo_redo_does_not_dirty_or_bump_revision() {
// Regression: ShortcutOutcome::NoOp must apply for Ctrl+Z / Ctrl+Y
// when the undo/redo stack is empty. Both is_dirty and the
// raw content_revision counter stay put.
let mut editor = make_editor();
editor.set_text("foo".to_string());
let rev_before = editor.content_revision();
assert!(!editor.is_dirty());
let tx = dummy_tx();
for key_code in [KeyCode::Char('z'), KeyCode::Char('y')] {
let key = ratatui::crossterm::event::KeyEvent::new(key_code, KeyModifiers::CONTROL);
let _ = editor.handle_input(&InputEvent::Key(key), &tx);
}
assert!(
!editor.is_dirty(),
"empty-stack undo/redo must not flip is_dirty"
);
assert_eq!(
editor.content_revision(),
rev_before,
"empty-stack undo/redo must not bump content_revision"
);
}
#[test]
fn fresh_editor_content_revision_is_nonzero() {
// Regression: content_revision is typed `NonZeroU64`, which
// makes the "do not cache" sentinel for `AutocompleteHost`
// expressible as `Option::None` without a magic value.
// `NonZeroU64::get()` is always >= 1 by construction; this
// test is now a tautological smoke test that the constructor
// initialises the field.
let editor = make_editor();
assert!(editor.content_revision().get() >= 1);
}
#[test]
fn mouse_down_clears_selection() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
let ta = get_ta(&mut editor);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::WordForward);
assert!(ta.selection_range().is_some());
ta.cancel_selection();
editor.selection = if let BackendState::Textarea(tb) = &editor.backend {
tb.ta.selection_range()
} else {
None
};
assert!(editor.selection.is_none());
}
#[test]
fn ctrl_c_copies_selected_text() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Head);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::WordForward);
let range = ta.selection_range().unwrap();
let ((sr, sc), (er, ec)) = range;
let lines = ta.lines();
let selected = if sr == er {
lines[sr][sc..ec].to_string()
} else {
lines[sr][sc..].to_string()
};
assert_eq!(selected, "hello ");
}
/// Selects the char-coordinate range `start..end` in the editor's textarea.
fn select_range(editor: &mut TextEditorComponent, start: (u16, u16), end: (u16, u16)) {
let ta = get_ta(editor);
ta.cancel_selection();
ta.move_cursor(CursorMove::Jump(start.0, start.1));
ta.start_selection();
ta.move_cursor(CursorMove::Jump(end.0, end.1));
assert!(ta.selection_range().is_some());
}
fn send_char(editor: &mut TextEditorComponent, c: char) {
let tx = dummy_tx();
let key = ratatui::crossterm::event::KeyEvent::new(KeyCode::Char(c), KeyModifiers::NONE);
let _ = editor.handle_input(&InputEvent::Key(key), &tx);
}
#[test]
fn surround_pair_maps_open_and_symmetric_chars() {
assert_eq!(surround_pair('('), Some(("(", ")")));
assert_eq!(surround_pair('['), Some(("[", "]")));
assert_eq!(surround_pair('{'), Some(("{", "}")));
assert_eq!(surround_pair('<'), Some(("<", ">")));
assert_eq!(surround_pair('"'), Some(("\"", "\"")));
assert_eq!(surround_pair('\''), Some(("'", "'")));
assert_eq!(surround_pair('`'), Some(("`", "`")));
assert_eq!(surround_pair('*'), Some(("*", "*")));
assert_eq!(surround_pair('_'), Some(("_", "_")));
assert_eq!(surround_pair('~'), Some(("~", "~")));
// Closing chars and plain chars never wrap.
assert_eq!(surround_pair(')'), None);
assert_eq!(surround_pair(']'), None);
assert_eq!(surround_pair('}'), None);
assert_eq!(surround_pair('>'), None);
assert_eq!(surround_pair('a'), None);
}
#[test]
fn typing_open_paren_with_selection_wraps_it() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
select_range(&mut editor, (0, 0), (0, 5)); // "hello"
send_char(&mut editor, '(');
assert_eq!(editor.get_text(), "(hello) world");
assert!(editor.is_dirty(), "wrap must mark the buffer dirty");
}
#[test]
fn wrap_keeps_selection_on_inner_text() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
select_range(&mut editor, (0, 0), (0, 5));
send_char(&mut editor, '(');
// Selection must cover "hello" inside the parens so wraps chain.
assert_eq!(editor.selection, Some(((0, 1), (0, 6))));
}
#[test]
fn chained_brackets_build_a_wikilink() {
let mut editor = make_editor();
editor.set_text("my note".to_string());
select_range(&mut editor, (0, 0), (0, 7));
send_char(&mut editor, '[');
send_char(&mut editor, '[');
assert_eq!(editor.get_text(), "[[my note]]");
assert_eq!(editor.selection, Some(((0, 2), (0, 9))));
}
#[test]
fn symmetric_chars_wrap_and_chain() {
let mut editor = make_editor();
editor.set_text("bold".to_string());
select_range(&mut editor, (0, 0), (0, 4));
send_char(&mut editor, '*');
assert_eq!(editor.get_text(), "*bold*");
send_char(&mut editor, '*');
assert_eq!(editor.get_text(), "**bold**");
assert_eq!(editor.selection, Some(((0, 2), (0, 6))));
}
#[test]
fn closing_char_replaces_selection() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
select_range(&mut editor, (0, 0), (0, 5));
send_char(&mut editor, ')');
assert_eq!(editor.get_text(), ") world");
}
#[test]
fn open_char_without_selection_inserts_normally() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
let ta = get_ta(&mut editor);
ta.move_cursor(CursorMove::End);
send_char(&mut editor, '(');
assert_eq!(editor.get_text(), "hello(");
}
#[test]
fn wrap_spans_multiline_selection() {
let mut editor = make_editor();
editor.set_text("abc\ndef".to_string());
select_range(&mut editor, (0, 0), (1, 3));
send_char(&mut editor, '(');
assert_eq!(editor.get_text(), "(abc\ndef)");
// Inner selection: open char shifts only the first line.
assert_eq!(editor.selection, Some(((0, 1), (1, 3))));
}
#[test]
fn wrap_handles_multibyte_selection() {
let mut editor = make_editor();
editor.set_text("héllo🦀 x".to_string());
select_range(&mut editor, (0, 0), (0, 6)); // "héllo🦀" = 6 chars
send_char(&mut editor, '`');
assert_eq!(editor.get_text(), "`héllo🦀` x");
assert_eq!(editor.selection, Some(((0, 1), (0, 7))));
}
#[test]
fn wrap_with_reversed_selection_direction() {
// Selection made right-to-left must wrap the same way.
let mut editor = make_editor();
editor.set_text("hello world".to_string());
select_range(&mut editor, (0, 5), (0, 0));
send_char(&mut editor, '(');
assert_eq!(editor.get_text(), "(hello) world");
assert_eq!(editor.selection, Some(((0, 1), (0, 6))));
}
#[test]
fn text_action_keeps_selection_on_inner_text() {
// Bold/Italic/Strikethrough route through the same wrap mechanism as
// auto-surround: the inner text stays selected so wraps chain.
let mut editor = make_editor();
editor.set_text("bold word".to_string());
select_range(&mut editor, (0, 0), (0, 4));
editor.apply_text_action(TextAction::Bold);
assert_eq!(editor.get_text(), "**bold** word");
assert_eq!(editor.selection, Some(((0, 2), (0, 6))));
}
#[test]
fn wrap_undo_is_two_steps_back_to_original() {
// Documented trade-off: ratatui-textarea has no edit grouping, so a
// wrap is delete+insert = two history entries (same as bold/italic
// via apply_text_action). Two undos must restore the original text.
let mut editor = make_editor();
editor.set_text("hello world".to_string());
select_range(&mut editor, (0, 0), (0, 5));
send_char(&mut editor, '(');
assert_eq!(editor.get_text(), "(hello) world");
let ta = get_ta(&mut editor);
ta.undo();
ta.undo();
assert_eq!(editor.get_text(), "hello world");
}
#[test]
fn linkable_url_accepts_supported_schemes() {
assert_eq!(
linkable_url("https://example.com"),
Some("https://example.com")
);
assert_eq!(
linkable_url("http://example.com/path?q=1#frag"),
Some("http://example.com/path?q=1#frag"),
);
assert_eq!(
linkable_url(" https://example.com "),
Some("https://example.com")
);
assert_eq!(
linkable_url("ftp://files.example.com/x"),
Some("ftp://files.example.com/x"),
);
assert_eq!(
linkable_url("ftps://files.example.com/x"),
Some("ftps://files.example.com/x"),
);
assert_eq!(
linkable_url("mailto:user@example.com"),
Some("mailto:user@example.com"),
);
assert_eq!(
linkable_url("mailto:user@example.com?subject=hi"),
Some("mailto:user@example.com?subject=hi"),
);
}
#[test]
fn linkable_url_rejects_other_schemes_and_plain_text() {
assert_eq!(linkable_url("file:///etc/passwd"), None);
assert_eq!(linkable_url("ssh://host"), None);
assert_eq!(linkable_url("javascript:alert(1)"), None);
assert_eq!(linkable_url("example.com"), None);
assert_eq!(linkable_url("not a url"), None);
assert_eq!(linkable_url(""), None);
assert_eq!(linkable_url("https://example.com\nmore"), None);
}
#[test]
fn try_build_markdown_link_wraps_selection_when_clip_is_url() {
assert_eq!(
try_build_markdown_link("https://example.com", Some("click here")).as_deref(),
Some("[click here](https://example.com)"),
);
}
#[test]
fn try_build_markdown_link_trims_url_whitespace() {
assert_eq!(
try_build_markdown_link(" https://example.com\n", Some("link")).as_deref(),
Some("[link](https://example.com)"),
);
}
#[test]
fn try_build_markdown_link_returns_none_when_no_selection() {
assert_eq!(try_build_markdown_link("https://example.com", None), None);
}
#[test]
fn try_build_markdown_link_returns_none_when_not_url() {
assert_eq!(try_build_markdown_link("plain text", Some("sel")), None);
}
#[test]
fn try_build_markdown_link_returns_none_when_selection_empty() {
assert_eq!(
try_build_markdown_link("https://example.com", Some("")),
None
);
}
#[test]
fn try_build_markdown_link_escapes_close_bracket_in_selection() {
assert_eq!(
try_build_markdown_link("https://example.com", Some("a]b")).as_deref(),
Some(r"[a\]b](https://example.com)"),
);
}
#[test]
fn try_build_markdown_link_wraps_ftp_url() {
assert_eq!(
try_build_markdown_link("ftp://files.example.com/x", Some("download")).as_deref(),
Some("[download](ftp://files.example.com/x)"),
);
}
fn key(code: KeyCode, mods: KeyModifiers) -> ratatui::crossterm::event::KeyEvent {
ratatui::crossterm::event::KeyEvent::new(code, mods)
}
/// Buffer post-pass: needles painted, task rows styled.
#[test]
fn paint_viewport_extras_emphasizes_needles_and_tasks() {
use ratatui::buffer::Buffer;
use ratatui::layout::Position;
let theme = crate::settings::themes::Theme::default();
let area = Rect::new(0, 0, 30, 3);
let mut buf = Buffer::empty(area);
buf.set_string(0, 0, "find the needle here", Style::default());
buf.set_string(0, 1, "- [x] done task", Style::default());
buf.set_string(0, 2, "- [ ] open task", Style::default());
paint_viewport_extras(&mut buf, area, &["needle".to_string()], &theme);
// "needle" starts at col 9 on row 0.
let cell = buf.cell(Position::new(9, 0)).unwrap();
assert_eq!(cell.fg, theme.color_search_match.to_ratatui());
assert!(cell.style().add_modifier.contains(Modifier::BOLD));
// Done-task text is dimmed + struck.
let cell = buf.cell(Position::new(8, 1)).unwrap();
assert!(cell.style().add_modifier.contains(Modifier::CROSSED_OUT));
// Open-task text is NOT struck; its checkbox is accent-colored.
let cell = buf.cell(Position::new(8, 2)).unwrap();
assert!(!cell.style().add_modifier.contains(Modifier::CROSSED_OUT));
let cb = buf.cell(Position::new(3, 2)).unwrap();
assert_eq!(cb.fg, theme.accent.to_ratatui());
}
/// Arrive-from-query needles survive until the first edit.
#[test]
fn search_needles_clear_on_edit() {
let settings = crate::settings::AppSettings::default();
let mut ed = TextEditorComponent::new(settings.key_bindings.clone(), &settings);
ed.set_text("alpha beta".to_string());
ed.set_search_needles(vec!["Alpha".to_string()]);
assert_eq!(ed.search_needles, vec!["alpha"]);
assert_eq!(ed.needles_revision, Some(ed.content_revision));
// An edit bumps the revision; the render-side guard would clear.
ed.set_text("alpha beta gamma".to_string());
assert_ne!(ed.needles_revision, Some(ed.content_revision));
}
#[test]
fn jump_to_heading_moves_cursor_to_heading_line() {
let settings = crate::settings::AppSettings::default();
let mut ed = TextEditorComponent::new(settings.key_bindings.clone(), &settings);
ed.set_text("intro\n# Top\nbody\n## Sub One\nmore\n".to_string());
ed.jump_to_heading("Sub One");
assert_eq!(ed.view_snapshot().cursor.0, 3);
ed.jump_to_heading("Top");
assert_eq!(ed.view_snapshot().cursor.0, 1);
// Unknown heading: cursor stays.
ed.jump_to_heading("Nope");
assert_eq!(ed.view_snapshot().cursor.0, 1);
}
#[test]
fn open_or_advance_search_opens_find_bar_with_empty_query() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
editor.open_or_advance_search();
let state = editor.search.as_ref().expect("find bar opened");
assert!(state.input.is_empty());
assert!(matches!(state.status, SearchStatus::Empty));
}
#[test]
fn open_or_advance_search_advances_when_already_open() {
let mut editor = make_editor();
editor.set_text("ab ab ab".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
editor.handle_textarea_key(&key(KeyCode::Char('a'), KeyModifiers::NONE), &tx);
editor.handle_textarea_key(&key(KeyCode::Char('b'), KeyModifiers::NONE), &tx);
// Cursor now at first match (col 0). Re-invoking advances to second.
editor.open_or_advance_search();
let DataCursor(_, col) = get_ta(&mut editor).cursor();
assert_eq!(col, 3, "second invocation advances to next match");
}
#[test]
fn typing_in_find_bar_jumps_cursor_to_first_match() {
let mut editor = make_editor();
editor.set_text("foo bar baz".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
for ch in ['b', 'a', 'r'] {
editor.handle_textarea_key(&key(KeyCode::Char(ch), KeyModifiers::NONE), &tx);
}
let state = editor.search.as_ref().unwrap();
assert_eq!(state.input.value(), "bar");
assert!(matches!(state.status, SearchStatus::Match));
let DataCursor(_, col) = get_ta(&mut editor).cursor();
assert_eq!(col, 4, "cursor jumped to start of 'bar'");
}
#[test]
fn enter_in_find_bar_advances_to_next_match() {
let mut editor = make_editor();
editor.set_text("ab ab ab".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
editor.handle_textarea_key(&key(KeyCode::Char('a'), KeyModifiers::NONE), &tx);
editor.handle_textarea_key(&key(KeyCode::Char('b'), KeyModifiers::NONE), &tx);
// first match is at col 0 (match_cursor=true on type)
editor.handle_textarea_key(&key(KeyCode::Enter, KeyModifiers::NONE), &tx);
let DataCursor(_, col) = get_ta(&mut editor).cursor();
assert_eq!(col, 3, "Enter advances to second match");
}
#[test]
fn match_is_highlighted_as_selection_after_search() {
let mut editor = make_editor();
editor.set_text("foo bar baz".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
for ch in ['b', 'a', 'r'] {
editor.handle_textarea_key(&key(KeyCode::Char(ch), KeyModifiers::NONE), &tx);
}
// "bar" lives at cols 4..7 on row 0.
assert_eq!(editor.selection, Some(((0, 4), (0, 7))));
}
#[test]
fn no_match_clears_selection() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
editor.handle_textarea_key(&key(KeyCode::Char('z'), KeyModifiers::NONE), &tx);
assert_eq!(editor.selection, None);
}
#[test]
fn esc_in_find_bar_clears_selection_highlight() {
let mut editor = make_editor();
editor.set_text("foo bar".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
editor.handle_textarea_key(&key(KeyCode::Char('b'), KeyModifiers::NONE), &tx);
editor.handle_textarea_key(&key(KeyCode::Char('a'), KeyModifiers::NONE), &tx);
editor.handle_textarea_key(&key(KeyCode::Char('r'), KeyModifiers::NONE), &tx);
assert!(editor.selection.is_some());
editor.handle_textarea_key(&key(KeyCode::Esc, KeyModifiers::NONE), &tx);
assert!(editor.selection.is_none());
}
#[test]
fn esc_in_find_bar_closes_it() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
assert!(editor.search.is_some());
editor.handle_textarea_key(&key(KeyCode::Esc, KeyModifiers::NONE), &tx);
assert!(editor.search.is_none());
}
#[test]
fn find_bar_consumes_typing_so_editor_text_is_unchanged() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
editor.handle_textarea_key(&key(KeyCode::Char('x'), KeyModifiers::NONE), &tx);
assert_eq!(editor.get_text(), "hello");
}
#[test]
fn no_match_status_when_query_absent() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
let tx = dummy_tx();
editor.open_or_advance_search();
editor.handle_textarea_key(&key(KeyCode::Char('z'), KeyModifiers::NONE), &tx);
let state = editor.search.as_ref().unwrap();
assert!(matches!(state.status, SearchStatus::NoMatch));
}
#[test]
fn try_build_markdown_link_wraps_mailto_url() {
assert_eq!(
try_build_markdown_link("mailto:user@example.com", Some("email me")).as_deref(),
Some("[email me](mailto:user@example.com)"),
);
}
#[test]
fn insert_at_cursor_appends_text() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
editor.insert_at_cursor(" world", &dummy_tx());
assert_eq!(editor.get_text(), "hello world");
}
#[test]
fn insert_at_cursor_replaces_selection() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Head);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::WordForward);
}
editor.insert_at_cursor("HEY ", &dummy_tx());
assert_eq!(editor.get_text(), "HEY world");
}
#[test]
fn paste_inserts_text_at_cursor() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
ta.insert_str(" world");
assert_eq!(editor.get_text(), "hello world");
}
#[test]
fn bold_action_with_no_selection_inserts_pair_and_centers_cursor() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
editor.apply_text_action(TextAction::Bold);
assert_eq!(editor.get_text(), "hello****");
let ta = get_ta(&mut editor);
assert_eq!(ta.cursor(), (0, 7));
}
#[test]
fn italic_action_with_no_selection_inserts_single_pair() {
let mut editor = make_editor();
editor.set_text(String::new());
editor.apply_text_action(TextAction::Italic);
assert_eq!(editor.get_text(), "**");
let ta = get_ta(&mut editor);
assert_eq!(ta.cursor(), (0, 1));
}
#[test]
fn strikethrough_action_with_selection_wraps_text() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Head);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::WordForward);
}
editor.apply_text_action(TextAction::Strikethrough);
assert_eq!(editor.get_text(), "~~hello ~~world");
}
#[test]
fn bold_action_wraps_non_ascii_selection() {
let mut editor = make_editor();
editor.set_text("hello 你好 world".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Head);
ta.move_cursor(ratatui_textarea::CursorMove::WordForward);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::WordForward);
}
editor.apply_text_action(TextAction::Bold);
assert_eq!(editor.get_text(), "hello **你好 **world");
}
#[test]
fn bold_action_wraps_selected_text() {
let mut editor = make_editor();
editor.set_text("foo bar".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Head);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::WordForward);
}
editor.apply_text_action(TextAction::Bold);
assert_eq!(editor.get_text(), "**foo **bar");
}
#[test]
fn indent_no_selection_indents_current_line() {
let mut editor = make_editor();
editor.set_text("foo\nbar".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Bottom);
}
editor.indent_lines(false);
let lines = get_ta(&mut editor).lines();
assert_eq!(lines[0], "foo");
assert!(lines[1].starts_with(' ') || lines[1].starts_with('\t'));
assert!(lines[1].trim_start() == "bar");
}
#[test]
fn indent_midline_selection_keeps_text_before_and_selection() {
let mut editor = make_editor();
editor.set_text("hello world".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Jump(0, 6));
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
editor.indent_lines(false);
let ta = get_ta(&mut editor);
// Text before the selection must survive; only a leading indent added.
assert_eq!(ta.lines()[0].trim_start(), "hello world");
// Selection preserved, shifted right by the inserted indent.
let indent = ta.lines()[0].len() - "hello world".len();
assert_eq!(
ta.selection_range(),
Some(((0, 6 + indent), (0, 11 + indent)))
);
}
#[test]
fn indent_with_selection_indents_all_touched_lines() {
let mut editor = make_editor();
editor.set_text("foo\nbar\nbaz".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Top);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::Down);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
editor.indent_lines(false);
let lines: Vec<String> = get_ta(&mut editor).lines().to_vec();
assert_eq!(lines[0].trim_start(), "foo");
assert_eq!(lines[1].trim_start(), "bar");
assert_eq!(lines[2], "baz");
assert!(lines[0].len() > 3);
assert!(lines[1].len() > 3);
}
#[test]
fn dedent_removes_leading_indent() {
let mut editor = make_editor();
editor.set_text(" foo\n bar\nbaz".to_string());
let tab_len = get_ta(&mut editor).tab_length() as usize;
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Top);
ta.start_selection();
ta.move_cursor(ratatui_textarea::CursorMove::Bottom);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
editor.indent_lines(true);
let lines: Vec<String> = get_ta(&mut editor).lines().to_vec();
// line 0 had 4 leading spaces; up to tab_len removed.
assert_eq!(lines[0], format!("{}foo", " ".repeat(4 - tab_len.min(4))));
// line 1 had 2 leading spaces; up to min(2, tab_len) removed.
assert_eq!(
lines[1],
format!("{}bar", " ".repeat(2usize.saturating_sub(tab_len)))
);
assert_eq!(lines[2], "baz");
}
#[test]
fn dedent_no_leading_whitespace_is_noop_for_that_line() {
let mut editor = make_editor();
editor.set_text("foo".to_string());
editor.indent_lines(true);
assert_eq!(editor.get_text(), "foo");
}
#[test]
fn smart_enter_continues_unordered_list() {
let mut editor = make_editor();
editor.set_text("- foo".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "- foo\n- ");
}
#[test]
fn smart_enter_continues_ordered_list_increments() {
let mut editor = make_editor();
editor.set_text("1. foo".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "1. foo\n2. ");
}
#[test]
fn smart_enter_on_empty_list_marker_clears_line() {
let mut editor = make_editor();
editor.set_text("- ".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "");
}
#[test]
fn smart_enter_preserves_indent() {
let mut editor = make_editor();
editor.set_text(" body".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), " body\n ");
}
#[test]
fn smart_enter_on_empty_indent_dedents() {
let mut editor = make_editor();
editor.set_text(" ".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
let tab_len = get_ta(&mut editor).tab_length() as usize;
assert!(editor.smart_enter());
assert_eq!(
editor.get_text(),
" ".repeat(4usize.saturating_sub(tab_len))
);
}
#[test]
fn smart_enter_no_indent_no_marker_returns_false() {
let mut editor = make_editor();
editor.set_text("plain".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(!editor.smart_enter());
assert_eq!(editor.get_text(), "plain");
}
#[test]
fn smart_enter_mid_line_returns_false() {
let mut editor = make_editor();
editor.set_text("- foo".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::Head);
ta.move_cursor(ratatui_textarea::CursorMove::Forward);
ta.move_cursor(ratatui_textarea::CursorMove::Forward);
}
assert!(!editor.smart_enter());
}
#[test]
fn smart_enter_on_empty_indented_list_marker_dedents_keeping_marker() {
let mut editor = make_editor();
let tab_len = get_ta(&mut editor).tab_length() as usize;
let indent = " ".repeat(tab_len);
editor.set_text(format!("{indent}- "));
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "- ");
}
#[test]
fn smart_enter_on_empty_list_marker_clears_line_after_full_dedent() {
let mut editor = make_editor();
let tab_len = get_ta(&mut editor).tab_length() as usize;
let indent = " ".repeat(tab_len);
editor.set_text(format!("{indent}- "));
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
// First Enter: dedent to "- ".
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "- ");
// Second Enter at column == end-of-line: now cursor is at col 2 (end of "- ").
// Need to position cursor at end after the dedent.
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "");
}
#[test]
fn smart_enter_continues_list_with_non_ascii_content() {
let mut editor = make_editor();
editor.set_text("- 你好".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "- 你好\n- ");
}
#[test]
fn smart_enter_preserves_tab_indent() {
let mut editor = make_editor();
editor.set_text("\tbody".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), "\tbody\n\t");
}
#[test]
fn smart_enter_on_tab_only_line_dedents() {
let mut editor = make_editor();
editor.set_text("\t\t".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
// tab counts as one indent unit, regardless of tab_length spaces.
assert_eq!(editor.get_text(), "\t");
}
#[test]
fn smart_enter_continues_indented_list() {
let mut editor = make_editor();
editor.set_text(" - foo".to_string());
{
let ta = get_ta(&mut editor);
ta.move_cursor(ratatui_textarea::CursorMove::End);
}
assert!(editor.smart_enter());
assert_eq!(editor.get_text(), " - foo\n - ");
}
#[test]
fn unsupported_text_action_is_noop() {
let mut editor = make_editor();
editor.set_text("hello".to_string());
editor.apply_text_action(TextAction::Underline);
assert_eq!(editor.get_text(), "hello");
}
#[test]
fn textarea_hint_shortcuts_has_no_mode_indicator() {
let editor = make_editor();
let hints = editor.hint_shortcuts();
// None of the hint labels should be "NORMAL", "INSERT", etc.
assert!(
!hints
.iter()
.any(|(_, label)| label == "NORMAL" || label == "INSERT")
);
}
// ── link_at_cursor: label detection ──────────────────────────────────────
/// Helper: place cursor at a specific column on the first row.
fn place_cursor_at_col(editor: &mut TextEditorComponent, col: usize) {
let ta = get_ta(editor);
ta.move_cursor(ratatui_textarea::CursorMove::Head);
for _ in 0..col {
ta.move_cursor(ratatui_textarea::CursorMove::Forward);
}
}
#[test]
fn link_at_cursor_returns_label_when_cursor_on_hashtag() {
let mut editor = make_editor();
editor.set_text("see #rust now".to_string());
// "#rust" starts at col 4, ends at col 9 (5 chars). Place cursor at col 5 (inside).
place_cursor_at_col(&mut editor, 5);
assert_eq!(
editor.link_at_cursor(),
Some(LinkTarget::Label("rust".into())),
);
}
#[test]
fn link_at_cursor_returns_label_at_hash_char() {
let mut editor = make_editor();
editor.set_text("see #rust now".to_string());
// Cursor exactly on '#' (col 4).
place_cursor_at_col(&mut editor, 4);
assert_eq!(
editor.link_at_cursor(),
Some(LinkTarget::Label("rust".into())),
);
}
#[test]
fn link_at_cursor_returns_none_outside_hashtag() {
let mut editor = make_editor();
editor.set_text("see #rust now".to_string());
// Cursor at col 0 ("s") — not on a hashtag.
place_cursor_at_col(&mut editor, 0);
assert_eq!(editor.link_at_cursor(), None);
}
#[test]
fn link_at_cursor_returns_note_for_wikilink() {
let mut editor = make_editor();
editor.set_text("open [[my note]] please".to_string());
// "my note" is inside [[…]]; cursor at col 7 (inside link text).
place_cursor_at_col(&mut editor, 7);
let result = editor.link_at_cursor();
assert!(
matches!(result, Some(LinkTarget::Note(_))),
"expected Note variant, got {result:?}"
);
}
// ── F5: link_at_cursor prioritises Link over Label ────────────────────────
#[test]
fn link_at_cursor_returns_note_for_markdown_link_with_fragment() {
// "[see docs](#section)" — cursor on `#section` should return Note, not Label.
// After F3, the Label inside a link is never emitted, so the bug is
// structurally prevented. This test guards F5: even if a future edit
// accidentally adds a Label, Link wins because link_char_spans is checked first.
let line = "[see docs](#section)";
let mut editor = make_editor();
editor.set_text(line.to_string());
// "#section" starts at byte/char offset 11 (after "[see docs](").
let cursor = "[see docs](#sec".chars().count(); // col 15, inside #section
place_cursor_at_col(&mut editor, cursor);
let result = editor.link_at_cursor();
assert!(
matches!(result, Some(LinkTarget::Note(_))),
"expected Note variant for markdown link fragment, got {result:?}"
);
}
#[test]
fn vim_normal_i_then_typing_inserts_text() {
let mut settings = crate::settings::AppSettings::default();
settings.editor_backend = crate::settings::EditorBackendSetting::Vim;
let mut editor = TextEditorComponent::new(KeyBindings::empty(), &settings);
let (tx, _rx) = tokio::sync::mpsc::unbounded_channel();
// In Normal mode, 'x' is unmapped → no text change.
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('x'), KeyModifiers::NONE)),
&tx,
);
assert_eq!(editor.get_text(), "");
// 'i' enters Insert; then 'x' types a literal x via the direct path.
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('i'), KeyModifiers::NONE)),
&tx,
);
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('x'), KeyModifiers::NONE)),
&tx,
);
assert_eq!(editor.get_text(), "x");
}
/// Helper: construct a vim-backend editor.
fn make_vim_editor() -> TextEditorComponent {
let mut settings = crate::settings::AppSettings::default();
settings.editor_backend = crate::settings::EditorBackendSetting::Vim;
TextEditorComponent::new(KeyBindings::empty(), &settings)
}
/// Helper: extract the current vim EditorMode, panicking if the backend
/// is not a vim textarea (so test failures are obvious).
fn vim_mode(editor: &TextEditorComponent) -> EditorMode {
match &editor.backend {
BackendState::Textarea(tb) => match &tb.input {
backend::InputInterpreter::Vim(e) => e.mode().clone(),
_ => panic!("expected Vim input interpreter"),
},
_ => panic!("expected Textarea backend"),
}
}
/// Regression: a bare left click (Down with no Drag) must NOT flip
/// vim Normal → Visual. The textarea's Down arm calls `start_selection()`
/// which leaves a collapsed (start==end) selection; the fix at ~line 2124
/// uses `.is_some_and(|(s, e)| s != e)` to require a non-empty selection
/// before treating it as "real" (mirrors the same guard at ~line 1014).
///
/// We test `vim_sync_mouse_selection` directly (the exact code that was
/// broken) rather than routing through `handle_input` → `handle_mouse`,
/// which needs a fully rendered view to resolve screen→logical coordinates.
#[test]
fn vim_sync_collapsed_sel_stays_normal() {
let mut editor = make_vim_editor();
editor.set_text("hello world".to_string());
// Sanity: starts in Normal.
assert_eq!(vim_mode(&editor), EditorMode::Normal);
// A bare click leaves has_sel == false (collapsed selection filtered
// out by the is_some_and guard). Sync with no selection must keep Normal.
editor.backend.vim_sync_mouse_selection(false);
assert_eq!(
vim_mode(&editor),
EditorMode::Normal,
"collapsed (bare click) selection must not enter Visual mode"
);
}
/// A drag that creates a real (non-empty) selection DOES enter Visual mode.
#[test]
fn vim_sync_real_sel_enters_visual() {
let mut editor = make_vim_editor();
editor.set_text("hello world".to_string());
// Sanity: starts in Normal.
assert_eq!(vim_mode(&editor), EditorMode::Normal);
// A drag with start != end yields has_sel == true.
editor.backend.vim_sync_mouse_selection(true);
assert_eq!(
vim_mode(&editor),
EditorMode::Visual,
"real drag selection must enter Visual mode"
);
}
/// Regression: with the find bar open in vim Normal mode, typed keys must
/// go into the find query, NOT be processed by the vim engine (which would
/// treat 'l'/'o' as motions and move the cursor).
#[test]
fn vim_find_bar_captures_typing_not_cursor() {
let mut editor = make_vim_editor();
editor.set_text("hello world\nsecond line".to_string());
let (tx, _rx) = tokio::sync::mpsc::unbounded_channel();
// Open the find bar (same path as the '/' key: OpenSearch → open_or_advance_search).
editor.open_or_advance_search();
assert!(editor.search.is_some(), "find bar must be open");
// Type "lo" — should go into the find query, not be processed as vim motions.
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('l'), KeyModifiers::NONE)),
&tx,
);
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('o'), KeyModifiers::NONE)),
&tx,
);
// Find query must capture "lo". This proves keys went to the find bar
// and not the vim engine (which would treat 'l' as a rightward motion
// and 'o' as Open-line-below, mutating the buffer).
let q = editor
.search
.as_ref()
.map(|s| s.input.value().to_string())
.unwrap_or_default();
assert_eq!(q, "lo", "find query must capture typed characters");
// Buffer must be unchanged — 'o' in vim Normal mode inserts a new line,
// so a mutated buffer means the key escaped to the vim engine.
assert_eq!(
editor.get_text(),
"hello world\nsecond line",
"buffer must not be modified while find bar is open"
);
// The cursor is allowed to move to the first search match (that is
// correct search behaviour — refresh_search_pattern jumps to the hit).
// What must NOT happen is a vim motion: 'l' in Normal mode would leave
// the cursor at col 1 with no query update; here it must be at the
// "lo" match col instead (3 — the second 'l' in "hello").
assert_eq!(
editor.cursor_pos().1,
3,
"cursor must jump to the search match (col 3), not to a vim motion position"
);
}
/// Vim `/pattern` then Enter confirms the search: the find bar closes, the
/// cursor stays on the first match, and `n` / `N` navigate subsequent matches.
#[test]
fn vim_search_enter_confirms_and_n_navigates() {
let mut editor = make_vim_editor();
// Three "lo" at cols 0, 6, 12 on a single line.
editor.set_text("lo xx lo yy lo".to_string());
let (tx, _rx) = tokio::sync::mpsc::unbounded_channel();
// Open the find bar (same path as the '/' key: OpenSearch → open_or_advance_search).
editor.open_or_advance_search();
assert!(editor.search.is_some(), "find bar must open");
// Type "lo" — keys go into the find query (incremental search).
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('l'), KeyModifiers::NONE)),
&tx,
);
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('o'), KeyModifiers::NONE)),
&tx,
);
// Enter confirms in vim mode: closes the bar, cursor stays on match.
editor.handle_input(
&InputEvent::Key(key(KeyCode::Enter, KeyModifiers::NONE)),
&tx,
);
assert!(
editor.search.is_none(),
"find bar must close after Enter in vim mode"
);
// After confirming, 'n' must navigate to the NEXT match, not type into
// the (now-closed) find bar. Incremental search left the cursor at the
// first "lo" (col 0); 'n' should jump to the second one (col 6).
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('n'), KeyModifiers::NONE)),
&tx,
);
let (_, c1) = editor.cursor_pos();
assert_eq!(c1, 6, "'n' must jump to the 2nd 'lo' at col 6");
editor.handle_input(
&InputEvent::Key(key(KeyCode::Char('n'), KeyModifiers::NONE)),
&tx,
);
let (_, c2) = editor.cursor_pos();
assert_eq!(c2, 12, "'n' must jump to the 3rd 'lo' at col 12");
// The buffer must never have been modified.
assert_eq!(editor.get_text(), "lo xx lo yy lo");
}
}