-
Notifications
You must be signed in to change notification settings - Fork 103
/
manifest.json
2476 lines (2476 loc) · 80.5 KB
/
manifest.json
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
{
"addons": [
{
"dependencies": {
"meta_colors": {},
"meta_languages": {},
"open_ext": {},
"settings": {}
},
"description": "A metapackage that contains a number of useful plugins to ship with an expanded default version of lite-xl.",
"id": "meta_addons",
"mod_version": "3",
"type": "meta",
"version": "0.1"
},
{
"dependencies": {
"abyss": {},
"betelgeuse": {},
"c0mfy": {},
"cold_lime": {},
"dracula": {},
"duorand": {},
"duotone": {},
"everforest": {},
"github": {},
"github-dark-dimmed": {},
"github_dark": {},
"gruvbox_dark": {},
"gruvbox_light": {},
"jb-fleet": {},
"jellybeans": {},
"liqube": {},
"mariana": {},
"moe": {},
"monodark": {},
"monokai": {},
"monokai-pro-classic": {},
"nord": {},
"onedark": {},
"only_dark": {},
"plasma": {},
"rose-pine": {},
"rose-pine-dawn": {},
"rose-pine-moon": {},
"solarized_dark": {},
"solarized_light": {},
"solarobj": {},
"synthwave": {},
"tokyo-night": {},
"vscode-dark": {},
"winter": {},
"zenburn": {}
},
"description": "A metapackage containing all publically accessible color themes.",
"id": "meta_colors",
"mod_version": "3",
"type": "meta",
"version": "0.1"
},
{
"dependencies": {
"language_angelscript": {},
"language_assembly_riscv": {},
"language_assembly_x86": {},
"language_autohotkey_v1": {},
"language_awk": {},
"language_batch": {},
"language_bazel": {},
"language_bend": {},
"language_bib": {},
"language_blade": {},
"language_blueprint": {},
"language_brainfuck": {},
"language_buzz": {},
"language_c7": {},
"language_caddyfile": {},
"language_carbon": {},
"language_clojure": {},
"language_cmake": {},
"language_containerfile": {},
"language_crystal": {},
"language_csharp": {},
"language_cue": {},
"language_d": {},
"language_dart": {},
"language_diff": {},
"language_edp": {},
"language_ejs": {},
"language_elixir": {},
"language_elm": {},
"language_env": {},
"language_erb": {},
"language_fe": {},
"language_fennel": {},
"language_fortran": {},
"language_fstab": {},
"language_gabc": {},
"language_gdscript": {},
"language_glsl": {},
"language_gmi": {},
"language_go": {},
"language_graphql": {},
"language_gravity": {},
"language_groovy": {},
"language_hare": {},
"language_haxe": {},
"language_hlsl": {},
"language_hs": {},
"language_htaccess": {},
"language_ignore": {},
"language_ini": {},
"language_java": {},
"language_jiyu": {},
"language_json": {},
"language_jsx": {},
"language_julia": {},
"language_kdl": {},
"language_kotlin": {},
"language_lilypond": {},
"language_liquid": {},
"language_lobster": {},
"language_lox": {},
"language_make": {},
"language_marte": {},
"language_meson": {},
"language_miniscript": {},
"language_moon": {},
"language_nelua": {},
"language_nginx": {},
"language_nim": {},
"language_nix": {},
"language_objc": {},
"language_odin": {},
"language_openscad": {},
"language_perl": {},
"language_php": {},
"language_pico8": {},
"language_pkgbuild": {},
"language_po": {},
"language_powershell": {},
"language_psql": {},
"language_r": {},
"language_rescript": {},
"language_ring": {},
"language_rivet": {},
"language_ruby": {},
"language_rust": {},
"language_sass": {},
"language_scala": {},
"language_sh": {},
"language_ssh_config": {},
"language_swift": {},
"language_tal": {},
"language_tcl": {},
"language_teal": {},
"language_tex": {},
"language_toml": {},
"language_ts": {},
"language_tsx": {},
"language_typst": {},
"language_umka": {},
"language_v": {},
"language_wren": {},
"language_yaml": {},
"language_zig": {}
},
"description": "A metapackage containing all publically accessible language syntaxes.",
"id": "meta_languages",
"mod_version": "3",
"type": "meta",
"version": "0.1.19"
},
{
"description": "Align multiple carets and selections *([clip](https://user-images.githubusercontent.com/2798487/165631951-532f8d24-d596-4dd0-9d21-ff53c71ed32f.mp4))*",
"id": "align_carets",
"mod_version": "3",
"path": "plugins/align_carets.lua",
"version": "0.1"
},
{
"description": "Automatically inserts closing brackets and quotes. Also allows selected text to be wrapped with brackets or quotes.",
"id": "autoinsert",
"mod_version": "3",
"path": "plugins/autoinsert.lua",
"version": "0.2"
},
{
"description": "Automatically saves files when they are changed",
"id": "autosave",
"mod_version": "3",
"path": "plugins/autosave.lua",
"version": "0.2"
},
{
"description": "Automatically saves files that were changed when the main window loses focus by switching to another application",
"id": "autosaveonfocuslost",
"mod_version": "3",
"path": "plugins/autosaveonfocuslost.lua",
"version": "0.2"
},
{
"description": "Automatically hardwraps lines when typing",
"id": "autowrap",
"mod_version": "3",
"path": "plugins/autowrap.lua",
"version": "0.1"
},
{
"description": "Theme manager with base16 color schemes for Lite XL.",
"id": "base16",
"mod_version": "3",
"remote": "https://github.com/SmileYzn/base16.git:55b1c3fda3afe7dc2dd894f258389c64b9441da9",
"version": "0.4"
},
{
"description": "Shows the current time and date in a view with large text *([screenshot](https://user-images.githubusercontent.com/3920290/82752891-3318df00-9db9-11ea-803f-261d80d5cf53.png))*",
"id": "bigclock",
"mod_version": "3",
"path": "plugins/bigclock.lua",
"version": "0.1"
},
{
"description": "Integrates the [black](https://github.com/psf/black) Python formatter with lite",
"id": "black",
"mod_version": "3",
"remote": "https://git.sr.ht/~tmpod/black-lite:2a1ab1b703f954edb39efb73e72b44c0d18b30a2",
"version": "0.1"
},
{
"description": "Underlines matching pair for bracket under the caret *([screenshot](https://user-images.githubusercontent.com/3920290/80132745-0c863f00-8594-11ea-8875-c455c6fd7eae.png))*",
"id": "bracketmatch",
"mod_version": "3",
"path": "plugins/bracketmatch.lua",
"version": "0.2"
},
{
"description": "Provides a build system, messages window, and easily clickable errors. Supports an internal build system, and `make`. *([screenshot](https://raw.githubusercontent.com/adamharrison/lite-xl-ide/main/screenshots/build.png))*",
"id": "build",
"mod_version": "3",
"remote": "https://github.com/lite-xl/lite-xl-ide.git:6edabe0f6e14cdc627a696f0d91f523290005ed0",
"version": "0.2"
},
{
"description": "Centers document's content on the screen and adds zen mode support *([screenshot](https://user-images.githubusercontent.com/3920290/82127896-bf6e4500-97ae-11ea-97fc-ba9a552bc9a4.png))*",
"id": "centerdoc",
"mod_version": "3",
"path": "plugins/centerdoc.lua",
"version": "0.1"
},
{
"description": "Hides the treeview at start if no arguments passed to the executable are directories. Compatible with lite.",
"id": "cleanstart",
"mod_version": "3",
"path": "plugins/cleanstart.lua",
"version": "0.1"
},
{
"description": "Offers improvements such as highlighted comments and autocomplete for brackets, quotes and more. ([demo](https://s12.gifyu.com/images/Sckre.gif))",
"id": "codeplus",
"mod_version": "3",
"remote": "https://github.com/chqs-git/code-plus.git:b336999b707709df2ddcb865f664623c5beceabb",
"version": "1.0"
},
{
"dependencies": {
"widget": {}
},
"description": "Color picker dialog that supports html and rgb notations.",
"id": "colorpicker",
"mod_version": "3",
"path": "plugins/colorpicker.lua",
"version": "0.1"
},
{
"description": "Underlays color values (eg. `#ff00ff` or `rgb(255, 0, 255)`) with their resultant color. *([screenshot](https://user-images.githubusercontent.com/3920290/80743752-731bd780-8b15-11ea-97d3-847db927c5dc.png))*",
"id": "colorpreview",
"mod_version": "3",
"path": "plugins/colorpreview.lua",
"version": "0.2"
},
{
"description": "A console for running external commands and capturing their output *([gif](https://user-images.githubusercontent.com/3920290/81343656-49325a00-90ad-11ea-8647-ff39d8f1d730.gif))*",
"id": "console",
"mod_version": "3",
"remote": "https://github.com/franko/console:08c3f5e1483627c3ae688ce5a99008e823357f2c",
"version": "0.1"
},
{
"description": "Copy file location to clipboard",
"id": "copyfilelocation",
"mod_version": "3",
"path": "plugins/copyfilelocation.lua",
"version": "0.1"
},
{
"description": "Diff library that yields.",
"id": "coro_diff",
"mod_version": "3",
"remote": "https://github.com/Guldoman/lite-xl-coro_diff:5f7d422cf6f03e958bbc32c714a81fc5aaef6970",
"type": "library",
"version": "0.1.1"
},
{
"description": "Customize the caret in the editor",
"id": "custom_caret",
"mod_version": "3",
"path": "plugins/custom_caret.lua",
"version": "0.3"
},
{
"description": "Insert date-, time- and date-time-stamps",
"id": "datetimestamps",
"mod_version": "3",
"path": "plugins/datetimestamps.lua",
"version": "0.1"
},
{
"description": "Icons font for the devicons plugin.",
"id": "font_devicons",
"mod_version": "3",
"remote": "https://github.com/PerilousBooklet/lite-xl-devicons:e78f2374a1f4de5d0f324af46a07c2f9ffa7ccef",
"type": "font",
"version": "1.0.0"
},
{
"description": "PerilousBooklet's treeview icons for software developers.",
"id": "devicons",
"mod_version": "3",
"remote": "https://github.com/PerilousBooklet/lite-xl-devicons:e78f2374a1f4de5d0f324af46a07c2f9ffa7ccef",
"version": "1.0.0"
},
{
"description": "Add end tags in variety of languages. Similar to [Vim Endwise](https://github.com/tpope/vim-endwise)",
"id": "endwise",
"mod_version": "3",
"remote": "https://github.com/LolsonX/endwise-lite-xl.git:d9ced6089ab7f54bad197c30ba581055270f2dad",
"version": "0.1"
},
{
"description": "Automatically displays a font with increasing sizes in a new view.",
"id": "fontpreview",
"mod_version": "3",
"path": "plugins/fontpreview.lua",
"version": "0.1"
},
{
"description": "Debug Lite-XL's Lua VM interactively, if you're running it from a terminal. Warning: Will significantly slow down Lite-XL if installed.",
"id": "lite-debugger",
"mod_version": "3",
"path": "plugins/lite-debugger.lua",
"version": "0.1"
},
{
"description": "Provides a debugger integration, with pluggable backends. Currently supports only gdb. *([screenshot](https://raw.githubusercontent.com/adamharrison/lite-xl-ide/main/screenshots/debugger.png))*",
"id": "debugger",
"mod_version": "3",
"remote": "https://github.com/lite-xl/lite-xl-ide.git:6edabe0f6e14cdc627a696f0d91f523290005ed0",
"version": "0.2"
},
{
"description": "Adds the current workspace and file to your Discord rich presence. Linux-only.",
"id": "discord-presence",
"mod_version": "3",
"name": "Discord RPC",
"remote": "https://github.com/vincens2005/lite-xl-discord2:71648e55ad812dc1029a3df70c17656ec7cb63bf",
"version": "0.2"
},
{
"description": "Provides basic drag and drop of selected text (in same document)",
"id": "dragdropselected",
"mod_version": "3",
"path": "plugins/dragdropselected.lua",
"version": "0.2"
},
{
"description": "Adds a popup that displays the curve of Penner-styled easing functions.",
"id": "easingpreview",
"mod_version": "3",
"name": "Easing Previewer",
"remote": "https://github.com/ThaCuber/lite-xl-easingpreview:ea349d12a9570264408dc1567af660b8d4568d3d",
"version": "1.0"
},
{
"description": "[EditorConfig](https://editorconfig.org/) implementation for Lite XL",
"id": "editorconfig",
"mod_version": "3",
"path": "plugins/editorconfig",
"version": "0.1"
},
{
"description": "Add support for detecting file and string encodings as converting between them.",
"id": "encoding",
"mod_version": "3",
"remote": "https://github.com/jgmdev/lite-xl-encoding:16e2477e916f52e18f6d63f5ac61ace58b0c5e45",
"type": "library",
"version": "1.1"
},
{
"dependencies": {
"encoding": {}
},
"description": "Properly read files that are not encoded in UTF-8 or ASCII by auto-detecting their encoding and allows saving on different text encodings.",
"id": "encodings",
"mod_version": "3",
"remote": "https://github.com/jgmdev/lite-xl-encoding:16e2477e916f52e18f6d63f5ac61ace58b0c5e45",
"version": "1.0"
},
{
"checksum": "80c07430455e665b5f5009667fe76458603af505ce411a38b38e82e7604d95f0",
"description": "Make sure the file ends with one blank line.",
"id": "eofnewline",
"mod_version": "3",
"url": "https://github.com/bokunodev/lite_modules/blob/master/plugins/eofnewline-xl.lua?raw=1",
"version": "0.1"
},
{
"description": "Preview tabs. Opening a doc will replace the contents of the preview tab. Marks tabs as non-preview on any change or tab double clicking.",
"id": "ephemeral_tabs",
"mod_version": "3",
"path": "plugins/ephemeral_tabs.lua",
"version": "0.1"
},
{
"description": "Graphs y=x equations.",
"id": "equationgrapher",
"mod_version": "3",
"remote": "https://github.com/thacuber2a03/equationgrapher:11eaf773ab2747947e81e6d404a6f497a77e3490",
"version": "0.2"
},
{
"description": "Replaces selected Lua code with its evaluated result",
"id": "eval",
"mod_version": "3",
"path": "plugins/eval.lua",
"version": "0.1"
},
{
"description": "Adds Treesitter syntax highlighting support",
"id": "evergreen",
"mod_version": "3",
"remote": "https://github.com/TorchedSammy/Evergreen.lxl:e5e6ade897a6316fbe6fc610520d195e27737912",
"version": "0.2"
},
{
"description": "Runs selected text through shell command and replaces with result",
"id": "exec",
"mod_version": "3",
"path": "plugins/exec.lua",
"version": "0.1"
},
{
"description": "When a selection crosses multiple lines, it is drawn to the end of the screen *([screenshot](https://user-images.githubusercontent.com/2798487/140995616-89a20b55-5917-4df8-8a7c-d7c53732fa8b.png))*",
"id": "extend_selection_line",
"mod_version": "3",
"path": "plugins/extend_selection_line.lua",
"version": "0.1"
},
{
"description": "Allows to open an external console in current project directory",
"id": "exterm",
"mod_version": "3",
"remote": "https://github.com/ShadiestGoat/lite-xl-exterm:aca8827fc1af831890cffd3dd122debac72429c6",
"version": "0.1"
},
{
"description": "Adds support for fallback fonts *([gif](https://raw.githubusercontent.com/takase1121/lite-fallback-fonts/master/assets/Iw18fI57J0.gif))*",
"id": "fallbackfonts",
"mod_version": "3",
"remote": "https://github.com/takase1121/lite-fallback-fonts:281cafc014f7931f041046f76496797695678bb4",
"version": "0.1"
},
{
"dependencies": {
"thread": {}
},
"description": "Threaded project find files.",
"id": "findfileimproved",
"mod_version": "3",
"name": "Multithreaded Find File",
"remote": "https://github.com/jgmdev/lite-xl-threads:9299a9a6b778cb34b12f0286b9162779920a9197",
"version": "1.0"
},
{
"description": "[Nonicons](https://github.com/yamatsum/nonicons/) font with mapping",
"files": [
{
"checksum": "da0a065856c44ea3fd3b9fba2fff5e25a32992dc3a3c5df6e9bfca2cd106a8cc",
"url": "https://github.com/yamatsum/nonicons/raw/8454b3b6c3ceeee18b386b7882c5a071dcf0f3af/dist/nonicons.ttf"
}
],
"id": "font_nonicons",
"name": "Nonicons font",
"path": "plugins/font_nonicons.lua",
"type": "library",
"version": "20230530"
},
{
"description": "[Nerd Font Symbols](https://github.com/ryanoasis/nerd-fonts/) font with mapping",
"files": [
{
"checksum": "f4f40e003e9d00000f1218a606127fab82b1faf0df2d9095a06190f4f2c32e36",
"url": "https://github.com/ryanoasis/nerd-fonts/raw/cf3561b1a51f70d5398eb49d603679b0f0c55d74/patched-fonts/NerdFontsSymbolsOnly/SymbolsNerdFontMono-Regular.ttf"
}
],
"id": "font_symbols_nerdfont_mono_regular",
"name": "Nerd Font Symbols Mono Regular",
"path": "plugins/font_symbols_nerdfont_mono_regular.lua",
"type": "library",
"version": "3.1.1"
},
{
"description": "Allows users to load fonts with [fontconfig](https://www.freedesktop.org/software/fontconfig/fontconfig-user.html).",
"id": "fontconfig",
"mod_version": "3",
"path": "plugins/fontconfig.lua",
"version": "0.1"
},
{
"description": "Change the syntax used for a file.",
"id": "force_syntax",
"mod_version": "3",
"path": "plugins/force_syntax.lua",
"version": "0.1"
},
{
"description": "formatters for various languages",
"id": "formatter",
"mod_version": "3",
"remote": "https://github.com/vincens2005/lite-formatters:7e017080a967c01d437e484247a90c1ff52e8ef8",
"version": "0.1"
},
{
"description": "Opens a preview of the current markdown file in a browser window *([screenshot](https://user-images.githubusercontent.com/3920290/82754898-f7394600-9dc7-11ea-8278-2305363ed372.png))* Note: the page content is generated by sending the markdown file to Github's markdown rendering [API](https://docs.github.com/en/rest/markdown?apiVersion=2022-11-28). Requires a [GitHub token](https://docs.github.com/en/rest/markdown/markdown?apiVersion=2022-11-28#render-a-markdown-document-in-raw-mode) being provided",
"id": "ghmarkdown",
"mod_version": "3",
"path": "plugins/ghmarkdown.lua",
"version": "0.2"
},
{
"description": "Shows \"git blame\" information of a line *([screenshot](https://raw.githubusercontent.com/juliardi/lite-xl-gitblame/main/screenshot_1.png))*",
"id": "gitblame",
"mod_version": "3",
"remote": "https://github.com/juliardi/lite-xl-gitblame:922d6961ee87990c92adb8bc89d1ce18fe8e2ee0",
"version": "0.2.1"
},
{
"description": "highlight changed lines from git *([screenshot](https://raw.githubusercontent.com/vincens2005/lite-xl-gitdiff-highlight/master/screenshot.png))*",
"id": "gitdiff_highlight",
"mod_version": "3",
"remote": "https://github.com/vincens2005/lite-xl-gitdiff-highlight:f0e02b6a7299acbeb4a5f137b26830a6cca96cc8",
"version": "0.2"
},
{
"description": "Open project files that are in a git commit (default=HEAD)",
"id": "gitopen",
"mod_version": "3",
"path": "plugins/gitopen.lua",
"version": "0.1"
},
{
"description": "Displays git branch and insert/delete count in status bar *([screenshot](https://user-images.githubusercontent.com/3920290/81107223-bcea3080-8f0e-11ea-8fc7-d03173f42e33.png))*",
"id": "gitstatus",
"mod_version": "3",
"path": "plugins/gitstatus.lua",
"version": "0.2"
},
{
"description": "Auto-formats the current go file, adds the missing imports and the missing return cases",
"id": "gofmt",
"mod_version": "3",
"path": "plugins/gofmt.lua",
"version": "0.1"
},
{
"description": "Graphical filepicker using zenity or kdialog.",
"id": "gui_filepicker",
"mod_version": "3",
"path": "plugins/gui_filepicker.lua",
"version": "1.0"
},
{
"description": "Official Haxe builds.",
"id": "haxe",
"mod_version": "3",
"remote": "https://github.com/lite-xl/lite-xl-lsp-servers:e6ff9c7e14ccb16c919ba4731666ff491a1c3fb3",
"type": "library",
"version": "4.3.6"
},
{
"description": "Dark (or even Mica!) title bar for Lite XL",
"id": "immersive-title",
"mod_version": "3",
"remote": "https://github.com/takase1121/lite-xl-immersive-title:cf3a8029ac7154ea53ac819a95d44a6ff102f051",
"version": "0.1"
},
{
"description": "Convert between tabs and spaces indentation",
"id": "indent_convert",
"mod_version": "3",
"path": "plugins/indent_convert.lua",
"version": "0.1"
},
{
"description": "Adds indent guides *([screenshot](https://user-images.githubusercontent.com/3920290/79640716-f9860000-818a-11ea-9c3b-26d10dd0e0c0.png))*",
"id": "indentguide",
"mod_version": "3",
"path": "plugins/indentguide.lua",
"version": "0.3"
},
{
"description": "Adds inter-process communication support, single-instance mode and tab drag and drop between instances.",
"id": "ipc",
"mod_version": "3",
"path": "plugins/ipc.lua",
"version": "0.3"
},
{
"description": "Production and Early-Access OpenJDK Builds, from Oracle.",
"id": "jdk",
"mod_version": "3",
"remote": "https://github.com/lite-xl/lite-xl-lsp-servers.git:b4e1929f6fea6a21e2706ebfb6cb28c48453357d",
"type": "library",
"version": "22.0.1"
},
{
"description": "Simple *key HUD* for Lite XL",
"id": "keyhud",
"mod_version": "3",
"remote": "https://codeberg.org/Mandarancio/keyhud:77c95fed9756b0b20a78ca0f61f20b593787bf20",
"type": "plugin",
"version": "0.2.3"
},
{
"description": "Exports the keymap to a JSON file.",
"id": "keymap_export",
"mod_version": "3",
"path": "plugins/keymap_export.lua",
"version": "0.1"
},
{
"dependencies": {
"console": {}
},
"description": "Adds [Kinc](https://github.com/Kode/Kinc) Project generation with basic build commands(depends on [`console`](https://github.com/franko/console))",
"id": "kinc-projects",
"mod_version": "3",
"name": "Kinc Projects",
"remote": "https://github.com/Kode-Community/kinc_plugin:309fe4193a09cf739ed0a058b1a6966a463a1dbd",
"version": "0.1"
},
{
"description": "Syntax for the [Angelscript](https://www.angelcode.com/angelscript/) programming language",
"id": "language_angelscript",
"mod_version": "3",
"path": "plugins/language_angelscript.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for Intel x86 assembly",
"id": "language_assembly_x86",
"mod_version": "3",
"path": "plugins/language_assembly_x86.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for RISC-V assembly",
"id": "language_assembly_riscv",
"mod_version": "3",
"path": "plugins/language_assembly_riscv.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [AutoHotkey](https://www.autohotkey.com)(v1) programming language",
"id": "language_autohotkey_v1",
"mod_version": "3",
"path": "plugins/language_autohotkey_v1.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Awk](https://en.wikipedia.org/wiki/AWK)(v1) programming language",
"id": "language_awk",
"mod_version": "3",
"path": "plugins/language_awk.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for Windows [Batch Files](https://en.wikipedia.org/wiki/Batch_file)",
"id": "language_batch",
"mod_version": "3",
"path": "plugins/language_batch.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for [Bazel](https://bazel.build/) build tool files.",
"id": "language_bazel",
"mod_version": "3",
"path": "plugins/language_bazel.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for [Bend](https://higherorderco.com/) programming language files.",
"id": "language_bend",
"mod_version": "3",
"path": "plugins/language_bend.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for [BibTex](https://en.wikipedia.org/wiki/BibTeX) files",
"id": "language_bib",
"mod_version": "3",
"path": "plugins/language_bib.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for [Blade](https://github.com/blade-lang/blade/) files",
"id": "language_blade",
"mod_version": "3",
"path": "plugins/language_blade.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Blueprint](https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/) markup language",
"id": "language_blueprint",
"mod_version": "3",
"path": "plugins/language_blueprint.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Brainfuck](https://en.wikipedia.org/wiki/Brainfuck) programming language",
"id": "language_brainfuck",
"mod_version": "3",
"path": "plugins/language_brainfuck.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Buzz](https://buzz-lang.dev/) programming language.",
"id": "language_buzz",
"mod_version": "3",
"path": "plugins/language_buzz.lua",
"tags": [
"language"
],
"version": "0.2"
},
{
"description": "Syntax for the modifications to [fe](https://github.com/rxi/fe/) used in [cel7](https://rxi.itch.io/cel7)",
"id": "language_c7",
"mod_version": "3",
"path": "plugins/language_c7.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the Caddyfile used on the [Caddy](https://caddyserver.com/) web server",
"id": "language_caddyfile",
"mod_version": "3",
"path": "plugins/language_caddyfile.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Carbon programming language](https://github.com/carbon-language/carbon-lang).",
"id": "language_carbon",
"mod_version": "3",
"path": "plugins/language_carbon.lua",
"tags": [
"language"
],
"version": "0.3"
},
{
"description": "Syntax for the [Clojure](https://clojure.org/) programming language",
"id": "language_clojure",
"mod_version": "3",
"path": "plugins/language_clojure.lua",
"tags": [
"language"
],
"version": "0.3"
},
{
"description": "Syntax for the CMake build system language",
"id": "language_cmake",
"mod_version": "3",
"path": "plugins/language_cmake.lua",
"tags": [
"language"
],
"version": "0.2"
},
{
"description": "Syntax for [Containerfile](https://github.com/containers/common/blob/main/docs/Containerfile.5.md)/[Dockerfile](https://docs.docker.com/engine/reference/builder/)",
"id": "language_containerfile",
"mod_version": "3",
"remote": "https://github.com/FilBot3/lite-xl-language-containerfile:ae4eddc3f3fa1a0db56344b3b6db0ec0f2283880",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Crystal](https://crystal-lang.org) programming language",
"id": "language_crystal",
"mod_version": "3",
"remote": "https://github.com/Tamnac/lite-plugin-crystal:1913a6dd23a7640b507943230291a15aecc3235d",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [C#](http://csharp.net) programming language",
"id": "language_csharp",
"mod_version": "3",
"path": "plugins/language_csharp.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [CUE](http://cuelang.org) definition and validation programming language",
"id": "language_cue",
"mod_version": "3",
"path": "plugins/language_cue.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [D](https://dlang.org/) programming language",
"id": "language_d",
"mod_version": "3",
"path": "plugins/language_d.lua",
"tags": [
"language"
],
"version": "0.2"
},
{
"description": "Syntax for the [Dart](https://dart.dev/) programming languiage",
"id": "language_dart",
"mod_version": "3",
"path": "plugins/language_dart.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for diff and patch files",
"id": "language_diff",
"mod_version": "3",
"path": "plugins/language_diff.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Djot](https://djot.net/) markup language",
"id": "language_djot",
"mod_version": "3",
"remote": "https://github.com/Tamnac/lite-xl-djot:e92ad996aba56c3363ef83a2dd8d1026be56c730",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for [FreeFEM++](http://freefem.org) programming language",
"id": "language_edp",
"mod_version": "3",
"path": "plugins/language_edp.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [EJS](https://ejs.co/) javascript template engine",
"id": "language_ejs",
"mod_version": "3",
"path": "plugins/language_ejs.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [Elixir](https://elixir-lang.org) programming language",
"id": "language_elixir",
"mod_version": "3",
"path": "plugins/language_elixir.lua",
"tags": [
"language"
],
"version": "0.2"
},
{
"description": "Syntax for the [Elm](https://elm-lang.org) programming language",
"id": "language_elm",
"mod_version": "3",
"path": "plugins/language_elm.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [env](https://hexdocs.pm/dotenvy/dotenv-file-format.html) (dotenv) files",
"id": "language_env",
"mod_version": "3",
"remote": "https://github.com/anthonyaxenov/lite-xl-env-syntax:89a4274af6a786963930d7a8fb542dfe61daa801",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [ERB](https://github.com/ruby/erb) programming language. Also known as eRuby or Embedded Ruby.",
"id": "language_erb",
"mod_version": "3",
"path": "plugins/language_erb.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [fe](https://github.com/rxi/fe) programming language",
"id": "language_fe",
"mod_version": "3",
"path": "plugins/language_fe.lua",
"tags": [
"language"
],
"version": "0.2"
},
{
"description": "Syntax for the [fennel](https://fennel-lang.org) programming language",
"id": "language_fennel",
"mod_version": "3",
"path": "plugins/language_fennel.lua",
"tags": [
"language"
],
"version": "0.1"
},
{
"description": "Syntax for the [fortran](https://fortran-lang.org/) programming language",
"id": "language_fortran",
"mod_version": "3",
"path": "plugins/language_fortran.lua",
"tags": [
"language"
],
"version": "0.2"