1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
|
-- mod-version:3 --lite-xl 2.1 --priority:0
local core = require "core"
local config = require "core.config"
local common = require "core.common"
local command = require "core.command"
local keymap = require "core.keymap"
local style = require "core.style"
local Widget = require "widget"
local Label = require "widget.label"
local Line = require "widget.line"
local NoteBook = require "widget.notebook"
local Button = require "widget.button"
local TextBox = require "widget.textbox"
local SelectBox = require "widget.selectbox"
local NumberBox = require "widget.numberbox"
local Toggle = require "widget.toggle"
local ListBox = require "widget.listbox"
local FoldingBook = require "widget.foldingbook"
local ItemsList = require "widget.itemslist"
local ToolbarView = require "plugins.toolbarview"
local KeybindingDialog = require "widget.keybinddialog"
local settings = {}
settings.core = {}
settings.plugins = {}
settings.sections = {}
settings.plugin_sections = {}
settings.config = {}
settings.default_keybindings = {}
---Enumeration for the different types of settings.
---@type table<string, integer>
settings.type = {
STRING = 1,
NUMBER = 2,
TOGGLE = 3,
SELECTION = 4,
LIST_STRINGS = 5,
BUTTON = 6
}
---@alias settings.types
---|>'settings.type.STRING'
---| 'settings.type.NUMBER'
---| 'settings.type.TOGGLE'
---| 'settings.type.SELECTION'
---| 'settings.type.LIST_STRINGS'
---| 'settings.type.BUTTON'
---Represents a setting to render on a settings pane.
---@class settings.option
---@field public label string
---@field public description string
---@field public path string
---@field public type settings.types
---@field public default string | number | table<integer, string> | table<integer, integer>
---@field public min number
---@field public max number
---@field public step number
---@field public values table
---@field public get_value nil | fun(value:any):any
---@field public set_value nil | fun(value:any):any
---@field public icon string
---@field public on_click nil | string | fun(button:string, x:integer, y:integer)
---@field public on_apply nil | fun(value:any)
settings.option = {
---Title displayed to the user eg: "My Option"
label = "",
---Description of the option eg: "Modifies the document indentation"
description = "",
---Config path in the config table, eg: section.myoption, myoption, etc...
path = "",
---Type of option that will be used to render an appropriate control
type = "",
---Default value of the option
default = "",
---Used for NUMBER to indiciate the minimum number allowed
min = 0,
---Used for NUMBER to indiciate the maximum number allowed
max = 0,
---Used for NUMBER to indiciate the increment/decrement amount
step = 0,
---Used in a SELECTION to provide the list of valid options
values = {},
---Optional function that is used to manipulate the current value on retrieval.
get_value = nil,
---Optional function that is used to manipulate the saved value on save.
set_value = nil,
---The icon set for a BUTTON
icon = "",
---Command or function executed when a BUTTON is clicked
on_click = nil,
---Optional function executed when the option value is applied.
on_apply = nil
}
---Add a new settings section to the settings UI
---@param section string
---@param options settings.option[]
---@param plugin_name? string Optional name of plugin
---@param overwrite? boolean Overwrite previous section options
function settings.add(section, options, plugin_name, overwrite)
local category = ""
if plugin_name ~= nil then
category = "plugins"
else
category = "core"
end
if overwrite and settings[category][section] then
settings[category][section] = {}
end
if not settings[category][section] then
settings[category][section] = {}
if category ~= "plugins" then
table.insert(settings.sections, section)
else
table.insert(settings.plugin_sections, section)
end
end
if plugin_name ~= nil then
if not settings[category][section][plugin_name] then
settings[category][section][plugin_name] = {}
end
for _, option in ipairs(options) do
table.insert(settings[category][section][plugin_name], option)
end
else
for _, option in ipairs(options) do
table.insert(settings[category][section], option)
end
end
end
--------------------------------------------------------------------------------
-- Add Core Settings
--------------------------------------------------------------------------------
settings.add("General",
{
{
label = "User Module",
description = "Open your init.lua for customizations.",
type = settings.type.BUTTON,
icon = "P",
on_click = "core:open-user-module"
},
{
label = "Maximum Project Files",
description = "The maximum amount of project files to register.",
path = "max_project_files",
type = settings.type.NUMBER,
default = 2000,
min = 1,
max = 100000,
on_apply = function()
core.rescan_project_directories()
end
},
{
label = "File Size Limit",
description = "The maximum file size in megabytes allowed for editing.",
path = "file_size_limit",
type = settings.type.NUMBER,
default = 10,
min = 1,
max = 50
},
{
label = "Ignore Files",
description = "List of lua patterns matching files to be ignored by the editor.",
path = "ignore_files",
type = settings.type.LIST_STRINGS,
default = { "^%." },
on_apply = function()
core.rescan_project_directories()
end
},
{
label = "Maximum Clicks",
description = "The maximum amount of consecutive clicks that are registered by the editor.",
path = "max_clicks",
type = settings.type.NUMBER,
default = 3,
min = 1,
max = 10
},
}
)
settings.add("Graphics",
{
{
label = "Frames Per Second",
description = "Lower value for low end machines and higher for a smoother experience.",
path = "fps",
type = settings.type.NUMBER,
default = 60,
min = 10,
max = 300
},
{
label = "Transitions",
description = "If disabled turns off all transitions but improves rendering performance.",
path = "transitions",
type = settings.type.TOGGLE,
default = true
},
{
label = "Animation Rate",
description = "The amount of time it takes for a transition to finish.",
path = "animation_rate",
type = settings.type.NUMBER,
default = 1.0,
min = 0.5,
max = 3.0,
step = 0.1
},
{
label = "Animate Mouse Drag Scroll",
description = "Causes higher cpu usage but smoother scroll transition.",
path = "animate_drag_scroll",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Scrolling Transitions",
path = "disabled_transitions.scroll",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Command View Transitions",
path = "disabled_transitions.commandview",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Context Menu Transitions",
path = "disabled_transitions.contextmenu",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Log View Transitions",
path = "disabled_transitions.logview",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Nag Bar Transitions",
path = "disabled_transitions.nagbar",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Tab Transitions",
path = "disabled_transitions.tabs",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Tab Drag Transitions",
path = "disabled_transitions.tab_drag",
type = settings.type.TOGGLE,
default = false
},
{
label = "Disable Status Bar Transitions",
path = "disabled_transitions.statusbar",
type = settings.type.TOGGLE,
default = false
},
}
)
settings.add("User Interface",
{
{
label = "Borderless",
description = "Use built-in window decorations.",
path = "borderless",
type = settings.type.TOGGLE,
default = false,
on_apply = function()
core.configure_borderless_window()
end
},
{
label = "Messages Timeout",
description = "The amount in seconds before a notification dissapears.",
path = "message_timeout",
type = settings.type.NUMBER,
default = 5,
min = 1,
max = 30
},
{
label = "Always Show Tabs",
description = "Shows tabs even if a single document is opened.",
path = "always_show_tabs",
type = settings.type.TOGGLE,
default = true
},
{
label = "Maximum Tabs",
description = "The maximum amount of visible document tabs.",
path = "max_tabs",
type = settings.type.NUMBER,
default = 8,
min = 1,
max = 100
},
{
label = "Close Button on Tabs",
description = "Display the close button on tabs.",
path = "tab_close_button",
type = settings.type.TOGGLE,
default = true
},
{
label = "Mouse wheel scroll rate",
description = "The amount to scroll when using the mouse wheel.",
path = "mouse_wheel_scroll",
type = settings.type.NUMBER,
default = 50,
min = 10,
max = 200,
get_value = function(value)
return value / SCALE
end,
set_value = function(value)
return value * SCALE
end
},
{
label = "Disable Cursor Blinking",
description = "Disables cursor blinking on text input elements.",
path = "disable_blink",
type = settings.type.TOGGLE,
default = false
},
{
label = "Cursor Blinking Period",
description = "Interval in seconds in which the cursor blinks.",
path = "blink_period",
type = settings.type.NUMBER,
default = 0.8,
min = 0.3,
max = 2.0,
step = 0.1
}
}
)
settings.add("Editor",
{
{
label = "Indentation Type",
description = "The character inserted when pressing the tab key.",
path = "tab_type",
type = settings.type.SELECTION,
default = "soft",
values = {
{"Space", "soft"},
{"Tab", "hard"}
}
},
{
label = "Indentation Size",
description = "Amount of spaces shown per indentation.",
path = "indent_size",
type = settings.type.NUMBER,
default = 2,
min = 1,
max = 10
},
{
label = "Line Limit",
description = "Amount of characters at which the line breaking column will be drawn.",
path = "line_limit",
type = settings.type.NUMBER,
default = 80,
min = 1
},
{
label = "Line Height",
description = "The amount of spacing between lines.",
path = "line_height",
type = settings.type.NUMBER,
default = 1.2,
min = 1.0,
max = 3.0,
step = 0.1
},
{
label = "Highlight Line",
description = "Highlight the current line.",
path = "highlight_current_line",
type = settings.type.SELECTION,
default = true,
values = {
{"Yes", true},
{"No", false},
{"No Selection", "no_selection"}
},
set_value = function(value)
if type(value) == "nil" then return false end
return value
end
},
{
label = "Maximum Undo History",
description = "The amount of undo elements to keep.",
path = "max_undos",
type = settings.type.NUMBER,
default = 10000,
min = 100,
max = 100000
},
{
label = "Undo Merge Timeout",
description = "Time in seconds before applying an undo action.",
path = "undo_merge_timeout",
type = settings.type.NUMBER,
default = 0.3,
min = 0.1,
max = 1.0,
step = 0.1
},
{
label = "Show Spaces",
description = "Draw another character in place of invisble spaces.",
path = "draw_whitespace",
type = settings.type.TOGGLE,
default = false
},
{
label = "Symbol Pattern",
description = "A lua pattern used to match symbols in the document.",
path = "symbol_pattern",
type = settings.type.STRING,
default = "[%a_][%w_]*"
},
{
label = "Non Word Characters",
description = "A string of characters that do not belong to a word.",
path = "non_word_chars",
type = settings.type.STRING,
default = " \\t\\n/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
get_value = function(value)
return value:gsub("\n", "\\n"):gsub("\t", "\\t")
end,
set_value = function(value)
return value:gsub("\\n", "\n"):gsub("\\t", "\t")
end
},
{
label = "Scroll Past the End",
description = "Allow scrolling beyond the document ending.",
path = "scroll_past_end",
type = settings.type.TOGGLE,
default = true
}
}
)
settings.add("Development",
{
{
label = "Log Items",
description = "The maximum amount of entries to keep on the log UI.",
path = "max_log_items",
type = settings.type.NUMBER,
default = 80,
min = 50,
max = 2000
},
{
label = "Skip Plugins Version",
description = "Do not verify the plugins required versions at startup.",
path = "skip_plugins_version",
type = settings.type.TOGGLE,
default = false
}
}
)
---Retrieve from given config the associated value using the given path.
---@param conf table
---@param path string
---@param default any
---@return any | nil
local function get_config_value(conf, path, default)
local sections = {};
for match in (path.."."):gmatch("(.-)%.") do
table.insert(sections, match);
end
local element = conf
for _, section in ipairs(sections) do
if type(element[section]) ~= "nil" then
element = element[section]
else
return default
end
end
if type(element) == "nil" then
return default
end
return element
end
---Loops the given config table using the given path and store the value.
---@param conf table
---@param path string
---@param value any
local function set_config_value(conf, path, value)
local sections = {};
for match in (path.."."):gmatch("(.-)%.") do
table.insert(sections, match);
end
local sections_count = #sections
if sections_count == 1 then
conf[sections[1]] = value
return
elseif type(conf[sections[1]]) ~= "table" then
conf[sections[1]] = {}
end
local element = conf
for idx, section in ipairs(sections) do
if type(element[section]) ~= "table" then
element[section] = {}
element = element[section]
else
element = element[section]
end
if idx + 1 == sections_count then break end
end
element[sections[sections_count]] = value
end
---Get a list of system and user installed plugins.
---@return table<integer, string>
local function get_installed_plugins()
local files, ordered = {}, {}
for _, root_dir in ipairs {DATADIR, USERDIR} do
local plugin_dir = root_dir .. "/plugins"
for _, filename in ipairs(system.list_dir(plugin_dir) or {}) do
local valid = false
local file_info = system.get_file_info(plugin_dir .. "/" .. filename)
if
file_info.type == "file"
and
filename:match("%.lua$")
and
not filename:match("^language_")
then
valid = true
filename = filename:gsub("%.lua$", "")
elseif file_info.type == "dir" then
if system.get_file_info(plugin_dir .. "/" .. filename .. "/init.lua") then
valid = true
end
end
if valid then
if not files[filename] then table.insert(ordered, filename) end
files[filename] = true
end
end
end
table.sort(ordered)
return ordered
end
---Get a list of system and user installed colors.
---@return table<integer, table>
local function get_installed_colors()
local files, ordered = {}, {}
for _, root_dir in ipairs {DATADIR, USERDIR} do
local dir = root_dir .. "/colors"
for _, filename in ipairs(system.list_dir(dir) or {}) do
local file_info = system.get_file_info(dir .. "/" .. filename)
if
file_info.type == "file"
and
filename:match("%.lua$")
then
-- read colors
local contents = io.open(dir .. "/" .. filename):read("*a")
local colors = {}
for r, g, b in contents:gmatch("#(%x%x)(%x%x)(%x%x)") do
r = tonumber(r, 16)
g = tonumber(g, 16)
b = tonumber(b, 16)
table.insert(colors, { r, g, b, 0xff })
end
-- sort colors from darker to lighter
table.sort(colors, function(a, b)
return a[1] + a[2] + a[3] < b[1] + b[2] + b[3]
end)
-- remove duplicate colors
local b = {}
for i = #colors, 1, -1 do
local a = colors[i]
if a[1] == b[1] and a[2] == b[2] and a[3] == b[3] then
table.remove(colors, i)
else
b = colors[i]
end
end
-- insert color to ordered table if not duplicate
filename = filename:gsub("%.lua$", "")
if not files[filename] then
table.insert(ordered, {name = filename, colors = colors})
end
files[filename] = true
end
end
end
table.sort(ordered, function(a, b) return a.name < b.name end)
return ordered
end
---Capitalize first letter of every word.
---Taken from core.command.
---@param words string
---@return string
local function capitalize_first(words)
return words:sub(1, 1):upper() .. words:sub(2)
end
---Similar to command prettify_name but also takes care of underscores.
---@param name string
---@return string
local function prettify_name(name)
return name:gsub("[%-_]", " "):gsub("%S+", capitalize_first)
end
---Load config options from the USERDIR user_settings.lua and store them on
---settings.config for later usage.
local function load_settings()
local ok, t = pcall(dofile, USERDIR .. "/user_settings.lua")
settings.config = ok and t.config or {}
end
---Save current config options into the USERDIR user_settings.lua
local function save_settings()
local fp = io.open(USERDIR .. "/user_settings.lua", "w")
if fp then
local output = "{\n [\"config\"] = "
.. common.serialize(
settings.config,
{ pretty = true, escape = true, sort = true, initial_indent = 1 }
):gsub("^%s+", "")
.. "\n}\n"
fp:write("return ", output)
fp:close()
end
end
---Apply a keybinding and optionally save it.
---@param cmd string
---@param bindings table<integer, string>
---@param skip_save? boolean
---@return table | nil
local function apply_keybinding(cmd, bindings, skip_save)
local row_value = nil
local changed = false
local original_bindings = { keymap.get_binding(cmd) }
for _, binding in ipairs(original_bindings) do
keymap.unbind(binding, cmd)
end
if #bindings > 0 then
if
not skip_save
and
settings.config.custom_keybindings
and
settings.config.custom_keybindings[cmd]
then
settings.config.custom_keybindings[cmd] = {}
end
local shortcuts = ""
for _, binding in ipairs(bindings) do
if not binding:match("%+$") and binding ~= "" and binding ~= "none" then
keymap.add({[binding] = cmd})
shortcuts = shortcuts .. binding .. "\n"
if not skip_save then
if not settings.config.custom_keybindings then
settings.config.custom_keybindings = {}
settings.config.custom_keybindings[cmd] = {}
elseif not settings.config.custom_keybindings[cmd] then
settings.config.custom_keybindings[cmd] = {}
end
table.insert(settings.config.custom_keybindings[cmd], binding)
changed = true
end
end
end
if shortcuts ~= "" then
local bindings_list = shortcuts:gsub("\n$", "")
row_value = {
style.text, cmd, ListBox.COLEND, style.dim, bindings_list
}
end
elseif
not skip_save
and
settings.config.custom_keybindings
and
settings.config.custom_keybindings[cmd]
then
settings.config.custom_keybindings[cmd] = nil
changed = true
end
if changed then
save_settings()
end
if not row_value then
row_value = {
style.text, cmd, ListBox.COLEND, style.dim, "none"
}
end
return row_value
end
---Merge previously saved settings without destroying the config table.
local function merge_settings()
if type(settings.config) ~= "table" then return end
-- merge core settings
for _, section in ipairs(settings.sections) do
local options = settings.core[section]
for _, option in ipairs(options) do
if type(option.path) == "string" then
local saved_value = get_config_value(settings.config, option.path)
if type(saved_value) ~= "nil" then
set_config_value(config, option.path, saved_value)
if option.on_apply then
option.on_apply(saved_value)
end
end
end
end
end
-- merge plugin settings
table.sort(settings.plugin_sections)
for _, section in ipairs(settings.plugin_sections) do
local plugins = settings.plugins[section]
for plugin_name, options in pairs(plugins) do
for _, option in pairs(options) do
if type(option.path) == "string" then
local path = "plugins." .. plugin_name .. "." .. option.path
local saved_value = get_config_value(settings.config, path)
if type(saved_value) ~= "nil" then
set_config_value(config, path, saved_value)
if option.on_apply then
option.on_apply(saved_value)
end
end
end
end
end
end
-- apply custom keybindings
if settings.config.custom_keybindings then
for cmd, bindings in pairs(settings.config.custom_keybindings) do
apply_keybinding(cmd, bindings, true)
end
end
end
---Scan all plugins to check if they define a config_spec and load it.
local function scan_plugins_spec()
for plugin, conf in pairs(config.plugins) do
if type(conf) == "table" and conf.config_spec then
settings.add(
conf.config_spec.name,
conf.config_spec,
plugin
)
end
end
end
---Called at core first run to store the default keybindings.
local function store_default_keybindings()
for name, _ in pairs(command.map) do
local keys = { keymap.get_binding(name) }
if #keys > 0 then
settings.default_keybindings[name] = keys
end
end
end
---@class settings.ui : widget
---@field private notebook widget.notebook
---@field private core widget
---@field private plugins widget
---@field private keybinds widget
---@field private core_sections widget.foldingbook
---@field private plugin_sections widget.foldingbook
local Settings = Widget:extend()
---Constructor
function Settings:new()
Settings.super.new(self, false)
self.name = "Settings"
self.defer_draw = false
self.border.width = 0
self.draggable = false
self.scrollable = false
---@type widget.notebook
self.notebook = NoteBook(self)
self.notebook.size.x = 250
self.notebook.size.y = 300
self.notebook.border.width = 0
self.core = self.notebook:add_pane("core", "Core")
self.colors = self.notebook:add_pane("colors", "Colors")
self.plugins = self.notebook:add_pane("plugins", "Plugins")
self.keybinds = self.notebook:add_pane("keybindings", "Keybindings")
self.notebook:set_pane_icon("core", "P")
self.notebook:set_pane_icon("colors", "W")
self.notebook:set_pane_icon("plugins", "B")
self.notebook:set_pane_icon("keybindings", "M")
self.core_sections = FoldingBook(self.core)
self.core_sections.border.width = 0
self.core_sections.scrollable = false
self.plugin_sections = FoldingBook(self.plugins)
self.plugin_sections.border.width = 0
self.plugin_sections.scrollable = false
self:load_core_settings()
self:load_color_settings()
self:load_plugin_settings()
self:load_keymap_settings()
end
---Helper function to add control for both core and plugin settings.
---@oaram pane widget
---@param option settings.option
---@param plugin_name? string | nil
local function add_control(pane, option, plugin_name)
local found = false
local path = type(plugin_name) ~= "nil" and
"plugins." .. plugin_name .. "." .. option.path or option.path
local option_value = nil
if type(path) ~= "nil" then
option_value = get_config_value(config, path, option.default)
end
if option.get_value then
option_value = option.get_value(option_value)
end
---@type widget
local widget = nil
if type(option.type) == "string" then
option.type = settings.type[option.type:upper()]
end
if option.type == settings.type.NUMBER then
---@type widget.label
Label(pane, option.label .. ":")
---@type widget.numberbox
local number = NumberBox(pane, option_value, option.min, option.max, option.step)
widget = number
found = true
elseif option.type == settings.type.TOGGLE then
---@type widget.toggle
local toggle = Toggle(pane, option.label, option_value)
widget = toggle
found = true
elseif option.type == settings.type.STRING then
---@type widget.label
Label(pane, option.label .. ":")
---@type widget.textbox
local string = TextBox(pane, option_value or "")
widget = string
found = true
elseif option.type == settings.type.SELECTION then
---@type widget.label
Label(pane, option.label .. ":")
---@type widget.selectbox
local select = SelectBox(pane)
for _, data in pairs(option.values) do
select:add_option(data[1], data[2])
end
for idx, _ in ipairs(select.list.rows) do
if select.list:get_row_data(idx) == option_value then
select:set_selected(idx-1)
break
end
end
widget = select
found = true
elseif option.type == settings.type.BUTTON then
---@type widget.button
local button = Button(pane, option.label)
if option.icon then
button:set_icon(option.icon)
end
if option.on_click then
local command_type = type(option.on_click)
if command_type == "string" then
function button:on_click()
command.perform(option.on_click)
end
elseif command_type == "function" then
button.on_click = option.on_click
end
end
widget = button
found = true
elseif option.type == settings.type.LIST_STRINGS then
---@type widget.label
Label(pane, option.label .. ":")
---@type widget.itemslist
local list = ItemsList(pane)
if type(option_value) == "table" then
for _, value in ipairs(option_value) do
list:add_item(value)
end
end
widget = list
found = true
end
if widget and type(path) ~= "nil" then
function widget:on_change(value)
if self:is(SelectBox) then
value = self:get_selected_data()
elseif self:is(ItemsList) then
value = self:get_items()
end
if option.set_value then
value = option.set_value(value)
end
set_config_value(config, path, value)
set_config_value(settings.config, path, value)
save_settings()
if option.on_apply then
option.on_apply(value)
end
end
end
if (option.description or option.default) and found then
local text = option.description or ""
local default = ""
local default_type = type(option.default)
if default_type ~= "table" and default_type ~= "nil" then
if text ~= "" then
text = text .. " "
end
default = string.format("(default: %s)", option.default)
end
---@type widget.label
local description = Label(pane, text .. default)
description.desc = true
end
end
---Generate all the widgets for core settings.
function Settings:load_core_settings()
for _, section in ipairs(settings.sections) do
local options = settings.core[section]
---@type widget
local pane = self.core_sections:get_pane(section)
if not pane then
pane = self.core_sections:add_pane(section, section)
else
pane = pane.container
end
for _, opt in ipairs(options) do
---@type settings.option
local option = opt
add_control(pane, option)
end
end
end
---Function in charge of rendering the colors column of the color pane.
---@param self widget.listbox
---@oaram row integer
---@param x integer
---@param y integer
---@param font renderer.font
---@param color renderer.color
---@param only_calc boolean
---@return number width
---@return number height
local function on_color_draw(self, row, x, y, font, color, only_calc)
local w = self:get_width() - (x - self.position.x) - style.padding.x
local h = font:get_height()
if not only_calc then
local row_data = self:get_row_data(row)
local width = w/#row_data.colors
for i = 1, #row_data.colors do
renderer.draw_rect(x + ((i - 1) * width), y, width, h, row_data.colors[i])
end
end
return w, h
end
---Generate the list of all available colors with preview
function Settings:load_color_settings()
self.colors.scrollable = false
local colors = get_installed_colors()
---@type widget.listbox
local listbox = ListBox(self.colors)
listbox.border.width = 0
listbox:enable_expand(true)
listbox:add_column("Theme")
listbox:add_column("Colors")
for idx, details in ipairs(colors) do
local name = details.name
if settings.config.theme and settings.config.theme == name then
listbox:set_selected(idx)
end
listbox:add_row({
style.text, name, ListBox.COLEND, on_color_draw
}, {name = name, colors = details.colors})
end
function listbox:on_row_click(idx, data)
core.reload_module("colors." .. data.name)
settings.config.theme = data.name
end
end
---Unload a plugin settings from plugins section.
---@param plugin string
function Settings:disable_plugin(plugin)
for _, section in ipairs(settings.plugin_sections) do
local plugins = settings.plugins[section]
for plugin_name, options in pairs(plugins) do
if plugin_name == plugin then
self.plugin_sections:delete_pane(section)
end
end
end
if
type(settings.config.enabled_plugins) == "table"
and
settings.config.enabled_plugins[plugin]
then
settings.config.enabled_plugins[plugin] = nil
end
if type(settings.config.disabled_plugins) ~= "table" then
settings.config.disabled_plugins = {}
end
settings.config.disabled_plugins[plugin] = true
save_settings()
end
---Load plugin and append its settings to the plugins section.
---@param plugin string
function Settings:enable_plugin(plugin)
local loaded = false
local config_type = type(config.plugins[plugin])
if config_type == "boolean" or config_type == "nil" then
config.plugins[plugin] = {}
loaded = true
end
require("plugins." .. plugin)
if config.plugins[plugin] and config.plugins[plugin].config_spec then
local conf = config.plugins[plugin].config_spec
settings.add(conf.name, conf, plugin, true)
end
for _, section in ipairs(settings.plugin_sections) do
local plugins = settings.plugins[section]
for plugin_name, options in pairs(plugins) do
if plugin_name == plugin then
---@type widget
local pane = self.plugin_sections:get_pane(section)
if not pane then
pane = self.plugin_sections:add_pane(section, section)
else
pane = pane.container
end
for _, opt in ipairs(options) do
---@type settings.option
local option = opt
add_control(pane, option, plugin_name)
end
end
end
end
if
type(settings.config.disabled_plugins) == "table"
and
settings.config.disabled_plugins[plugin]
then
settings.config.disabled_plugins[plugin] = nil
end
if type(settings.config.enabled_plugins) ~= "table" then
settings.config.enabled_plugins = {}
end
settings.config.enabled_plugins[plugin] = true
save_settings()
if loaded then
core.log("Loaded '%s' plugin", plugin)
end
end
---Generate all the widgets for plugin settings.
function Settings:load_plugin_settings()
---@type widget
local pane = self.plugin_sections:get_pane("enable_disable")
if not pane then
pane = self.plugin_sections:add_pane("enable_disable", "Installed")
else
pane = pane.container
end
-- requires earlier access to startup process
Label(
pane,
"Notice: disabling plugins will not take effect until next restart"
)
Line(pane, 2, 10)
local plugins = get_installed_plugins()
for _, plugin in ipairs(plugins) do
if plugin ~= "settings" then
local enabled = false
if
(
type(config.plugins[plugin]) ~= "nil"
and
config.plugins[plugin] ~= false
)
or
(
settings.config.enabled_plugins
and
settings.config.enabled_plugins[plugin]
)
then
enabled = true
end
local this = self
---@type widget.toggle
local toggle = Toggle(pane, prettify_name(plugin), enabled)
function toggle:on_change(value)
if value then
this:enable_plugin(plugin)
else
this:disable_plugin(plugin)
end
end
end
end
table.sort(settings.plugin_sections)
for _, section in ipairs(settings.plugin_sections) do
local plugins = settings.plugins[section]
for plugin_name, options in pairs(plugins) do
---@type widget
local pane = self.plugin_sections:get_pane(section)
if not pane then
pane = self.plugin_sections:add_pane(section, section)
else
pane = pane.container
end
for _, opt in ipairs(options) do
---@type settings.option
local option = opt
add_control(pane, option, plugin_name)
end
end
end
end
---@type widget.keybinddialog
local keymap_dialog = KeybindingDialog()
function keymap_dialog:on_save(bindings)
local row_value = apply_keybinding(self.command, bindings)
if row_value then
self.listbox:set_row(self.row_id, row_value)
end
end
function keymap_dialog:on_reset()
local default_keys = settings.default_keybindings[self.command]
local current_keys = { keymap.get_binding(self.command) }
for _, binding in ipairs(current_keys) do
keymap.unbind(binding, self.command)
end
if default_keys and #default_keys > 0 then
local cmd = self.command
if not settings.config.custom_keybindings then
settings.config.custom_keybindings = {}
settings.config.custom_keybindings[cmd] = {}
elseif not settings.config.custom_keybindings[cmd] then
settings.config.custom_keybindings[cmd] = {}
end
local shortcuts = ""
for _, binding in ipairs(default_keys) do
keymap.add({[binding] = cmd})
shortcuts = shortcuts .. binding .. "\n"
table.insert(settings.config.custom_keybindings[cmd], binding)
end
local bindings_list = shortcuts:gsub("\n$", "")
self.listbox:set_row(self.row_id, {
style.text, cmd, ListBox.COLEND, style.dim, bindings_list
})
else
self.listbox:set_row(self.row_id, {
style.text, self.command, ListBox.COLEND, style.dim, "none"
})
end
if
settings.config.custom_keybindings
and
settings.config.custom_keybindings[self.command]
then
settings.config.custom_keybindings[self.command] = nil
save_settings()
end
end
---Generate the list of all available commands and allow editing their keymaps.
function Settings:load_keymap_settings()
self.keybinds.scrollable = false
local ordered = {}
for name, _ in pairs(command.map) do
table.insert(ordered, name)
end
table.sort(ordered)
---@type widget.listbox
local listbox = ListBox(self.keybinds)
listbox.border.width = 0
listbox:enable_expand(true)
listbox:add_column("Command")
listbox:add_column("Bindings")
for _, name in ipairs(ordered) do
local keys = { keymap.get_binding(name) }
local binding = ""
if #keys == 1 then
binding = keys[1]
elseif #keys > 1 then
binding = keys[1]
for idx, key in ipairs(keys) do
if idx ~= 1 then
binding = binding .. "\n" .. key
end
end
elseif #keys < 1 then
binding = "none"
end
listbox:add_row({
style.text, name, ListBox.COLEND, style.dim, binding
}, name)
end
function listbox:on_row_click(idx, data)
if not keymap_dialog:is_visible() then
local bindings = { keymap.get_binding(data) }
keymap_dialog:set_bindings(bindings)
keymap_dialog.row_id = idx
keymap_dialog.command = data
keymap_dialog.listbox = self
keymap_dialog:show()
end
end
end
---Reposition and resize core and plugin widgets.
function Settings:update()
if not Settings.super.update(self) then return end
self.notebook:set_size(self.size.x, self.size.y)
self.core:set_size(
self.size.x,
self.size.y - self.notebook.active_pane.tab:get_height() - 8
)
self.plugins:set_size(
self.size.x,
self.size.y - self.notebook.active_pane.tab:get_height() - 8
)
self.core_sections:set_size(
self.core.size.x - (style.padding.x),
self.core_sections:get_real_height()
)
self.plugin_sections:set_size(
self.plugins.size.x - (style.padding.x),
self.plugin_sections:get_real_height()
)
self.core_sections:set_position(
style.padding.x / 2,
0
)
self.plugin_sections:set_position(
style.padding.x / 2,
0
)
for _, section in ipairs({self.core_sections, self.plugin_sections}) do
for _, pane in ipairs(section.panes) do
local prev_child = nil
for pos=#pane.container.childs, 1, -1 do
local child = pane.container.childs[pos]
local x, y = 10, 10
if prev_child then
if
(prev_child:is(Label) and not prev_child.desc)
or
(child:is(Label) and child.desc)
then
y = prev_child:get_bottom() + 10
else
y = prev_child:get_bottom() + 40
end
end
if child:is(Line) then
x = 0
elseif child:is(ItemsList) then
child:set_size(pane.container:get_width() - 20, child.size.y)
end
child:set_position(x, y)
prev_child = child
end
end
end
end
--------------------------------------------------------------------------------
-- overwrite core run to inject previously saved settings
--------------------------------------------------------------------------------
local core_run = core.run
function core.run()
store_default_keybindings()
-- append all settings defined in the plugins spec
scan_plugins_spec()
-- merge custom settings into config
merge_settings()
---@type settings.ui
settings.ui = Settings()
-- load plugins disabled by default and enabled by user
if settings.config.enabled_plugins then
for name, _ in pairs(settings.config.enabled_plugins) do
if
type(config.plugins[name]) == "boolean"
and
not config.plugins[name]
then
settings.ui:enable_plugin(name)
end
end
end
-- apply user chosen color theme
if settings.config.theme then
core.reload_module("colors." .. settings.config.theme)
end
core_run()
end
--------------------------------------------------------------------------------
-- Disable plugins at startup, only works if this file is the first
-- required on user module, or priority tag is obeyed by lite-xl.
--------------------------------------------------------------------------------
-- load custom user settings that include list of disabled plugins
load_settings()
-- only disable non already loaded plugins
if settings.config.disabled_plugins then
for name, _ in pairs(settings.config.disabled_plugins) do
if type(rawget(config.plugins, name)) == "nil" then
config.plugins[name] = false
end
end
end
--------------------------------------------------------------------------------
-- Add command and keymap to load settings view
--------------------------------------------------------------------------------
command.add(nil, {
["ui:settings"] = function()
settings.ui:show()
local node = core.root_view:get_active_node_default()
local found = false
for _, view in ipairs(node.views) do
if view == settings.ui then
found = true
node:set_active_view(view)
break
end
end
if not found then
node:add_view(settings.ui)
end
end,
})
keymap.add {
["ctrl+alt+p"] = "ui:settings"
}
--------------------------------------------------------------------------------
-- Overwrite toolbar preferences command to open the settings gui
--------------------------------------------------------------------------------
local toolbarview_on_mouse_moved = ToolbarView.on_mouse_moved
function ToolbarView:on_mouse_moved(px, py, ...)
toolbarview_on_mouse_moved(self, px, py, ...)
if
self.hovered_item
and
self.hovered_item.command == "core:open-user-module"
then
self.hovered_item.command = "ui:settings"
end
end
return settings;
|