-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.txt
1563 lines (1468 loc) · 101 KB
/
changelog.txt
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
lazy.nvim (H) Install (I) Update (U) Sync (S) Clean (X) Check (C) Log (L) Restore (R)
Profile (P) Debug (D) Help (?)
Total: 217 plugins
Breaking Changes (8)
○ leap.nvim <leader>F (x) <leader>T (x) h (o) . (o) <leader>f (o) <leader>t (o) r (o) rx (x) rp rP rx } rX S R { <cr><cr> t H (x) s T <leader>f (x) <leader>t (x) h (x)
87d206b fix(leap): set dot-repeat for unique targets too (3 hours ago)
565accc improv(leap/get-first-pattern-input): no need to echo `""` (2 days ago)
60d3bf9 refactor(leap): DRY (2 days ago)
cc0be53 refactor(leap): extract `keyboard-input?` flag (2 days ago)
b8728bd refactor(beacons): logical & stylistic tweaks (2 days ago)
785f540 refactor(search): improve `get-targets-in-current-window`, pt. 2 (3 days ago)
2d67558 refactor(search): improve `get-targets-in-current-window`, pt. 1 (3 days ago)
74b2ed7 fix(jump): use `nvim_win_set_cursor` instead of `vim.fn.cursor` (3 days ago)
812604b docs: recommend equivalence classes for brackets and quotes (6 days ago)
323d7cd refactor(highlight): consistency tweaks (7 days ago)
1f7c33f refactor(leap): call `set-beacons` for each sublist (7 days ago)
39362b8 refactor(leap): switch order of cases in `if` expression (7 days ago)
6ab6bc0 docs(help): fix `hlsearch` snippet (8 days ago)
179c992 docs: tweaks (8 days ago)
f9b9008 feat(api): add `<Plug>(leap)` (8 days ago)
bf5d64f style(leap): whitespace tweaks (12 days ago)
df578c6 refactor(leap): handle partial pattern in one place (12 days ago)
2ff8c88 fix(leap): always save repeat state when having a pattern (12 days ago)
154a775 docs(leap): remove obsolete comment (13 days ago)
89d878f fix(leap): `safe_labels = {}` should disable autojump unconditionally (2 weeks ago)
aa39714 refactor(leap/get-target-with-active-label): multival return (2 weeks ago)
78bf52d refactor(leap): make `set-dot-repeat` more self-contained (2 weeks ago)
c788e0b refactor(main): rename `prepare-targets` (2 weeks ago)
4e2209a refactor(leap): rename `_state.partial-pattern?` (2 weeks ago)
38fca17 style(leap): whitespace tweaks (2 weeks ago)
264f120 refactor(leap): minor tweak (autojump logic) (2 weeks ago)
1171b5a refactor(leap): improve phase-two traversal section (2 weeks ago)
8a6af4b refactor(leap): extract `can-traverse?` predicate fn (2 weeks ago)
7ee1c8d refactor(leap): more expressive flag names, vol. 3 (2 weeks ago)
6914b41 refactor(leap): improve condition expression (jump logic) (2 weeks ago)
6ef5426 fix(api)!: use `state` (again) for accessing `leap()` kwargs (3 weeks ago)
7049c92 refactor(main): improve `prepare-targets` & auxiliaries (3 weeks ago)
d74388c fix(api)!: make `event.data.args` a callback (3 weeks ago)
9857f64 fix(leap/get-target-with-active-label): third time is the charm (3 weeks ago)
07e71ee fix(leap/get-target-with-active-label): init `res` to `[]` (3 weeks ago)
3a3d210 style(plugin/init): readability tweaks (3 weeks ago)
5a5e5bc fix(plugin/init): accidental global in for loop (3 weeks ago)
cf8616b fix(leap): labels should work in traversal mode (3 weeks ago)
fbf4e3c refactor: more expressive flag names, vol. 2 (3 weeks ago)
c641fdb refactor(leap): more expressive flag names (3 weeks ago)
a0c5d9b refactor(leap): improve (dot-)repeat state management (3 weeks ago)
8624b35 improv: remove leftovers of multiselect mode (3 weeks ago)
90ca1de fix(api): wrap event.data.args in a metatable (3 weeks ago)
b41f486 refactor(leap): improve `get-target-with-active-label` (4 weeks ago)
ce16fae improv!: remove multiselect mode (4 weeks ago)
710364d refactor(main): make `init` self-contained (4 weeks ago)
03bf7a3 improv(api): use event data instead of exposing `state` (4 weeks ago)
ff5522a refactor(main): improve "init" section (4 weeks ago)
4eb6da5 refactor(highlight): remove unnecessary parameter for `highlight-cursor` (4 weeks ago)
cbd59fd refactor(main): rename `vars` to `_state` (4 weeks ago)
847a740 refactor: `strcharpart` -> `strpart` with `chars=true` (4 weeks ago)
9468f72 refactor(main): rename `get-number-of-highlighted-targets` (5 weeks ago)
d8b7323 refactor(main): make less use of esoteric Fennel macros (5 weeks ago)
657752e refactor: move some functions from `main` to `search` (5 weeks ago)
9327d8f refactor: extract `beacons` module (5 weeks ago)
2c4df85 docs: tweaks (5 weeks ago)
52f7ce4 docs(readme): suggest `tab` -> `backspace` switch (5 weeks ago)
6e2c62c refactor(search): tweak `sort-by-distance-from-cursor` (5 weeks ago)
fe3042e refactor(search): tweak `distance` (5 weeks ago)
88df2e3 refactor: use `nvim_get_current_win` instead of `win_getid` (5 weeks ago)
d3316ee refactor(search): rename variables (5 weeks ago)
5073530 refactor(search): tweak `get-match-postitions` (5 weeks ago)
d776820 docs(readme): tweaks (6 weeks ago)
a4faae0 docs(help): tweaks (6 weeks ago)
● none-ls.nvim 3.08ms LazyFile
18910d0 chore: Auto generate docs (2 hours ago)
63ae101 Adds htmlbeautifier formatter - for eruby files (#101) (2 hours ago)
72e25ed chore: Auto generate docs (6 days ago)
5902f41 feat(builtins): add Fortran findent code formatter (#96) (6 days ago)
e25d2fc chore: Auto generate docs (7 days ago)
9e38dcd builtins/formatting: Remove `-f` in sqlfluff (#95) (7 days ago)
bc543fa chore: Auto generate docs (8 days ago)
7228c8b feat: new builtin gleam format (#93) (8 days ago)
ff3819c chore: Auto generate docs (3 weeks ago)
6f07f57 chore: unretire puppet_lint (3 weeks ago)
e6d3abf chore: Auto generate docs (3 weeks ago)
92a0251 refactor(builtins)!: DROPPING UNMAINTAINED BUILTINS (#77) (3 weeks ago)
2236d2b chore: Auto generate docs (3 weeks ago)
1dad329 fix(codespell): escape special characters (#84) (3 weeks ago)
b4bd764 chore: fix typo (3 weeks ago)
c39e517 chore: Auto generate docs (3 weeks ago)
7274b0d chore!: remove cspell builtin (3 weeks ago)
793c607 chore: add a way to supress the deprecation warning (3 weeks ago)
9823294 chore: Auto generate docs (3 weeks ago)
966f538 chore: unretire puppet_lint (3 weeks ago)
4715e3e chore: Auto generate docs (4 weeks ago)
71b1d16 chore: unretire clang_format (4 weeks ago)
0f7e109 chore: Auto generate docs (4 weeks ago)
f81edad chore: add deprecating notice (4 weeks ago)
bb680d7 style: fix prettier errors (4 weeks ago)
64a0c55 ci: update pre-commit config (4 weeks ago)
2c83c59 autogen: sort builtins.json (4 weeks ago)
7e86ee4 chore: Auto generate docs (4 weeks ago)
fe5b7ce ci: update deps (4 weeks ago)
2d4d4f7 chore: Auto generate docs (4 weeks ago)
e438cbc fix(ktlint): diagnostic output parsing failing due to log output (#75) (4 weeks ago)
34b1311 chore: Auto generate docs (5 weeks ago)
8cffd72 feat(doc): Generate a JSON object containing all sources (#72) (5 weeks ago)
● nvim-lspconfig 62.36ms LazyFile
d67715d feat(eslint): add support for .cjs, .ts, .mts, .cts config files (#3083) (29 hours ago)
eb012f0 fix(basepyright): correct command (#3082) (2 days ago)
8c18318 docs: update server_configurations.md skip-checks: true (3 days ago)
e363cd7 feat: add tinymist (#3075) (3 days ago)
1fbc571 docs: update server_configurations.md skip-checks: true (3 days ago)
06db78c Correct schema for LSP server (#3079) (3 days ago)
1f3ef31 docs: update server_configurations.md skip-checks: true (4 days ago)
15a93b3 feat: add basedpyright support (#3078) (4 days ago)
61bf7c9 docs: update server_configurations.md skip-checks: true (4 days ago)
2b2a805 feat: add mesonlsp (#3076) (4 days ago)
5b364bd docs: update server_configurations.md skip-checks: true (5 days ago)
d35e598 fix: remove single file support for ast-grep (#3072) (5 days ago)
f3a106b feat: add regal (#3071) (5 days ago)
4bdd380 docs: update server_configurations.md skip-checks: true (9 days ago)
470402d feat: add jinja-lsp (#3069) (9 days ago)
1917b56 docs: update server_configurations.md skip-checks: true (10 days ago)
d6f9403 feat: add vacuum support (#3065) (10 days ago)
3f52bda docs: update server_configurations.md skip-checks: true (10 days ago)
94798ab fix(sourcekit): finding root directory (#3066) (10 days ago)
9933058 docs: update server_configurations.md skip-checks: true (11 days ago)
67c248f feat: update biome supported filetypes (#3063) (11 days ago)
b0749f9 docs: update server_configurations.md skip-checks: true (11 days ago)
2304fd7 fix(biome): add `biome.jsonc` as root pattern (new in biome 1.6) (#3061) (11 days ago)
16295b7 docs: update server_configurations.md skip-checks: true (12 days ago)
550c648 docs(vue): update vue support section (#3060) (12 days ago)
94cf4ad docs: update server_configurations.md skip-checks: true (13 days ago)
9a2fe6a fix(eslint): support eslint mjs flat config file (#3059) (13 days ago)
e172dd5 refactor: general cleanup (2 weeks ago)
e5e6002 docs: update server_configurations.md skip-checks: true (2 weeks ago)
6ae4776 feat: add config for some-sass-language-server (#3057) (2 weeks ago)
d006e0c fix: lexical root directory config (#3055) (2 weeks ago)
9ad7021 docs: update server_configurations.md skip-checks: true (2 weeks ago)
48364fb docs(lua_ls): change suggested setup (2 weeks ago)
b1fc956 docs: update server_configurations.md skip-checks: true (2 weeks ago)
28c5e77 feat: add configuration for Tabby ML (#3050) (2 weeks ago)
a1c9b24 docs: update server_configurations.md skip-checks: true (2 weeks ago)
75ab4fa fix: allow terraform-ls to start properly (#3051) (#3053) (2 weeks ago)
534a255 docs: update server_configurations.md skip-checks: true (2 weeks ago)
c9f387f docs: update documentation for Volar >= 2.0.0 (#3049) (2 weeks ago)
82a4b30 fix: update lua types to match latest nightly (#3048) (2 weeks ago)
7f5cf11 docs: update server_configurations.md skip-checks: true (2 weeks ago)
280ca49 fix(beancount): rename journalFile to journal_file (#3047) (2 weeks ago)
b43d52a docs: update server_configurations.md skip-checks: true (2 weeks ago)
bd2e75b docs: updated documentation for `harper-ls` (#3045) (2 weeks ago)
0b4cc60 docs: update server_configurations.md skip-checks: true (2 weeks ago)
f6b8701 fix(css_variable_lsp): improve default settings (#3046) (2 weeks ago)
c932a56 docs: update server_configurations.md skip-checks: true (3 weeks ago)
0959fc8 fix(css-variables): change - to _ in filename (#3044) (3 weeks ago)
083e36e docs: update server_configurations.md skip-checks: true (3 weeks ago)
6a62bc1 feat: add css-variables-language-server (#3042) (3 weeks ago)
32a82a0 docs: update server_configurations.md skip-checks: true (3 weeks ago)
d23cb95 docs(terraformls): add docs on how to pass settings (#3040) (3 weeks ago)
2badbe5 docs: update server_configurations.md skip-checks: true (3 weeks ago)
d4f4870 feat: add pico8-ls support (#3041) (3 weeks ago)
9553725 docs: update server_configurations.md skip-checks: true (3 weeks ago)
8ec68f7 feat: add markdown-oxide lsp (#3030) (3 weeks ago)
daa8ae2 docs: update server_configurations.md skip-checks: true (3 weeks ago)
078410f feat: add delphilsp support (#3034) (3 weeks ago)
0ebcaed docs: update server_configurations.md skip-checks: true (3 weeks ago)
91d12df docs(veryl_ls): update url of verly_ls (#3037) (3 weeks ago)
b1a11b0 fix(pyright): fix PyrightSetPythonPath command (#3032) (3 weeks ago)
ec7d51a docs: update server_configurations.md skip-checks: true (4 weeks ago)
ddfc22e fix(rust_analyzer): declare single file support (#3028) (4 weeks ago)
16029c2 docs: update server_configurations.md skip-checks: true (4 weeks ago)
eb89b17 docs(lua_ls): add comment about additional libraries (#3029) (4 weeks ago)
60c3bd3 fix(bqnlsp): do not override user provided `cmd_env` (#3026) (4 weeks ago)
b8751ff docs: update server_configurations.md skip-checks: true (4 weeks ago)
d0a4176 fix: let core handle 'workspace/didChangeConfiguration' after init (#3023) (4 weeks ago)
b22610c ci: clarify misleading comment from bot (4 weeks ago)
1015f07 docs: update server_configurations.md skip-checks: true (4 weeks ago)
6b264ff feat: add bqnlsp support (#3024) (4 weeks ago)
d5b6d43 docs: update server_configurations.md skip-checks: true (4 weeks ago)
5831021 fix(purescript-language-server): add 'spago.yaml' to the list of root_patterns (#3022) (4 weeks ago)
6b9f4bb docs: update server_configurations.md skip-checks: true (4 weeks ago)
8b04820 fix: rename twig-language-server to twiggy-language-server (#3021) (4 weeks ago)
303f3b3 docs: update server_configurations.md skip-checks: true (4 weeks ago)
39bbea3 fix: twig-language-server cmd (#3019) (4 weeks ago)
aa199c5 docs: update server_configurations.md skip-checks: true (4 weeks ago)
41406a7 feat: add gdshader-lsp support (#3018) (4 weeks ago)
1699ce1 docs: update server_configurations.md skip-checks: true (4 weeks ago)
bdc29fe fix(ocaml): trigger by filetype, not language id (#3016) (4 weeks ago)
d1bab4c docs: update server_configurations.md skip-checks: true (5 weeks ago)
e2703ae fix(typos_lsp): update repository url (#3012) (5 weeks ago)
114bf18 docs: update server_configurations.md skip-checks: true (5 weeks ago)
946c58c feat(solidity_ls)!: switch to first-party npm package (#3011) (5 weeks ago)
c656fe5 docs: update server_configurations.md skip-checks: true (5 weeks ago)
02c9b12 fix(quick_lint_js): enable for typescript (#3010) (5 weeks ago)
ae91a30 docs: update server_configurations.md skip-checks: true (5 weeks ago)
56e40a7 feat(docker-compse-lsp): add more filetype into docker compse server(#3008) (5 weeks ago)
76251e8 docs: update server_configurations.md skip-checks: true (5 weeks ago)
afb9339 fix(denols): add new deno.cache request implmention (#3007) (5 weeks ago)
a367cab ci: bump JohnnyMorganz/stylua-action from 3 to 4 (5 weeks ago)
e655c96 fix(texlab): search for default texlab root files (#3005) (5 weeks ago)
41f40dc docs: update server_configurations.md skip-checks: true (6 weeks ago)
80535f2 feat(fennel-ls): allow utf-8 offsetEncoding (#3002) (6 weeks ago)
● nvim-treesitter 34.04ms LazyFile
c28396d feat(rust): improve indents (3 hours ago)
3a92c54 bot(readme): update (4 hours ago)
cf685ce Add "just" parser (4 hours ago)
f60b33c bot(lockfile): update asm, c, d, html, svelte, v, wing (7 hours ago)
4d76587 fix(rust): dedent on macro definition end (14 hours ago)
3686029 fix(graphql): end indent after block (23 hours ago)
93a9632 feat(sql): highlight fields in column definition (27 hours ago)
19b726f feat(install): add blob filter to git clone command (#6325) (30 hours ago)
5c18302 bot(lockfile): update asm, cmake, glimmer, php, php_only, typst, vimdoc, wing (30 hours ago)
03f6507 Update Clojure highlights to be metadata aware (#6213) (2 days ago)
567a767 bot(lockfile): update asm, erlang, gleam, html, http, v, wing (2 days ago)
2014f82 feat: add vento support (#6261) (3 days ago)
e6d80e5 bot(lockfile): update arduino, cmake, dtd, http, mlir, ocaml, ocaml_interface, slint, swift, vimdoc, wing, xml (3 days ago)
6a2572c fix(latex): Fold \iffalse..\fi comments (4 days ago)
c4e0f29 feat(http): switch to new parser version (4 days ago)
bb3dd60 bot(lockfile): update c_sharp, glimmer, hyprlang, meson, mlir, ocaml, ocaml_interface, swift, v (4 days ago)
143ca5c feat(php): improve indents in return statements & chained methods (5 days ago)
df3e6a2 feat(hyprlang): add bash injections (5 days ago)
3c7a0e9 feat(rust): move pub to `@keyword.modifier` (5 days ago)
5b8458c fix(htmldjango): update highlights (5 days ago)
53891f1 bot(lockfile): update devicetree, dtd, htmldjango, perl, racket, scheme, v, wing, xml (5 days ago)
f5062eb feat(verilog): `@keyword.modifier` for lifetime (5 days ago)
8f5513a feat(rust,lalrpop): `@attribute` for lifetimes (5 days ago)
5d75359 feat(highlights)!: remove non-keyword `@type.qualifier` (5 days ago)
dccf31f feat(highlights)!: `@keyword.storage` → `@keyword.modifier` (5 days ago)
998b230 feat(highlights)!: keyword `@type.qualifier` → `@keyword.modifier` (5 days ago)
f878828 bot(readme): update (6 days ago)
b8f07b3 feat(yaml)!: switch upstream parser (6 days ago)
16398a6 bot(lockfile): update gitcommit, mlir, rnoweb, swift, vimdoc, wing (6 days ago)
904f373 feat(dot): add indents queries (7 days ago)
3ae78f3 fix(vimdoc): adapt to breaking Neovim change (7 days ago)
497fe68 bot(lockfile): update angular, awk, heex, html, kotlin, markdown, markdown_inline, sql, swift, wing (7 days ago)
35c1a32 * feat(ecma): styled injection for `css` and `keyframes` (8 days ago)
76f699d bot(lockfile): update kotlin, scala (8 days ago)
fec37b6 bot(lockfile): update angular, bash, c, cmake, cue, java, javascript, kotlin, lua, php, php_only, python, racket, ruby, rust, scala, scheme, slint, solidity, tlaplus, tsx, typescript, wing (8 days ago)
6576041 feat(vimdoc): highlight modeline (8 days ago)
e73c775 feat(swift): add init/deinit indents (8 days ago)
8d3176c fix(scripts): actually skip lockfile updates (9 days ago)
9d39f00 fix(php): highlight property access using nullsafe operator, move `@property` to `@variable.member` (10 days ago)
b781fd0 fix(c): improve doxygen comment matching (#6278) (10 days ago)
488bec0 bot(lockfile): update arduino, beancount, ocaml, ocaml_interface (11 days ago)
7ff51f5 bot(lockfile): update swift, vim, wing (12 days ago)
5720531 bot(lockfile): update mlir, wing (13 days ago)
b4553be fix(nickel): update highlights to grammar change (13 days ago)
9775d5d fix(luadoc): `@nospell` identifiers and keywords (2 weeks ago)
a0f18ee feat(markdown): highlight link label delimiter (2 weeks ago)
51d7c36 bot(lockfile): update python, wing (2 weeks ago)
c09932b bot(lockfile): update cue, gitcommit, wing (2 weeks ago)
cc6b108 bot(lockfile): update gleam, php, php_only, swift, wing (2 weeks ago)
212b7a5 fix(angular): typo in capture name (#6249) (2 weeks ago)
70f0382 bot(lockfile): update puppet, swift, t32, wing (2 weeks ago)
e479db6 fix(sourcepawn) update queries to grammar change (#6247) (2 weeks ago)
63ca90e feat(swift): add will/didSet indent (3 weeks ago)
3d08cdd fix(comment): remove duplicate 'FIXME' (3 weeks ago)
8a9bef9 bot(readme): update (3 weeks ago)
9e1f3c3 feat: add gotemplate and helm parser support (3 weeks ago)
f8d4e5c bot(lockfile): update arduino, gpg, sourcepawn, ssh_config, vue, wing (3 weeks ago)
00bd760 feat(csharp): highlight excape sequences (#6229) (3 weeks ago)
533ad65 feat: map automake to make (3 weeks ago)
99ddf57 feat(highlights)!: enforce documented captures (#6232) (3 weeks ago)
22c5a0d ci: teach bot about conventional commits (3 weeks ago)
e3e5ff4 Update README (3 weeks ago)
ada920f feat(vue): switch to new parser (#6233) (3 weeks ago)
a47540f Update parsers: vimdoc (3 weeks ago)
cbaad19 Update parsers: sourcepawn (3 weeks ago)
c2a2651 Update parsers: beancount, requirements, v, wing (3 weeks ago)
30a41f5 ci: bump create-pull-request to v6 (3 weeks ago)
3ad0e41 fix(astro): update to scanner rewrite (3 weeks ago)
8e349b1 feat(gitcommit): highlight overflow in commit body (3 weeks ago)
62b0bb4 feat(format): extra newline after modeline (3 weeks ago)
84daea5 Update parsers: angular, gitcommit, vimdoc, wing (3 weeks ago)
06b5fda feat: add support for gdshader (#6153) (3 weeks ago)
4349af8 Update parsers: chatito, gitattributes, gitcommit, gpg, groovy, hlsl, mermaid, pem, poe_filter, properties, pymanifest, requirements, ssh_config, udev, wing, xcompose (3 weeks ago)
4a8901b feat(beancount): refactor scanner to c (3 weeks ago)
d2f58c0 Update parsers: dtd, gitattributes, hyprlang, tcl, wing, xml (3 weeks ago)
c5b19f6 fix(typst): adapt queries to breaking parser update (3 weeks ago)
15d521c fix(purescript): comment out utf-8 char (3 weeks ago)
31d0648 Update parsers: angular, javascript, nim, perl, python, typst, wing (3 weeks ago)
db12bd4 Update parsers: fidl, haskell, nickel, python, solidity, wing (3 weeks ago)
18aa5ae feat(c): local label highlights (3 weeks ago)
fad40f2 Update parsers: arduino, php, php_only, wing (3 weeks ago)
6e2b56c feat(cooklang): update to scanner rewrite (4 weeks ago)
6f1f407 feat(rust): add more regex injection queries (4 weeks ago)
ede5b46 Update parsers: gpg, properties, pymanifest, requirements, rust, ssh_config, swift, udev, v (4 weeks ago)
9896ef5 feat(gdscript): update parsers and queries. (#6176) (4 weeks ago)
c06292f Update parsers: c, fennel, gitattributes, json, nim, pem, poe_filter, printf, readline, sourcepawn, wing, xcompose (4 weeks ago)
adf7236 feat(nickel): adapt to scanner rewrite (4 weeks ago)
e105b5e feat(properties): update parser & queries (4 weeks ago)
e159a53 fix(fidl): remove requires_generate_from_grammar (4 weeks ago)
f148c8a Update parsers: arduino, cmake, dtd, fidl, mlir, perl, slint, sourcepawn, wing, xml (4 weeks ago)
31641d7 feat(format-scripts): linewrap predicates (4 weeks ago)
a29058f feat(faust): better highlighting of function calls, built-in variables, and member access (4 weeks ago)
9ecf980 Update README (4 weeks ago)
a8d2b54 feat: add fidl parser (4 weeks ago)
19bf991 feat(c-sharp): add enum member declaration highlight query (4 weeks ago)
1398b1b Update parsers: cmake, dtd, faust, fennel, gdscript, html, lua, php, php_only, rust, sourcepawn, typst, vim, wing, xml (4 weeks ago)
ebf0532 feat(chatito): update queries (4 weeks ago)
ca46eb3 fix(highlights): highlight @type in phpdoc (4 weeks ago)
977d949 Update README (4 weeks ago)
7d1bab6 feat(fennel)!: switch to maintained parser (#6132) (4 weeks ago)
71ae32c docs(template): use builtin commands (4 weeks ago)
d1484a1 feat: improve queries/muttrc/highlights.scm (4 weeks ago)
455f658 feat(query): indents that reflect the formatter (#6154) (4 weeks ago)
01cdcfb highlights(slang): add support for `where` (4 weeks ago)
c4c1f51 Update parsers: cuda, dtd, gdscript, hlsl, readline, slang, sourcepawn, wing, xml (4 weeks ago)
6bd108a feat(typst): add raw block injections (4 weeks ago)
7eeb26e feat(ecma): folding for function arguments (4 weeks ago)
d87074a Update parsers: gdscript, hlsplaylist, html, muttrc, wing, zathurarc (4 weeks ago)
ea3dded fix(meson): adapt to renamed node (4 weeks ago)
1f6bd57 ci: remove mergify.yml as it's no longer used (4 weeks ago)
917d696 fix(scripts): add missing \n for nested grouping (4 weeks ago)
4b27f87 fix(scripts): format-queries defaults to cwd (4 weeks ago)
e04ce8b feat: add tmux parser (4 weeks ago)
5b3e986 ci: simplify cache key (4 weeks ago)
9bc2196 fix: typos (4 weeks ago)
3a7b5a9 feat(svelte)!: switch upstream parser (4 weeks ago)
b3e53e9 Update parsers: c, cpp, elm, html, markdown, markdown_inline, swift, vimdoc (4 weeks ago)
4704d7a Update README (4 weeks ago)
f857a96 fix(bass): revert to upstream parser (#6131) (4 weeks ago)
d10e856 feat(beancount): add comment injection (5 weeks ago)
8e1df60 chore(puppet): update queries (5 weeks ago)
fef26b5 fix(format): fix nested grouping indentation (#6128) (5 weeks ago)
5e4b657 fix(typst): add lockfile entry (5 weeks ago)
34cb6a4 Update README (5 weeks ago)
13e4e75 fix(typst): remove unneeded (blob) @markup.raw capture (5 weeks ago)
4640135 fix(typst): nest @markup.raw.block capture (5 weeks ago)
3f2f770 fix(typst): nest @variable.member highlight capture (5 weeks ago)
bdff1ab style(typst): group fold clauses (5 weeks ago)
9772dd1 style(typst): merge @punctuation.bracket clauses (5 weeks ago)
097d6ff fix(typst): move comment query to the bottom (5 weeks ago)
f85b205 style(typst): format queries (5 weeks ago)
06d575e fix(typst): prevent highlighting entire function calls (5 weeks ago)
c76e7e2 fix(typst): correct highlight captures (5 weeks ago)
b3847b9 feat(typst): add comment injection (5 weeks ago)
4cb1595 feat(typst): add #show to fold and indent queries (5 weeks ago)
2ba58a4 feat(typst): add highlight queries (5 weeks ago)
ab3ec33 feat: add typst parser (5 weeks ago)
87bc770 style: format queries (5 weeks ago)
c920b66 feat: add typst queries (5 weeks ago)
5d9e12c fix(bash): unordered concatenation highlights (5 weeks ago)
f75a5b4 Update parsers: d, swift, wgsl_bevy (5 weeks ago)
42acc3f refactor(ecma): delimiter highlight consolidation (5 weeks ago)
17d68ac feat(rust): add doc comments (5 weeks ago)
eb1914b feat(latex): more text func highlights (5 weeks ago)
47d013d Update parsers: c, javascript, rust, wing (5 weeks ago)
504fe10 feat(ecma): highlight label identifiers (5 weeks ago)
581e87b Update parsers: glsl, hlsl, hlsplaylist, muttrc, purescript, query, wing, zathurarc (5 weeks ago)
d49a8f8 highlights(slang): add support for `associatedtype` (5 weeks ago)
bdaa6b8 Update parsers: agda, bash, c, c_sharp, cpp, css, devicetree, dtd, embedded_template, go, haskell, html, java, javascript, jsdoc, json, julia, kotlin, ocaml, ocaml_interface, php, php_only, python, ql, regex, ruby, rust, scala, slang, sql, tsx, typescript, verilog, wing, xml, zathurarc (5 weeks ago)
1ea4a0a fix(haskell): comment out unsafe utf8 node (5 weeks ago)
e32ebdc feat: change some ft, lang pairs (5 weeks ago)
e4a1cc6 feat: add the muttrc parser (5 weeks ago)
69e4b99 fix(latex): update bibstyle queries (#6102) (5 weeks ago)
d96bf9d fix(python): better try-except indentation (#6097) (5 weeks ago)
5a5cabd feat: add the hlsplaylist parser (5 weeks ago)
883c72c Update parsers: tcl, wing (5 weeks ago)
7e9139d feat(lalrpop): highlight annotation macros (5 weeks ago)
f634287 Update parsers: c, chatito, dtd, lalrpop, properties, query, slint, wing, xml, zathurarc (5 weeks ago)
1c72e79 fix(yuck): comment out start-of-line parens (5 weeks ago)
2b60202 fix(cpp): add back comment injection (5 weeks ago)
4416d21 Update README (5 weeks ago)
1843594 Update parsers: arduino, bash, chatito, dtd, gitattributes, gpg, pem, poe_filter, printf, properties, pymanifest, rasi, requirements, scala, ssh_config, swift, udev, wing, xcompose, xml, zathurarc (5 weeks ago)
02ff222 fix(xml): adapt to repo layout change (5 weeks ago)
10d79b5 Update parsers: properties, scala, slang, wing, zathurarc (5 weeks ago)
10e8dff feat(jsx): spell check text nodes (#6083) (6 weeks ago)
b52b298 chore(v): update lockfile (6 weeks ago)
0aa7131 chore(v): update repository url (6 weeks ago)
9860fce fix: use augroup for auto_install autocmds (6 weeks ago)
96f190f Update parsers: bash, cpp, dart, gitattributes, hyprlang, ruby, wing, zathurarc (6 weeks ago)
6444286 ci: fix invalid workflow (6 weeks ago)
143a342 ci: use `windows-latest` over `windows-2022` (6 weeks ago)
05962ae chore(bash): update parser and highlights (6 weeks ago)
baf4581 feat(ecma): highlight decorator and destructuring (6 weeks ago)
817ca60 Update parsers: arduino, bash, beancount, cpp, dtd, luadoc, slint, wing, xml (6 weeks ago)
841dde7 fix(readline): more descriptive version number hl (6 weeks ago)
8ec79c4 fix(readline): proper indents while editing (6 weeks ago)
aa805bf Update README (6 weeks ago)
b8840a4 feat(tcl): add parser and queries (6 weeks ago)
51d15ef Update README (6 weeks ago)
6b93dcd chore(vue): adapt to scanner rewrite (#6068) (6 weeks ago)
9503647 feat: add sourcepawn parser and queries (#5865) (6 weeks ago)
3dbea10 Update README (6 weeks ago)
0f3183d feat(slint)!: change to the official parser (#6027) (6 weeks ago)
● rainbow-delimiters.nvim 0.72ms LazyFile
2200900 Add missing pattern to Typst, update changelog (6 days ago)
fe0b2ef feat(typst): add Typst lang support (6 days ago)
cfc3f53 Fix name of busted shim in makefile (3 weeks ago)
4902de7 Rename busted shim (3 weeks ago)
2dd78f3 Fix Neovim shim for parallel runs (3 weeks ago)
64b7006 Update changelog (4 weeks ago)
5ec0504 fix(fennel)!: update queries to reflect new upstream parser (4 weeks ago)
161eb67 Add a shim for busted (4 weeks ago)
90bab50 Fix up 'clean' target in makefile (4 weeks ago)
4d2d3f9 Handle command-line arguments in shim (5 weeks ago)
e03cdde Add Svelte support (5 weeks ago)
df0a57a Maintain symlink only during test session (5 weeks ago)
586f44d Enabled disabled tests (5 weeks ago)
48c579c Merge branch 'rasi-init' (6 weeks ago)
2d3e5ab Update changelog (6 weeks ago)
2e48a5e Update changelog (6 weeks ago)
404402c feat: add support for rasi (6 weeks ago)
cfccf1e feat(go): add type_assertion_expression pattern for go (6 weeks ago)
3674761 Add missing patterns to Python (6 weeks ago)
ca8d5ee Transition E2E to use the yo-dawg plugin (7 weeks ago)
6c7d918 Move extmark assertion to testing configuration (7 weeks ago)
5941c8d Create test utilities (7 weeks ago)
ae0b064 Gracefully quit Neovim in E2E tests (7 weeks ago)
c84eeb6 Remove configuration settings caching (8 weeks ago)
d760de3 Merge branch 'luadoc-updates' (8 weeks ago)
12b2150 Clean up style of Luadoc query (8 weeks ago)
3bfc349 Update changelog (8 weeks ago)
cddb40d Merge branch 'py-import-from' (8 weeks ago)
c85384a Update changelog (8 weeks ago)
8908741 Add test for highlighting nested changes (8 weeks ago)
8b0e920 fix(luadoc): add new luadoc queries (8 weeks ago)
ad18af0 fix: improve global strategy (8 weeks ago)
334e002 fix(starlark): add `tuple_pattern` query (8 weeks ago)
36ba6bb fix(python): add `import_from_statement` query (8 weeks ago)
35530b4 Implement functions for checking if rainbow is enabled in buffer (8 weeks ago)
a5077cb Update changelog (9 weeks ago)
3914140 Merge branch 'python-tuple' (9 weeks ago)
bf83c04 Merge branch 'new-queries' (9 weeks ago)
c460280 Unify indentation in Java test file (9 weeks ago)
f225bc8 fix(python): add missing tuple_pattern query (9 weeks ago)
e023be2 Translate buffer manipulation test to Busted (9 weeks ago)
fccdb0a Fix buffer attachment test (9 weeks ago)
1951d15 Translate local strategy tests to Busted (9 weeks ago)
f615cd8 Translate remaining global strategy tests (9 weeks ago)
2ab5fee Translate global "does not reactivate" test (9 weeks ago)
3eb169e Translate buffer unloading test to Busted (9 weeks ago)
535f174 Merge branch 'HiPhish:master' into new-queries (9 weeks ago)
fcdb535 Translate toggling test to Busted (9 weeks ago)
8b6099f Translate file type switch test to Busted (9 weeks ago)
cf626cd Translate "cleanup after bdelete" test to Busted (9 weeks ago)
f39a9cd Translate buffer attachment test to Busted (9 weeks ago)
8843562 Add .luarc.json (9 weeks ago)
80ee86a Avoid reinstalling parser in tests (9 weeks ago)
bbe08e1 Translate selective activation test to Busted (9 weeks ago)
7c171bb Add end-to-end tests for configuration (10 weeks ago)
0c550bc Add unit testing for the stack structure (10 weeks ago)
3aec5ab fix: new queries for `java` and `lua` (2 months ago)
739a034 Merge branch 'rust-array-type' (2 months ago)
c516029 Update changelog (2 months ago)
b018426 Fix indentation in Java test file, update changelog (2 months ago)
06db8ab Merge branch 'HiPhish:master' into java-resource-specification-query (2 months ago)
610d2d3 fix(java): `resource_specification` query (2 months ago)
eda7156 fix(rust): add missing query `array_type` (2 months ago)
18d1350 Add Java test-case for multi-dimensional dimensions (3 months ago)
da7e401 fix: java `dimensions` highlight (3 months ago)
f7a5527 Add Examples to Java (3 months ago)
acebeb8 fix: annotation delimiter query (3 months ago)
3f33fb6 feat: add missing `java` delimiters (3 months ago)
4a90ac8 Merge branch 'health-fix' (3 months ago)
668edb1 fix: type and checkhealth updates (3 months ago)
1ed4613 Add XML support (3 months ago)
a249476 Release version 0.3.0 (3 months ago)
9c4639a Add Christmas strategy module (3 months ago)
35413f6 Update changelog (3 months ago)
e78b01a feat: query for only react tags in jsx,tsx (3 months ago)
dfac7cd Merge branch 'c-queries' (3 months ago)
5140e28 Update changelog (3 months ago)
63d52b0 Add more `c` queries (3 months ago)
a27051f Update README (3 months ago)
e4fb8bd feat(elixir): added query for access_call (3 months ago)
b510fd4 Add missing `table_binding` pattern in Fennel (3 months ago)
bc42902 Update changelog (3 months ago)
a54da1a fix(nim): updated fields to work with recent parser version (3 months ago)
0b4c1ab Fix a type annotation (3 months ago)
cc1783c Allow arguments in configuration functions (3 months ago)
cc5f3a0 Evaluate config thunks in specific buffer context (3 months ago)
65939c2 Add ability to query relative to a given buffer (3 months ago)
c1635c2 Update changelog (3 months ago)
cb6a27a Merge branch 'bazel' (3 months ago)
08053f4 Add Starlark highlight test file (3 months ago)
b61a743 Update changelog (3 months ago)
40db8ad Merge branch 'bash-additions' (3 months ago)
487abfe Merge branch 'indent-strategy' (3 months ago)
d2ee5e7 Update changelog (3 months ago)
6ee14cf Adjust manual (3 months ago)
78b2eb3 Update changelog (3 months ago)
fb36cbc feat(starlark): add support for Starlark filetype (3 months ago)
84fc4ba feat(bash): add additional queries (3 months ago)
674c03e Add missing c query (3 months ago)
8fbbc14 Update docs (4 months ago)
b2377da Allow query choice via function (4 months ago)
790448c Add `query` rainbow-blocks queries (4 months ago)
4740463 Release version 0.2.0 (4 months ago)
6aaaf11 Minor code formatting cleanup (4 months ago)
c7472dc Reformat changelog (4 months ago)
86216eb Update changelog (4 months ago)
db8e18b Add luadoc types for terraform (4 months ago)
55f7d44 feat(go): add queries for slice_expression and array_type (4 months ago)
00eede7 feat(scss): add query for mixin parameters (4 months ago)
a237751 feat(css): add more queries (4 months ago)
6906560 feat(hcl): add additional queries (4 months ago)
32a3013 feat(terraform): inherit queries from HCL (4 months ago)
fdd5074 Add highlight priority setting (4 months ago)
a2da59b Merge branch 'LuaLS' (4 months ago)
db6be21 Add note on types to CONTRIBUTING.rst (4 months ago)
589917a Add more types for better LSP info (4 months ago)
7f3cfa0 Merge branch 'luadoc' (4 months ago)
60863dd Update changelog (4 months ago)
308db2f Add luadoc queries (4 months ago)
c6dce36 Kotlin: fix pattern for `when` without subject (4 months ago)
8ee0af5 Fix `when` pattern in Kotlin (4 months ago)
fb7272c Update changelog (4 months ago)
72a74d6 add kotlin support (4 months ago)
0722103 Merge branch 'toml' (4 months ago)
d946fac Update changelog (4 months ago)
f1d4bab Merge branch 'nix-update' (4 months ago)
6926e1f Update changelog (4 months ago)
dc07352 Update changelog (4 months ago)
eb2e0af feat(toml): add support for TOML (4 months ago)
0e96d96 feat(nix): add support for recursive and inherit attributes (4 months ago)
650f762 Match switch statements in ts/js (4 months ago)
7694368 Add modeline to templ test file (4 months ago)
7cf7199 Merge branch 'cue' (4 months ago)
6440c97 Update changelog (4 months ago)
3dc8b63 Update changelog (4 months ago)
9a1ffa2 feat(templ): add queries for script and css declarations (4 months ago)
98f9a86 feat(cue): add queries (4 months ago)
5438ed6 Update changelog (4 months ago)
c2701ef feat(templ): add queries (4 months ago)
1731829 Bug fix - fixes #59 (4 months ago)
538b4ae Minor lua code fixes (4 months ago)
fd243cd Minor docs fixes (4 months ago)
ffb31be Merge branch 'html-tag-names' (4 months ago)
4ebe573 Add comment on using only tag names in html (4 months ago)
a3cfa42 Fix README (4 months ago)
efcbf8b Add new screenshots to README (4 months ago)
6e00f6b Update changelog (4 months ago)
0e3ebd0 Merge branch 'aMOPel/master' (4 months ago)
727b418 feat(nim): added queries and tests (4 months ago)
9515abd Release 0.1.0 (4 months ago)
2003d6d Merge branch 'Cleanup' (4 months ago)
4586784 Minor cleanup (4 months ago)
9492c13 feat(elm): Add elm queries (4 months ago)
a5e8fb4 Remove large ASCII art header from manual (4 months ago)
ac045ca Add file type to code listings in manual (4 months ago)
63cbaef Update README (4 months ago)
67d360c Update queries and test files to new logic (5 months ago)
a298d32 Update documentation for new delimiter captures (5 months ago)
5a91998 Switch highlighting logic to delimiter captures (5 months ago)
df8cdf6 Merge branch 'go-index' into 'master' (5 months ago)
a3ace1c feat(go): add query for index expression (5 months ago)
● telescope-frecency.nvim 0.17ms telescope.nvim
dde0b71 feat: access to DB as lazily as possible (#180) (6 hours ago)
747894e feat: use improved telescope's matcher (#184) (29 hours ago)
8e3e5ba fix: detect nullable config values (#183) (3 days ago)
ebf2278 fix!: disable registration for floating windows (#181) (4 days ago)
bd52772 fix!: change timing for initialization (#179) (7 days ago)
771726f feat: match like 'smartcase' (#177) (4 weeks ago)
4f3e007 feat: `hide_current_buffer` option (#176) (5 weeks ago)
5c53023 docs: fix typo (#174) (5 weeks ago)
● vim-matchup 3.86ms nvim-treesitter
2d660e4 feat(svelte)!: adapt queries to new parser (#339) (4 weeks ago)
○ vimtex tex
73605f8 doc: revert and clarify VimtexEventQuit note (27 hours ago)
c2a709f doc: remove outdated comment and add Lua example (27 hours ago)
577f7c5 merge: fix minor typos in comments/documentation (6 days ago)
babd4a6 chore: fix some comments (6 days ago)
9ce62bb merge: remove repetitive words (7 days ago)
b80cb5d chore: remove repetitive words (8 days ago)
a1b7524 fix: regression error (9 days ago)
a77d14b doc: show lazy.nvim example (2 weeks ago)
0cb12b4 doc: add another tip for zathura+macos in the faq (3 weeks ago)
2bb7cdc fix(syntax): minor issue with asymptote (3 weeks ago)
afac402 fix: ensure data exists before using it (3 weeks ago)
88eca56 feat!: pass argument to out_dir function (4 weeks ago)
01c4c16 feat(syntax): match item label (4 weeks ago)
f9161b4 merge: support more superscripts (4 weeks ago)
e580984 fix(syntax): allow new superscript conceals in guard (4 weeks ago)
749317b feat(conceal): support more superscripts (4 weeks ago)
9df79e1 test: add test for fold fake sections (6 weeks ago)
4705d6c test: add test for fold markers (6 weeks ago)
24e9620 test: improve vimtex#test#finished output (6 weeks ago)
Updates (84)
○ actions-preview.nvim
5072b1b fix: `Buffer is not 'modifiable'` in nui backend (#37) (12 days ago)
9c4ae6f fix: `Buffer is not 'modifiable'` in nui backend (12 days ago)
2410f7c Fix issues with closing menu in nui backend (#36) (12 days ago)
4f04936 fix: cursor is shifted after submitting in nui backend (12 days ago)
80d4f23 fix: bufs and procs remain after submitting in nui backend (12 days ago)
55309e1 fix: popups are not cached in nui backend (12 days ago)
55c76cb fix: nui wrong window focus (#33) (12 days ago)
3cd1d33 fix: nui wrong window focus (3 weeks ago)
5c240e6 fix: error occurs when disabling preview in telescope backend (#30) (4 weeks ago)
88f95ff fix: error occurs when disabling preview in telescope backend (4 weeks ago)
eb4abde Update README for users utilizing highlight_command on Windows (#29) (4 weeks ago)
1544502 docs: update README for Windows users (4 weeks ago)
○ advanced-git-search.nvim
36a380a feat: custom keymaps (#64) (18 hours ago)
○ bufdelete.nvim Bwipeout Bdelete
f6bcea7 fix: use nvim_buf_is_loaded instead of nvim_buf_is_valid (4 weeks ago)
○ bullets.vim
0cc28d5 Merge pull request #135 from huynle/master (13 days ago)
696d6d0 Merge branch 'master' into master (7 weeks ago)
af1d45c adding support for '- [ ]: ' checkboxes (1 year, 3 months ago)
○ catppuccin
045e349 feat: set `@comment.warning` that does not affect readability in gitcommit (#675) (2 weeks ago)
c0de3b4 feat(treesitter): add styles.miscs to disable hardcoded italics (#659) (4 weeks ago)
42b687c fix: repair treesitter underlined text (`Underline` -> `Underlined`) (#663) (4 weeks ago)
836de8b fix(compile): string.dump isn't deterministic (4 weeks ago)
9703f22 fix: ensure consistency between JSX and HTML markup (#660) (5 weeks ago)
b76ada8 fix: wrong color shown when using color_overrides (#658) (5 weeks ago)
● codeium.nvim 9.36ms nvim-cmp
73ba2a3 Fix gsub usage on Windows (#154) (9 days ago)
cd5913f Handle MINGW32_NT-10.0 sysname of MSYS2 on Windows (#145) (5 weeks ago)
103da3c feat: Enterprise mode support (#144) (5 weeks ago)
○ codicons.nvim
8f9bced #3 Update "How to patch fonts" instructions (3 days ago)
● crates.nvim 3.78ms nvim-cmp
b4f4987 chore: add checkhealth input field to issue template (8 days ago)
535773e feat: [update|upgrade]_crates() when still in visual mode (2 weeks ago)
○ debugprint.nvim dPV dpv dPP <leader>dp (x) dpp <leader>dP (x)
2ba2dca test: Install missing parsers for GitHub (2 days ago)
eca577a chore: Auto generate Vim docs (2 days ago)
a9a09ae feat: Use dynamic lang detect - closes #9 (2 days ago)
3f9f2ed chore: Auto generate Vim docs (3 days ago)
3e8e393 feat: Support `left_var` - closes #82 (3 days ago)
f71d7e1 docs: Improve elevator pitch (3 days ago)
39d2129 chore: Remove deprecated field (2 weeks ago)
1062044 chore: Update actions to non-deprecated versions (2 weeks ago)
f51d238 chore: Auto generate Vim docs (2 weeks ago)
159c752 Merge pull request #81 from andrewferrier/release-please--branches--main--components--debugprint.nvim (2 weeks ago)
3e3650c chore(main): release 1.8.0 (4 weeks ago)
4432f91 chore: Auto generate Vim docs (4 weeks ago)
5466b63 docs: Link to JavaScript logging levels (4 weeks ago)
d8bc418 feat: Add Haskell support (4 weeks ago)
63a28d1 feat: Add Fortran support (4 weeks ago)
feeada4 chore: Auto generate Vim docs (4 weeks ago)
a66080c docs: README fixes (4 weeks ago)
38ac95c chore: Auto generate Vim docs (4 weeks ago)
845d7d7 Merge branch 'rish987-add-lean' (4 weeks ago)
b728f13 docs: Add lean to docs (4 weeks ago)
f4f1fc5 add Lean filetype (4 weeks ago)
○ dracula.nvim
8d8bddb Add back symbol highlighting (#124) (4 weeks ago)
○ duck.nvim
d8a6b08 Merge pull request #11 from worming004/main (2 weeks ago)
6e4bb7e Retro compatibility (2 weeks ago)
eef7274 Update duck.lua for neovim 0.10+ (2 weeks ago)
0ca969d Merge pull request #10 from Root-lee/main (3 weeks ago)
085ba02 Update duck.lua (3 weeks ago)
e408c2f Update README.md (5 weeks ago)
812271c add cook_all function (5 weeks ago)
○ flit.nvim
04f744b improv: highlight cursor only for nvim < 0.10 (2 days ago)
9441924 refactor: `strcharpart` -> `strpart` with `chars=true` (4 weeks ago)
717c7cd fix: force `safe_labels` into a table before iterating (4 weeks ago)
edd9606 style: consistent single quotes (4 weeks ago)
73ceb5e fix(backdrop): single-line forward doesn't apply backdrop highlight (4 weeks ago)
○ fold-cycle.nvim
6dc8052 format with spaces instead of tabs (4 days ago)
a2573c5 add testfile.lua for testing (4 days ago)
0d529d8 add minimal nvim init for testing (4 days ago)
6dad293 fix detection of ufo (4 days ago)
55442cf Merge pull request #6 from ESSO0428/main (4 days ago)
bb1e880 Update fold-cycle.lua (ufo support) (3 weeks ago)
4e3f457 feature-global-fold-toggle (3 weeks ago)
○ friendly-snippets LuaSnip
dcd4a58 Remove some none (#409) (4 weeks ago)
dbd45e9 add new snippet for vue (#404) (5 weeks ago)
00ac993 Add PureScript snippets (#401) (5 weeks ago)
b4bc233 feat(ruby): add binding.break snippet (#403) (5 weeks ago)
ad4fe8c feat(editorconfig): add editorconfig snippets (#392) (5 weeks ago)
5cc1f45 Removes snippets for vue2 (#396) (5 weeks ago)
4086781 Added Github Alerts (#402) (5 weeks ago)
a45fd0b feat(kubernetes): set default container (#399) (5 weeks ago)
a227a1a feat: add snippet for debugpy remote attach (#397) (5 weeks ago)
7d5f845 Reorder html5 document template (#393) (5 weeks ago)
4368924 remove extra spaces in deployment and pod snippets (#390) (5 weeks ago)
efdd763 feat(global): Add UUID snippet (#386) (5 weeks ago)
97207ad Add rfv for React, compatible with Vite (#384) (5 weeks ago)
b6a8d1e add blade snippets (#374) (5 weeks ago)
● gitsigns.nvim 0.66ms LazyFile
078041e fix(watcher): improve buffer check in handler (4 days ago)
4e34864 fix(git): support older versions of git (8 days ago)
41dc075 fix: changedelete symbol with linematch enabled (9 days ago)
● haskell-tools.nvim 0.15ms nvim-lspconfig
d8b57f0 build(deps): Bump cachix/install-nix-action from 25 to 26 (#352) (10 days ago)
255c62a build(deps): Bump DeterminateSystems/update-flake-lock from 20 to 21 (#350) (2 weeks ago)
fe24eab chore: update flake.lock (#349) (3 weeks ago)
96162e8 build(nix): use gen-luarc framework (3 weeks ago)
2094a61 chore: remove .luarc.json (3 weeks ago)
0f95fb8 chore: update flake.lock (#348) (4 weeks ago)
217cb79 revert: don't run `ftplugin` more than once on the same buffer (4 weeks ago)
c0c37d6 fix(vimdoc): missing documentation in generated help file (4 weeks ago)
742b592 chore: update flake.lock (#344) (5 weeks ago)
48bd9e6 chore: update flake.lock (#343) (6 weeks ago)
● indent-blankline.nvim 3.15ms LazyFile
3d08501 feat: add vue to scope_languages (7 days ago)
a7d9be8 feat: add svelte to scope_languages (7 days ago)
f6181c4 feat: add angular to scope_languages (7 days ago)
821a7ac refactor: Use custom vim.split without validate (5 weeks ago)
● keymap-amend.nvim 0.47ms start
○ knap <leader>vk
d4ea571 Merge pull request #29 from OneTrueC/main (4 weeks ago)
3f61717 Corrected for strange behavior (4 weeks ago)
cf478b7 Merge pull request #26 from OneTrueC/main (4 weeks ago)
181f189 Fixed usage of os.execute (4 weeks ago)
● lazy.nvim 12.73ms init.lua
83493db chore(main): release 10.17.0 (#1292) (2 weeks ago)
a5ac169 chore(build): auto-generate vimdoc (2 weeks ago)
298bed1 fix: update to new treesitter capture groups (#1294) (2 weeks ago)
d5c58bb fix(ui): remove a single space character from home title (#1309) (2 weeks ago)
e1e8d2f chore(build): auto-generate vimdoc (2 weeks ago)
0694651 feat(loader): warn when maplocalleader is changed after init (#1326) (2 weeks ago)
c96fc24 style: format (2 weeks ago)
5be95fe chore(build): auto-generate vimdoc (2 weeks ago)
5aea4e7 fix(types): fix incorrect LuaLS types (#1339) (2 weeks ago)
● local-highlight.nvim 0.46ms LazyFile
9003107 chore(build): auto-generate vimdoc / stylua (4 weeks ago)
873c7f6 feat: Allow setting limits to the match length (#21) (4 weeks ago)
● lsp_lines.nvim 0.48ms LazyFile
6f3defe Update copyright email (12 days ago)
● lsp_signature.nvim 0.07ms lsp_signature ui.init
c6aeb2f Merge branch 'master' of github.com:ray-x/lsp_signature.nvim (4 days ago)
b963a39 #302 some LSP may send multiple empty spaces in signature label. Trim inside the string. (4 days ago)
1b32f64 fix: "Attempt to call field 'get_clients' (a nil value)" error for some 0.10 versions (#315) (11 days ago)
e92b4e7 fix: Use get_clients if Neovim <0.10 (#312) (2 weeks ago)
fc7231f stylua (2 weeks ago)
6216eec lint (2 weeks ago)
a02d7c7 deprecate nvim-0.6 (2 weeks ago)
● lualine.nvim 7.25ms VeryLazy
b5e8bb6 fix: prioritize user config for theme-loader on windows (#1213) (#1214) (9 hours ago)
af4c3cf fix: mason extension lazy loading (#1196) (6 days ago)
3e77976 Fixed refresh delay issue when setting `<cmd>w<CR>` in keymap (#1193) (6 days ago)
26dac2f fix: use larger ft icon when coloring applied (#1172) (8 days ago)
3c55675 chore: autogen (vimdocs+formating) (10 days ago)
79c4b29 fix(branch): extract correct branch name for term buffers (#1204) (10 days ago)
8b56462 fix: fzf extension selected element parsing (#1198) (2 weeks ago)
f2de8f2 chore: autogen (vimdocs+formating) (2 weeks ago)
28027a5 update bubles example config (2 weeks ago)
○ LuaSnip
a7a4b46 docs: Add descriptions for <Plug> mappings (3 weeks ago)
814d3a3 Auto generate docs (3 weeks ago)
45d99d1 manually set visual hl. (3 weeks ago)
f3b3d34 Auto generate docs (5 weeks ago)
8d4fc2f fix: use `$(MAKE)` instead of `make` for recursive make (close #1128). (5 weeks ago)
c4b9c7c Format with stylua (5 weeks ago)
631f657 Auto generate docs (5 weeks ago)
97a9742 feat: define callbacks in node-opts. (5 weeks ago)
81d83ec Format with stylua (5 weeks ago)
92789d4 refocus: don't leave the snippet if the active node is an exitNode. (5 weeks ago)
04266a9 add missing key_indexer, shorthand: Update default_config.lua (5 weeks ago)
7770d37 Format with stylua (5 weeks ago)
dab3478 Auto generate docs (5 weeks ago)
2865c8e fix(tests): only use packaged parser for nvim 0.7 and 0.9. (5 weeks ago)
● mason-lspconfig.nvim 0.04ms nvim-lspconfig
2ba17ce chore(main): release 1.27.0 (#349) (19 hours ago)
b04a8f7 feat: add basedpyright lsp (#379) (19 hours ago)
ca13885 feat: add markdown-oxide lsp (#378) (19 hours ago)
b5bf151 feat: add jinja-lsp (#375) (19 hours ago)
9f459ac feat: add vacuum language server (#374) (19 hours ago)
51797bc feat: add somesass_ls (#372) (19 hours ago)
8d6ef4c feat: add pico8 language server (#369) (19 hours ago)
c44ec89 docs: renamed server name for autotools-language-server (#368) (19 hours ago)
82c7cb0 feat: add glslls (#347) (6 days ago)
1bed242 fix: remove gleam (#377) (6 days ago)
55716a8 chore: update generated code (#373) (11 days ago)
21d33d6 fix: update lspconfig reference to twig-language-server (#366) (4 weeks ago)
60f6805 feat: add glsl_analyzer language server (#363) (4 weeks ago)
4c4a19d feat: add solidity_ls (#362) (4 weeks ago)
06dbefc feat: add millet (#361) (4 weeks ago)
646a3fc feat: add twig_language_server (#365) (4 weeks ago)
5d07c2d feat: add dprint (#355) (4 weeks ago)
7897c45 chore: update generated code (#364) (4 weeks ago)
fe4cce4 chore: update generated code (#360) (5 weeks ago)
● mason-null-ls.nvim 2.22ms none-ls.nvim
e270134 chore(main): release 2.5.1 (#99) (3 weeks ago)
05385ea fix(docs): config requires `ignore_methods` field (#98) (3 weeks ago)
bfaa24b chore(main): release 2.5.0 (#95) (5 weeks ago)
d123aaa feat: add `methods` to enable or disable specific null-ls source method types (#94) (6 weeks ago)
● mason-nvim-dap.nvim 0.7ms nvim-dap
67210c0 fix: Start Delve debug in project mode, not file (#122) (3 weeks ago)
● mason.nvim 7.32ms nvim-lspconfig
751b1fc fix(health): support multidigit luarocks version numbers (#1648) (3 hours ago)
3b5068f tests: remove old spec (#1634) (4 weeks ago)
● material.nvim 0.31ms lualine.nvim
1804e51 added @comment.todo and @comment.hint (6 weeks ago)
616edba Merge pull request #193 from cesarFuhr/feat/markdown-cyan-headings (6 weeks ago)
dae06d2 cyan markdown headings (6 weeks ago)
● mini.ai 58.15ms mini.ai /home/amedhi/.config/lazynvim/after/ftplugin/lua.lua
ee9446a (mini.ai) Update `<Esc>` to cancel from Operator-pending to Normal mode. (5 weeks ago)
858cee0 (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
○ mini.align ga (x) ga
f845218 (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
○ mini.bracketed
65c7dfb (mini.bracketed) Update `treesitter()` to not source 'vim.treesitter' on `require()`. (5 weeks ago)
7f5e83f (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
● mini.comment 1ms VeryLazy
a4b7e46 (mini.comment) FEATURE: Update hooks to be called with useful data. (5 weeks ago)
68a1e9d (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
● mini.files 3.51ms start
fca93a4 fix(files): trigger `MiniFilesWindowUpdate` after window buffer is set (7 days ago)
eab771c (mini.files) Show warning if action is set to override existing path. (5 weeks ago)
839b327 (mini.files) Update default explorer to delete "directory buffer" preserving layout. (5 weeks ago)
e82c4f5 (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
○ mini.move <Down> <Down> (x) <Up> <Up> (x) <Right> <Right> (x) <Left> <Left> (x)
251d541 (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
○ mini.operators gs (x) <leader>= <leader>= (x) <leader>== gss gs ydd yd D (x)
0765e48 (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
○ mini.surround ds ]s [s <leader>vs s (x) ys <leader>T<leader>n cs
a1b590c (all) Update installation instructions: add mini.deps, remove packer. (6 weeks ago)
● neodev.nvim 1.02ms nvim-lspconfig
84e0290 chore(build): auto-generate vimdoc (3 weeks ago)
b354c38 fix: use Neovim distributed types on Neovim >= 0.10, instead of neodev (3 weeks ago)
3157f2e chore: auto-generated types for Neovim nightly (4 weeks ago)
f7f249b chore: auto-generated types for Neovim nightly (4 weeks ago)
b0ccf60 chore: auto-generated types for Neovim nightly (4 weeks ago)
fdf6b3c chore: auto-generated types for Neovim nightly (4 weeks ago)
bbe17de chore: auto-generated types for Neovim nightly (4 weeks ago)
de3685b chore: auto-generated types for Neovim nightly (5 weeks ago)
365ef03 chore: auto-generated types for Neovim nightly (5 weeks ago)
a098813 chore: auto-generated types for Neovim nightly (6 weeks ago)
○ neogen Neogen
b95347a [docgen] Update doc/neogen.txt skip-checks: true (3 weeks ago)
e5460f2 feat(py): Add support for @dataclass attributes (3 weeks ago)
63ca960 [docgen] Update doc/neogen.txt skip-checks: true (3 weeks ago)
3f65d09 fix(py): Python returns now respect nested functions (#158) (3 weeks ago)
7bf529e [docgen] Update doc/neogen.txt skip-checks: true (3 weeks ago)
f10d046 Add support for `nvim` snippet engine (vim.snippet) (#164) (3 weeks ago)
3e97116 [docgen] Update doc/neogen.txt skip-checks: true (3 weeks ago)
a9641d1 Remove usage of nvim-treesitter utilities (#152) (3 weeks ago)
○ neogit Neogit
bf2a353 Update README.md (15 hours ago)
4c29337 Merge pull request #1206 from NeogitOrg/CKolkey-patch-1 (15 hours ago)
16aa16e Update README.md (15 hours ago)
55eb562 Merge pull request #1203 from theherk/bugfix-remote-parse-specials (3 days ago)
3abe4cb Add test specs for improved remote parsing with specials. (3 days ago)
40dc4c4 Fix issue where owner and repo have special characters. (3 days ago)
546372e Merge pull request #1202 from NeogitOrg/add-tests-for-remote-parse (3 days ago)
1a21ff3 minor cleanup and add tests (3 days ago)
f30d052 Merge pull request #1201 from theherk/ssh-delimiter (4 days ago)
918a243 Fix issue when "git" is in the repository name. (4 days ago)
f44af9f Update the open pull request action to use the new remote parsing routing. (4 days ago)
988b286 Move remote parsing to the remote library. (4 days ago)
d27e9e3 Improve parsing of url's in ssh cases. (5 days ago)
bc6aca9 Merge pull request #1189 from gollth/discard-conflict (7 days ago)
cae0351 Merge pull request #1196 from trevarj/gnupg-unlock-fix (7 days ago)
fbde6e0 fix: unlock gpg key on commit (9 days ago)
9c5b139 Merge pull request #1191 from ofseed/master (3 weeks ago)
fe3b8f5 Merge pull request #1152 from Danielkonge/Danielkonge-patch-1 (3 weeks ago)
6f72f6d Merge pull request #1154 from PostCyberPunk/count (3 weeks ago)
944033b Modify postfix for finders (3 weeks ago)
c637c13 Remove redundant prompt_prefix postfix (3 weeks ago)
a8e667f Change default prompt_prefix value (3 weeks ago)
d0a1a7e Add tests for discarding conflicted files (3 weeks ago)
0d0879b Merge pull request #1185 from NeogitOrg/bugfix/tag-annotations (4 weeks ago)
8f74093 Do not always annotate tags unless specified. (4 weeks ago)
cd3224e Add `conflict` flag to `SelectedHunk` struct (4 weeks ago)
4075ca9 Merge pull request #1183 from NeogitOrg/make-dired-better (4 weeks ago)
22985e3 Bugfix: When choosing a directory with the default telescope sorter, do not select ".." if it's highlighted while there's something else written in the prompt. (4 weeks ago)
1eb9514 Update README.md (4 weeks ago)
02d4c1b Merge pull request #1181 from eternity74/fix-diffview (4 weeks ago)
6b4ec3a Fixed unwanted trim for file from diffview (4 weeks ago)
f3d0df2 Add way to discard entire conflicted files (5 weeks ago)
615a57c Fix docstring about `Process.on_error` callback (5 weeks ago)
2c5b688 Ignore git update index errors in `discard` (5 weeks ago)
46ca7fc Make `Process::pty` & `Process:on_partial_line()` optional fields (5 weeks ago)
1c0369a Merge pull request #1175 from wroyca/master (5 weeks ago)
7fe4771 Update lua/neogit/lib/graph.lua (5 weeks ago)
516cff4 Fix: graph invalid UTF-8 codepoint (5 weeks ago)
b2916ea fix:rebase editor respect disable_line_numbers (6 weeks ago)
b0415a0 fixup! feat:line_action count support (7 weeks ago)
ddf8148 fix skipping "edit" (7 weeks ago)
9ce6ce4 feat:line_action count support (7 weeks ago)
8e74085 fix: typo in the kind type (8 weeks ago)
○ nightfox.nvim
e352a32 Update readme.md (#426) (3 days ago)
a4eb88b fix: add NotifyBackground missing highlight (#422) (10 days ago)
● nui.nvim 0.04ms nui.menu nvim-navbuddy
cbd2668 fix(popup): mimic native 'solid' border (3 days ago)
3dc46d7 fix(popup): always use current window for relative=cursor (9 days ago)
fc59553 fix(layout): enable nested flag for WinClosed autocmd (9 days ago)
756c59f docs: fix typos (2 weeks ago)
fbb139c fix(input): ignore 'keymap' for feeding default value (2 weeks ago)
b81333d feat(table): expose NuiTable.Cell.range (3 weeks ago)
8794284 feat(table): accept param 'position' for method 'get_cell' (3 weeks ago)
1b24de4 fix(layout): starting current position for nested boxes (3 weeks ago)
c3c7fd6 docs(split): fix incorrect type annotations (5 weeks ago)
a0fd35f chore: release 0.3.0 (5 weeks ago)
7da355e docs: fix incorrect type annotations (5 weeks ago)
af8ddf5 fix(split): for relative=editor always split from current window (5 weeks ago)
af7dfee fix(split): manual doautocmd BufWinEnter (5 weeks ago)
e561ac5 test: fix broken win config usage by upstream change (5 weeks ago)
○ nvim-autopairs InsertEnter
dbfc1c3 opposite direction for length in before_regex() condition (#441) (27 hours ago)
797260f Add astro filetype to basic rules (#443) (2 days ago)
c6139ca docs: make improvements to readme (#435) (4 weeks ago)
1efb4f2 fix: don't add parentheses after bash/shell functions (#432) (4 weeks ago)
90f824d fix: use v:lua without parens (4 weeks ago)
d4aef9d fix: conflict with vim-endwise fix #430 (4 weeks ago)
2e8a10c fix: avoid global variable usage (#426) (5 weeks ago)
00def01 docs: fix typo (#427) (5 weeks ago)
● nvim-bufferline.lua 3.13ms VeryLazy
64e2c5d chore(main): release 4.5.2 (#878) (2 weeks ago)
33caae6 chore: formatting (2 weeks ago)
66949d0 feat(duplicates): only treat as duplicate if in the same group (#750) (2 weeks ago)
1064399 fix(tabpages): renaming bug on reopened tab (#877) (2 weeks ago)
615aeb0 chore(main): release 4.5.1 (#875) (2 weeks ago)
5bf13d1 fix(tabpages): typo in rename_tab (#873) (2 weeks ago)
● nvim-dap 3.91ms dap nvim-lspconfig
c1695e5 Allow to override output event handler (4 days ago)
c43c247 Fix typo in doc/dap.txt (#1174) (6 days ago)
fc880e8 Use async.run in event_stopped for error handler (5 weeks ago)
e48c811 Try to fetch frames in frames widget if they're missing (5 weeks ago)
ks ago)
3b4bdea Ensure dap.status() shows start progress (5 weeks ago)
● nvim-dap-ui 1.98ms nvim-dap
edfa93f docs(README): installation instructions for lazy.nvim (#342) (2 days ago)
13888eb fix(hover): check session exists (3 days ago)
11fcaa7 ci: nvim-nio dependency (3 days ago)
f7d75cc feat: use external nio (#311) (3 days ago)
d548de8 chore: styling (3 days ago)
e8506f5 fix(variables): clear prompt_func after editing variable (#330) (3 days ago)
4575bc3 fix(line_hover): highlights on expanded lines. (#337) (3 days ago)
9720eb5 docs: header for dapui.Config.layout.element (5 weeks ago)
7a1878c fix(eval): open the floating window under the cursor (#332) (5 weeks ago)
● nvim-dap-virtual-text 0.51ms nvim-dap
baa5b0d fix: content table error for virt_lines option (11 days ago)
a5fc692 Fixed error with table (3 weeks ago)
6dc308b Prevent tree-sitter error on buffers that don't yet have a filetype (3 weeks ago)
○ nvim-spectre <leader>rp <leader>rf <leader>rr* <leader>rr/ <leader>rr+ <leader>rr.
1d23be1 map ctrl+c to esc fix #209 (2 days ago)
d1db6c1 make tab configurable (#211) (8 days ago)
b1ca5ba fix test case (8 days ago)
3712ff0 style: reformat by stylua (4 weeks ago)
3e6da25 feat: add mapping yy to copy current line (4 weeks ago)
○ nvim-spider e (x) e (o) b (x) b ge (x) w ge ge (o) b (o) e <C-w> (i) w (x)
bcc9fa3 chore: Auto generate docs (6 days ago)
ed4adcc chore: mention `cw` issue in bug report template (6 days ago)
b369f24 chore: Auto generate docs (3 weeks ago)
c14f442 docs: some cleanup (3 weeks ago)
● nvim-treesitter-context 0.64ms LazyFile
ce37c77 feat: gdscript support (13 hours ago)
2484f58 refactor(context): use an iterator function (3 days ago)
b8b7e52 perf: revert "fix: do not use vim.treesitter.highlighter" (#414) (2 weeks ago)