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
|
-- version : 1.0.0 - 07/2005 (2008: lua 5.1)
-- author : Hans Hagen - PRAGMA ADE - www.pragma-ade.com
-- copyright : public domain or whatever suits
-- remark : part of the context distribution, my first lua code
-- todo: name space for local functions
-- todo: the spell checking code is for the built-in lexer, the lpeg one uses its own
-- loading: scite-ctx.properties
-- # environment variable
-- #
-- # CTXSPELLPATH=t:/spell
-- #
-- # auto language detection
-- #
-- # % version =1.0 language=uk
-- # <?xml version='1.0' language='uk' ?>
-- ext.lua.startup.script=$(SciteDefaultHome)/scite-ctx.lua
--
-- # extension.$(file.patterns.context)=scite-ctx.lua
-- # extension.$(file.patterns.example)=scite-ctx.lua
--
-- # ext.lua.reset=1
-- # ext.lua.auto.reload=1
-- # ext.lua.startup.script=t:/lua/scite-ctx.lua
--
-- ctx.menulist.default=\
-- wrap=wrap_text|\
-- unwrap=unwrap_text|\
-- sort=sort_text|\
-- document=document_text|\
-- quote=quote_text|\
-- compound=compound_text|\
-- check=check_text\|
-- strip=toggle_strip
--
-- ctx.spellcheck.language=auto
-- ctx.spellcheck.wordsize=4
-- ctx.spellcheck.wordpath=ENV(CTXSPELLPATH)
--
-- ctx.spellcheck.wordfile.all=spell-uk.txt,spell-nl.txt
--
-- ctx.spellcheck.wordfile.uk=spell-uk.txt
-- ctx.spellcheck.wordfile.nl=spell-nl.txt
-- ctx.spellcheck.wordsize.uk=4
-- ctx.spellcheck.wordsize.nl=4
--
-- command.name.21.*=CTX Action List
-- command.subsystem.21.*=3
-- command.21.*=show_menu $(ctx.menulist.default)
-- command.groupundo.21.*=yes
-- command.shortcut.21.*=Shift+F11
--
-- command.name.22.*=CTX Check Text
-- command.subsystem.22.*=3
-- command.22.*=check_text
-- command.groupundo.22.*=yes
-- command.shortcut.22.*=Ctrl+L
--
-- command.name.23.*=CTX Wrap Text
-- command.subsystem.23.*=3
-- command.23.*=wrap_text
-- command.groupundo.23.*=yes
-- command.shortcut.23.*=Ctrl+M
--
-- # command.21.*=check_text
-- # command.21.*=dofile e:\context\lua\scite-ctx.lua
-- generic functions
props = props or { } -- setmetatable(props,{ __index = function(k,v) props[k] = "unknown" return "unknown" end } )
local byte, lower, upper, gsub, sub, find, rep, match, gmatch, format = string.byte, string.lower, string.upper, string.gsub, string.sub, string.find, string.rep, string.match, string.gmatch, string.format
local sort, concat = table.sort, table.concat
local crlf = "\n"
function traceln(str)
trace(str .. crlf)
io.flush()
end
local function grab(str,delimiter)
local list = { }
for snippet in gmatch(str,delimiter) do
list[#list+1] = snippet
end
return list
end
local function expand(str)
return (gsub(str,"ENV%((%w+)%)", os.envvar))
end
local function strip(str)
return (gsub(str,"^%s*(.-)%s*$", "%1"))
end
local function alphasort(list,i)
if i and i > 0 then
local function alphacmp(a,b)
return lower(gsub(sub(a,i),'0',' ')) < lower(gsub(sub(b,i),'0',' '))
end
sort(list,alphacmp)
else
local function alphacmp(a,b)
return lower(a) < lower(b)
end
sort(list,alphacmp)
end
end
function io.exists(filename)
local ok, result, message = pcall(io.open,filename)
if result then
io.close(result)
return true
else
return false
end
end
function os.envvar(str)
local s = os.getenv(str)
if s ~= '' then
return s
end
s = os.getenv(upper(str))
if s ~= '' then
return s
end
s = os.getenv(lower(str))
if s ~= '' then
return s
end
end
-- support functions, maybe editor namespace
-- function column_of_position(position)
-- local line = editor:LineFromPosition(position)
-- local oldposition = editor.CurrentPos
-- local column = 0
-- editor:GotoPos(position)
-- while editor.CurrentPos ~= 0 and line == editor:LineFromPosition(editor.CurrentPos) do
-- editor:CharLeft()
-- column = column + 1
-- end
-- editor:GotoPos(oldposition)
-- if line > 0 then
-- return column -1
-- else
-- return column
-- end
-- end
-- function line_of_position(position)
-- return editor:LineFromPosition(position)
-- end
function extend_to_start()
local selectionstart = editor.SelectionStart
local selectionend = editor.SelectionEnd
local line = editor:LineFromPosition(selectionstart)
if line > 0 then
while line == editor:LineFromPosition(selectionstart-1) do
selectionstart = selectionstart - 1
editor:SetSel(selectionstart,selectionend)
end
else
selectionstart = 0
end
editor:SetSel(selectionstart,selectionend)
return selectionstart
end
function extend_to_end() -- editor:LineEndExtend() does not work
local selectionstart = editor.SelectionStart
local selectionend = editor.SelectionEnd
local line = editor:LineFromPosition(selectionend)
while line == editor:LineFromPosition(selectionend+1) do
selectionend = selectionend + 1
editor:SetSel(selectionstart,selectionend)
if selectionend ~= editor.SelectionEnd then
break -- no progress
end
end
editor:SetSel(selectionstart,selectionend)
return selectionend
end
function getfiletype()
local firstline = editor:GetLine(0) or ""
if editor.Lexer == SCLEX_TEX then
return 'tex'
elseif editor.Lexer == SCLEX_XML then
return 'xml'
elseif find(firstline,"^%%") then
return 'tex'
elseif find(firstline,"^<%?xml") then
return 'xml'
else
return 'unknown'
end
end
-- inspired by LuaExt's scite_Files
function get_dir_list(mask)
local f
if props['PLAT_GTK'] and props['PLAT_GTK'] ~= "" then
f = io.popen('ls -1 ' .. mask)
else
mask = gsub(mask,'/','\\')
local tmpfile = 'scite-ctx.tmp'
local cmd = 'dir /b "' .. mask .. '" > ' .. tmpfile
os.execute(cmd)
f = io.open(tmpfile)
end
local files = {}
if not f then -- path check added
return files
end
for line in f:lines() do
files[#files+1] = line
end
f:close()
return files
end
-- banner
do
print("loading scite-ctx.lua definition file\n")
print("- see scite-ctx.properties for configuring info\n")
print("- ctx.spellcheck.wordpath set to " .. props['ctx.spellcheck.wordpath'])
if find(lower(props['ctx.spellcheck.wordpath']),"ctxspellpath") then
if os.getenv('ctxspellpath') then
print("- ctxspellpath set to " .. os.getenv('CTXSPELLPATH'))
else
print("- 'ctxspellpath is not set")
end
print("- ctx.spellcheck.wordpath expands to " .. expand(props['ctx.spellcheck.wordpath']))
end
print("\n- ctx.wraptext.length is set to " .. props['ctx.wraptext.length'])
if props['ctx.helpinfo'] ~= '' then
print("\n- key bindings:\n")
print((gsub(strip(props['ctx.helpinfo']),"%s*|%s*","\n")))
end
print("\n- recognized first lines:\n")
print("xml <?xml version='1.0' language='nl'")
print("tex % language=nl")
end
-- text functions
-- written while listening to Talk Talk
local magicstring = rep("<ctx-crlf/>", 2)
function wrap_text()
-- We always go to the end of a line, so in fact some of
-- the variables set next are not needed.
local length = props["ctx.wraptext.length"]
if length == '' then length = 80 else length = tonumber(length) end
local startposition = editor.SelectionStart
local endposition = editor.SelectionEnd
if startposition == endposition then return end
editor:LineEndExtend()
startposition = editor.SelectionStart
endposition = editor.SelectionEnd
-- local startline = line_of_position(startposition)
-- local endline = line_of_position(endposition)
-- local startcolumn = column_of_position(startposition)
-- local endcolumn = column_of_position(endposition)
--
-- editor:SetSel(startposition,endposition)
local startline = props['SelectionStartLine']
local endline = props['SelectionEndLine']
local startcolumn = props['SelectionStartColumn'] - 1
local endcolumn = props['SelectionEndColumn'] - 1
local replacement = { }
local templine = ''
local indentation = rep(' ',startcolumn)
local selection = editor:GetSelText()
selection = gsub(selection,"[\n\r][\n\r]","\n")
selection = gsub(selection,"\n\n+",' ' .. magicstring .. ' ')
selection = gsub(selection,"^%s",'')
for snippet in gmatch(selection,"%S+") do
if snippet == magicstring then
replacement[#replacement+1] = templine
replacement[#replacement+1] = ""
templine = ''
elseif #templine + #snippet > length then
replacement[#replacement+1] = templine
templine = indentation .. snippet
elseif #templine == 0 then
templine = indentation .. snippet
else
templine = templine .. ' ' .. snippet
end
end
replacement[#replacement+1] = templine
replacement[1] = gsub(replacement[1],"^%s+",'')
if endcolumn == 0 then
replacement[#replacement+1] = ""
end
editor:ReplaceSel(concat(replacement,"\n"))
end
function unwrap_text()
local startposition = editor.SelectionStart
local endposition = editor.SelectionEnd
if startposition == endposition then return end
editor:HomeExtend()
editor:LineEndExtend()
startposition = editor.SelectionStart
endposition = editor.SelectionEnd
local magicstring = rep("<multiplelines/>", 2)
local selection = gsub(editor:GetSelText(),"[\n\r][\n\r]+", ' ' .. magicstring .. ' ')
local replacement = ''
for snippet in gmatch(selection,"%S+") do
if snippet == magicstring then
replacement = replacement .. "\n"
else
replacement = replacement .. snippet .. "\n"
end
end
if endcolumn == 0 then replacement = replacement .. "\n" end
editor:ReplaceSel(replacement)
end
function sort_text()
local startposition = editor.SelectionStart
local endposition = editor.SelectionEnd
if startposition == endposition then return end
-- local startcolumn = column_of_position(startposition)
-- local endcolumn = column_of_position(endposition)
--
-- editor:SetSel(startposition,endposition)
local startline = props['SelectionStartLine']
local endline = props['SelectionEndLine']
local startcolumn = props['SelectionStartColumn'] - 1
local endcolumn = props['SelectionEndColumn'] - 1
startposition = extend_to_start()
endposition = extend_to_end()
local selection = gsub(editor:GetSelText(), "%s*$", '')
local list = grab(selection,"[^\n\r]+")
alphasort(list, startcolumn)
local replacement = concat(list, "\n")
editor:GotoPos(startposition)
editor:SetSel(startposition,endposition)
if endcolumn == 0 then replacement = replacement .. "\n" end
editor:ReplaceSel(replacement)
end
function uncomment_xml()
local startposition = editor.SelectionStart
local endposition = editor.SelectionEnd
if startposition == endposition then return end
local startposition = editor.SelectionStart
local endposition = editor.SelectionEnd
local selection = gsub(editor:GetSelText(), "%<%!%-%-.-%-%-%>", '')
editor:GotoPos(startposition)
editor:SetSel(startposition,endposition)
editor:ReplaceSel(selection)
editor:GotoPos(startposition)
end
function document_text()
local startposition = editor.SelectionStart
local endposition = editor.SelectionEnd
if startposition == endposition then return end
startposition = extend_to_start()
endposition = extend_to_end()
editor:SetSel(startposition,endposition)
local filetype = getfiletype()
local replacement = ''
for i = editor:LineFromPosition(startposition), editor:LineFromPosition(endposition) do
local str = editor:GetLine(i)
if filetype == 'xml' then
if find(str,"^<%!%-%- .* %-%->%s*$") then
replacement = replacement .. gsub(str,"^<%!%-%- (.*) %-%->(%s*)$","%1\n")
elseif find(str,"%S") then
replacement = replacement .. '<!-- ' .. gsub(str,"(%s*)$",'') .. " -->\n"
else
replacement = replacement .. str
end
else
if find(str,"^%%D%s+$") then
replacement = replacement .. "\n"
elseif find(str,"^%%D ") then
replacement = replacement .. gsub(str,"^%%D ",'')
else
replacement = replacement .. '%D ' .. str
end
end
end
editor:ReplaceSel(gsub(replacement,"[\n\r]$",''))
end
function quote_text()
local filetype, leftquotation, rightquotation = getfiletype(), '', ''
if filetype == 'xml' then
leftquotation, rightquotation = "<quotation>", "</quotation>"
leftquote, rightquote = "<quotation>", "</quote>"
else
leftquotation, rightquotation = "\\quotation {", "}"
leftquote, rightquote = "\\quote {", "}"
end
local replacement = editor:GetSelText()
replacement = gsub(replacement,"``(.-)\'\'", leftquotation .. "%1" .. rightquotation)
replacement = gsub(replacement,"\"(.-)\"", leftquotation .. "%1" .. rightquotation)
replacement = gsub(replacement,"`(.-)`", leftquote .. "%1" .. rightquote )
replacement = gsub(replacement,"\'(.-)\'", leftquote .. "%1" .. rightquote )
editor:ReplaceSel(replacement)
end
function compound_text()
local filetype = getfiletype()
if filetype == 'xml' then
editor:ReplaceSel(gsub(editor:GetSelText(),"(>[^<%-][^<%-]+)([-/])(%w%w+)","%1<compound token='%2'/>%3"))
else
editor:ReplaceSel(gsub(editor:GetSelText(),"([^|])([-/]+)([^|])","%1|%2|%3"))
end
end
-- written while listening to Alanis Morissette's acoustic
-- Jagged Little Pill and Tori Amos' Beekeeper after
-- reinstalling on my good old ATH-7
local language = props["ctx.spellcheck.language"]
local wordsize = props["ctx.spellcheck.wordsize"]
local wordpath = props["ctx.spellcheck.wordpath"]
if language == '' then language = 'uk' end
if wordsize == '' then wordsize = 4 else wordsize = tonumber(wordsize) end
local wordfile = ""
local wordlist = {}
local worddone = 0
-- we use wordlist as a hash so that we can add entries without the
-- need to sort and also use a fast (built in) search
-- function kpsewhich_file(filename,filetype,progname)
-- local progflag, typeflag = '', ''
-- local tempname = os.tmpname()
-- if progname then
-- progflag = " --progname=" .. progname .. " "
-- end
-- if filetype then
-- typeflag = " --format=" .. filetype .. " "
-- end
-- local command = "kpsewhich" .. progflag .. typeflag .. " " .. filename .. " > " .. tempname
-- os.execute(command)
-- for line in io.lines(tempname) do
-- return gsub(line, "\s*$", '')
-- end
-- end
function check_text() -- obsolete, replaced by lexer
local dlanguage = props["ctx.spellcheck.language"]
local dwordsize = props["ctx.spellcheck.wordsize"]
local dwordpath = props["ctx.spellcheck.wordpath"]
if dlanguage ~= '' then dlanguage = tostring(language) end
if dwordsize ~= '' then dwordsize = tonumber(wordsize) end
local firstline, skipfirst = editor:GetLine(0), false
local filetype, wordskip, wordgood = getfiletype(), '', ''
if filetype == 'tex' then
wordskip = "\\"
elseif filetype == 'xml' then
wordskip = "<"
wordgood = ">"
end
if props["ctx.spellcheck.language"] == 'auto' then
if filetype == 'tex' then
-- % version =1.0 language=uk
firstline = gsub(firstline,"^%%%s*",'')
firstline = gsub(firstline,"%s*$",'')
for key, val in gmatch(firstline,"(%w+)=(%w+)") do
if key == "language" then
language = val
traceln("auto document language " .. "'" .. language .. "' (tex)")
end
end
skipfirst = true
elseif filetype == 'xml' then
-- <?xml version='1.0' language='uk' ?>
firstline = gsub(firstline,"^%<%?xml%s*", '')
firstline = gsub(firstline,"%s*%?%>%s*$", '')
for key, val in gmatch(firstline,"(%w+)=[\"\'](.-)[\"\']") do
if key == "language" then
language = val
traceln("auto document language " .. "'" .. language .. "' (xml)")
end
end
skipfirst = true
end
end
local fname = props["ctx.spellcheck.wordfile." .. language]
local fsize = props["ctx.spellcheck.wordsize." .. language]
if fsize ~= '' then wordsize = tonumber(fsize) end
if fname ~= '' and fname ~= wordfile then
wordfile, worddone, wordlist = fname, 0, {}
for filename in gmatch(wordfile,"[^%,]+") do
if wordpath ~= '' then
filename = expand(wordpath) .. '/' .. filename
end
if io.exists(filename) then
traceln("loading " .. filename)
for line in io.lines(filename) do
if not find(line,"^[%#-]") then
str = gsub(line,"%s*$", '')
rawset(wordlist,str,true)
worddone = worddone + 1
end
end
else
traceln("unknown file '" .. filename .."'")
end
end
traceln(worddone .. " words loaded")
end
reset_text()
if worddone == 0 then
traceln("no (valid) language or wordfile specified")
else
traceln("start checking")
if wordskip ~= '' then
traceln("ignoring " .. wordskip .. "..." .. wordgood)
end
local i, j, lastpos, startpos, endpos, snippet, len, first = 0, 0, -1, 0, 0, '', 0, 0
local ok, skip, ch = false, false, ''
if skipfirst then first = #firstline end
for k = first, editor.TextLength do
ch = editor:textrange(k,k+1)
if wordgood ~= '' and ch == wordgood then
skip = false
elseif ch == wordskip then
skip = true
end
if find(ch,"%w") and not find(ch,"%d") then
if not skip then
if ok then
endpos = k
else
startpos = k
endpos = k
ok = true
end
end
elseif ok and not skip then
len = endpos - startpos + 1
if len >= wordsize then
snippet = editor:textrange(startpos,endpos+1)
i = i + 1
if wordlist[snippet] or wordlist[lower(snippet)] then
j = j + 1
else
editor:StartStyling(startpos,INDICS_MASK)
editor:SetStyling(len,INDIC2_MASK) -- INDIC0_MASK+2
end
end
ok = false
elseif wordgood == '' then
skip = (ch == wordskip)
end
end
traceln(i .. " words checked, " .. (i-j) .. " errors")
end
end
function reset_text()
editor:StartStyling(0,INDICS_MASK)
editor:SetStyling(editor.TextLength,INDIC_PLAIN)
end
function add_text()
local startposition = editor.SelectionStart
local endposition = editor.SelectionEnd
if startposition == endposition then return end
local selection = gsub(editor:GetSelText(), "%s*$", '')
local n, sum = 0, 0
for s in gmatch(selection,"[%d%.%,]+") do
s = gsub(s,",",".")
local m = tonumber(s)
if m then
n = n + 1
sum = sum + m
traceln(format("%4i : %s",n,m))
end
end
if n > 0 then
traceln("")
traceln(format("sum : %s",sum))
else
traceln("no numbers selected")
end
end
-- menu
local menuactions = {}
local menufunctions = {}
function UserListShow(menutrigger, menulist)
local menuentries = {}
local list = grab(menulist,"[^%|]+")
menuactions = {}
for i=1, #list do
if list[i] ~= '' then
for key, val in gmatch(list[i],"%s*(.+)=(.+)%s*") do
menuentries[#menuentries+1] = key
menuactions[key] = val
end
end
end
local menustring = concat(menuentries,'|')
if menustring == "" then
traceln("There are no templates defined for this file type.")
else
editor.AutoCSeparator = byte('|')
editor:UserListShow(menutrigger,menustring)
editor.AutoCSeparator = byte(' ')
end
end
function OnUserListSelection(trigger,choice)
if menufunctions[trigger] and menuactions[choice] then
return menufunctions[trigger](menuactions[choice])
else
return false
end
end
-- main menu
local menutrigger = 12
function show_menu(menulist)
UserListShow(menutrigger, menulist)
end
function process_menu(action)
if not find(action,"%(%)$") then
assert(loadstring(action .. "()"))()
else
assert(loadstring(action))()
end
end
menufunctions[12] = process_menu
-- templates
local templatetrigger = 13
local ctx_template_paths = { "./ctx-templates", "../ctx-templates", "../../ctx-templates" }
local ctx_auto_templates = false
local ctx_template_list = ""
local ctx_path_list = {}
local ctx_path_done = {}
local ctx_path_name = {}
function ctx_list_loaded(path)
return ctx_path_list[path] and #ctx_path_list[path] > 0
end
function insert_template(templatelist)
if props["ctx.template.scan"] == "yes" then
local path = props["FileDir"]
local rescan = props["ctx.template.rescan"] == "yes"
local suffix = props["ctx.template.suffix." .. props["FileExt"]] -- alas, no suffix expansion here
local current = path .. "+" .. props["FileExt"]
if rescan then
print("re-scanning enabled")
end
ctx_template_list = ""
if not ctx_path_done[path] or rescan then
local pattern = "*.*"
for i, pathname in ipairs(ctx_template_paths) do
print("scanning " .. gsub(path,"\\","/") .. "/" .. pathname)
ctx_path_name[path] = pathname
ctx_path_list[path] = get_dir_list(pathname .. "/" .. pattern)
if ctx_list_loaded(path) then
print("finished locating template files")
break
end
end
if ctx_list_loaded(path) then
print(#ctx_path_list[path] .. " template files found")
else
print("no template files found")
end
end
if ctx_list_loaded(path) then
ctx_template_list = ""
local pattern = "%." .. suffix .. "$"
local n = 0
for j, filename in ipairs(ctx_path_list[path]) do
if find(filename,pattern) then
n = n + 1
local menuname = gsub(filename,"%..-$","")
if ctx_template_list ~= "" then
ctx_template_list = ctx_template_list .. "|"
end
ctx_template_list = ctx_template_list .. menuname .. "=" .. ctx_path_name[path] .. "/" .. filename
end
end
if not ctx_path_done[path] then
print(n .. " suitable template files found")
end
end
ctx_path_done[path] = true
if ctx_template_list == "" then
ctx_auto_templates = false
else
ctx_auto_templates = true
templatelist = ctx_template_list
end
else
ctx_auto_templates = false
end
if templatelist ~= "" then
UserListShow(templatetrigger, templatelist)
end
end
-- ctx.template.[whatever].[filetype]
-- ctx.template.[whatever].data.[filetype]
-- ctx.template.[whatever].file.[filetype]
-- ctx.template.[whatever].list.[filetype]
function process_template_one(action)
local text = nil
if ctx_auto_templates then
local f = io.open(action,"r")
if f then
text = gsub(f:read("*all"),"\n$","")
f:close()
else
print("unable to auto load template file " .. text)
text = nil
end
end
if not text or text == "" then
text = props["ctx.template." .. action .. ".file"]
if not text or text == "" then
text = props["ctx.template." .. action .. ".data"]
if not text or text == "" then
text = props["ctx.template." .. action]
end
else
local f = io.open(text,"r")
if f then
text = gsub(f:read("*all"),"\n$","")
f:close()
else
print("unable to load template file " .. text)
text = nil
end
end
end
if text then
text = gsub(text,"\\n","\n")
local pos = find(text,"%?")
text = gsub(text,"%?","")
editor:insert(editor.CurrentPos,text)
if pos then
editor.CurrentPos = editor.CurrentPos + pos - 1
editor.SelectionStart = editor.CurrentPos
editor.SelectionEnd = editor.CurrentPos
editor:GotoPos(editor.CurrentPos)
end
end
end
menufunctions[13] = process_template_one
menufunctions[14] = process_template_two
-- command.name.26.*=Open Logfile
-- command.subsystem.26.*=3
-- command.26.*=open_log
-- command.save.before.26.*=2
-- command.groupundo.26.*=yes
-- command.shortcut.26.*=Ctrl+E
function open_log()
scite.Open(props['FileName'] .. ".log")
end
if not lpeg then
local okay, root = pcall(function() return require "lpeg" end)
if okay then
lpeg = root
else
trace("\nwarning: lpeg not loaded\n")
end
end
local textlists = { -- taken from sort-lan.lua
en = {
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z",
},
nl = {
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z",
},
fr = {
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z",
},
de = {
"a", "ä", "b", "c", "d", "e", "f", "g", "h", "i",
"j", "k", "l", "m", "n", "o", "ö", "p", "q", "r",
"s", "ß", "t", "u", "ü", "v", "w", "x", "y", "z",
"A", "Ä", "B", "C", "D", "E", "F", "G", "H", "I",
"J", "K", "L", "M", "N", "O", "Ö", "P", "Q", "R",
"S", "SS", "T", "U", "Ü", "V", "W", "X", "Y", "Z",
},
fi = { -- finish
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z", "å", "ä", "ö",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z", "Å", "Ä", "Ö",
},
sl = { -- slovenian
"a", "b", "c", "č", "ć", "d", "đ", "e", "f", "g", "h", "i",
"j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "š", "t",
"u", "v", "w", "x", "y", "z", "ž",
"A", "B", "C", "Č", "Ć", "D", "Đ", "E", "F", "G", "H", "I",
"J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "Š", "T",
"U", "V", "W", "X", "Y", "Z", "Ž",
},
ru = { -- rusian
"а", "б", "в", "г", "д", "е", "ё", "ж", "з", "и",
"і", "й", "к", "л", "м", "н", "о", "п", "р", "с",
"т", "у", "ф", "х", "ц", "ч", "ш", "щ", "ъ", "ы",
"ь", "ѣ", "э", "ю", "я", "ѳ", "ѵ",
"А", "Б", "В", "Г", "Д", "Е", "Ё", "Ж", "З", "И",
"І", "Й", "К", "Л", "М", "Н", "О", "П", "Р", "С",
"Т", "У", "Ф", "Х", "Ц", "Ч", "Ш", "Щ", "Ъ", "Ы",
"Ь", "Ѣ", "Э", "Ю", "Я", "Ѳ", "Ѵ",
},
uk = { -- ukraninuan
"а", "б", "в", "г", "ґ", "д", "е", "є", "ж", "з", "и", "і",
"ї", "й", "к", "л", "м", "н", "о", "п", "р", "с", "т", "у",
"ф", "х", "ц", "ч", "ш", "щ", "ь", "ю", "я",
"А", "Б", "В", "Г", "Ґ", "Д", "Е", "Є", "Ж", "З", "И", "І",
"Ї", "Й", "К", "Л", "М", "Н", "О", "П", "Р", "С", "Т", "У",
"Ф", "Х", "Ц", "Ч", "Ш", "Щ", "Ь", "Ю", "Я",
},
be = { -- belarusia
"а", "б", "в", "г", "д", "е", "ё", "ж", "з", "і",
"й", "к", "л", "м", "н", "о", "п", "р", "с", "т",
"у", "ў", "ф", "х", "ц", "ч", "ш", "ы", "ь", "э",
"ю", "я",
"А", "Б", "В", "Г", "Д", "Е", "Ё", "Ж", "З", "І",
"Й", "К", "Л", "М", "Н", "О", "П", "Р", "С", "Т",
"У", "Ў", "Ф", "Х", "Ц", "Ч", "Ш", "Ы", "Ь", "Э",
"Ю", "Я",
},
bg = { -- bulgarian
"а", "б", "в", "г", "д", "е", "ж", "з","и", "й",
"к", "a", "л", "a", "м", "н", "о", "п", "р", "с",
"т", "у", "ф", "х", "ц", "ч", "ш", "щ", "ъ", "ь",
"ю", "я",
"А", "Б", "В", "Г", "Д", "Е", "Ж", "З","И", "Й",
"К", "A", "Л", "A", "М", "Н", "О", "П", "Р", "С",
"Т", "У", "Ф", "Х", "Ц", "Ч", "Ш", "Щ", "Ъ", "Ь",
"Ю", "Я",
},
pl = { -- polish
"a", "ą", "b", "c", "ć", "d", "e", "ę", "f", "g",
"h", "i", "j", "k", "l", "ł", "m", "n", "ń", "o",
"ó", "p", "q", "r", "s", "ś", "t", "u", "v", "w",
"x", "y", "z", "ź", "ż",
"A", "Ą", "B", "C", "Ć", "D", "E", "Ę", "F", "G",
"H", "I", "J", "K", "L", "Ł", "M", "N", "Ń", "O",
"Ó", "P", "Q", "R", "S", "Ś", "T", "U", "V", "W",
"X", "Y", "Z", "Ź", "Ż",
},
cz = { -- czech
"a", "á", "b", "c", "č", "d", "ď", "e", "é", "ě",
"f", "g", "h", "i", "í", "j", "k", "l", "m",
"n", "ň", "o", "ó", "p", "q", "r", "ř", "s", "š",
"t", "ť", "u", "ú", "ů", "v", "w", "x", "y", "ý",
"z", "ž",
"A", "Á", "B", "C", "Č", "D", "Ď", "E", "É", "Ě",
"F", "G", "H", "I", "Í", "J", "K", "L", "M",
"N", "Ň", "O", "Ó", "P", "Q", "R", "Ř", "S", "Š",
"T", "Ť", "U", "Ú", "Ů", "V", "W", "X", "Y", "Ý",
"Z", "Ž",
},
sk = { -- slovak
"a", "á", "ä", "b", "c", "č", "d", "ď",
"e", "é", "f", "g", "h", ch, "i", "í", "j", "k",
"l", "ĺ", "ľ", "m", "n", "ň", "o", "ó", "ô", "p",
"q", "r", "ŕ", "s", "š", "t", "ť", "u", "ú", "v",
"w", "x", "y", "ý", "z", "ž",
"A", "Á", "Ä", "B", "C", "Č", "D", "Ď",
"E", "É", "F", "G", "H", "I", "Í", "J", "K",
"L", "Ĺ", "Ľ", "M", "N", "Ň", "O", "Ó", "Ô", "P",
"Q", "R", "Ŕ", "S", "Š", "T", "Ť", "U", "Ú", "V",
"W", "X", "Y", "Ý", "Z", "Ž",
},
hr = { -- croatian
"a", "b", "c", "č", "ć", "d", "đ", "e", "f",
"g", "h", "i", "j", "k", "l", "m", "n",
"o", "p", "r", "s", "š", "t", "u", "v", "z", "ž",
"A", "B", "C", "Č", "Ć", "D", "Đ", "E", "F",
"G", "H", "I", "J", "K", "L", "M", "N",
"O", "P", "R", "S", "Š", "T", "U", "V", "Z", "Ž",
},
sr = { -- serbian
"а", "б", "в", "г", "д", "ђ", "е", "ж", "з", "и",
"ј", "к", "л", "љ", "м", "н", "њ", "о", "п", "р",
"с", "т", "ћ", "у", "ф", "х", "ц", "ч", "џ", "ш",
"А", "Б", "В", "Г", "Д", "Ђ", "Е", "Ж", "З", "И",
"Ј", "К", "Л", "Љ", "М", "Н", "Њ", "О", "П", "Р",
"С", "Т", "Ћ", "У", "Ф", "Х", "Ц", "Ч", "Џ", "Ш",
},
no = { -- norwegian
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z", "æ", "ø", "å",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z", "Æ", "Ø", "Å",
},
da = { --danish
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z", "æ", "ø", "å",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z", "Æ", "Ø", "Å",
},
sv = { -- swedish
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z", "å", "ä", "ö",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J",
"K", "L", "M", "N", "O", "P", "Q", "R", "S", "T",
"U", "V", "W", "X", "Y", "Z", "Å", "Ä", "Ö",
},
is = { -- islandic
"a", "á", "b", "d", "ð", "e", "é", "f", "g", "h",
"i", "í", "j", "k", "l", "m", "n", "o", "ó", "p",
"r", "s", "t", "u", "ú", "v", "x", "y", "ý", "þ",
"æ", "ö",
"A", "Á", "B", "D", "Ð", "E", "É", "F", "G", "H",
"I", "Í", "J", "K", "L", "M", "N", "O", "Ó", "P",
"R", "S", "T", "U", "Ú", "V", "X", "Y", "Ý", "Þ",
"Æ", "Ö",
},
-- gr = { -- greek
-- "α", "ά", "ὰ", "ᾶ", "ᾳ", "ἀ", "ἁ", "ἄ", "ἂ", "ἆ",
-- "ἁ", "ἅ", "ἃ", "ἇ", "ᾁ", "ᾴ", "ᾲ", "ᾷ", "ᾄ", "ᾂ",
-- "ᾅ", "ᾃ", "ᾆ", "ᾇ", "β", "γ", "δ", "ε", "έ", "ὲ",
-- "ἐ", "ἔ", "ἒ", "ἑ", "ἕ", "ἓ", "ζ", "η", "η", "ή",
-- "ὴ", "ῆ", "ῃ", "ἠ", "ἤ", "ἢ", "ἦ", "ᾐ", "ἡ", "ἥ",
-- "ἣ", "ἧ", "ᾑ", "ῄ", "ῂ", "ῇ", "ᾔ", "ᾒ", "ᾕ", "ᾓ",
-- "ᾖ", "ᾗ", "θ", "ι", "ί", "ὶ", "ῖ", "ἰ", "ἴ", "ἲ",
-- "ἶ", "ἱ", "ἵ", "ἳ", "ἷ", "ϊ", "ΐ", "ῒ", "ῗ", "κ",
-- "λ", "μ", "ν", "ξ", "ο", "ό", "ὸ", "ὀ", "ὄ", "ὂ",
-- "ὁ", "ὅ", "ὃ", "π", "ρ", "ῤ", "ῥ", "σ", "ς", "τ",
-- "υ", "ύ", "ὺ", "ῦ", "ὐ", "ὔ", "ὒ", "ὖ", "ὑ", "ὕ",
-- "ὓ", "ὗ", "ϋ", "ΰ", "ῢ", "ῧ", "φ", "χ", "ψ", "ω",
-- "ώ", "ὼ", "ῶ", "ῳ", "ὠ", "ὤ", "ὢ", "ὦ", "ᾠ", "ὡ",
-- "ὥ", "ὣ", "ὧ", "ᾡ", "ῴ", "ῲ", "ῷ", "ᾤ", "ᾢ", "ᾥ",
-- "ᾣ", "ᾦ", "ᾧ",
--
-- "Α", "Ά", "Ὰ", "Α͂", "Ἀ", "Ἁ", "Ἄ", "Ἂ", "Ἆ",
-- "Ἁ", "Ἅ", "Ἃ", "Ἇ",
-- "Β", "Γ", "Δ", "Ε", "Έ", "Ὲ",
-- "Ἐ", "Ἔ", "Ἒ", "Ἑ", "Ἕ", "Ἓ", "Ζ", "Η", "Η", "Ή",
-- "Ὴ", "Η͂", "Ἠ", "Ἤ", "Ἢ", "Ἦ", "Ἡ", "Ἥ",
-- "Ἣ", "Ἧ",
-- "Θ", "Ι", "Ί", "Ὶ", "Ι͂", "Ἰ", "Ἴ", "Ἲ",
-- "Ἶ", "Ἱ", "Ἵ", "Ἳ", "Ἷ", "Ϊ", "Ϊ́", "Ϊ̀", "Ϊ͂", "Κ",
-- "Λ", "Μ", "Ν", "Ξ", "Ο", "Ό", "Ὸ", "Ὀ", "Ὄ", "Ὂ",
-- "Ὁ", "Ὅ", "Ὃ", "Π", "Ρ", "Ρ̓", "Ῥ", "Σ", "Σ", "Τ",
-- "Υ", "Ύ", "Ὺ", "Υ͂", "Υ̓", "Υ̓́", "Υ̓̀", "Υ̓͂", "Ὑ", "Ὕ",
-- "Ὓ", "Ὗ", "Ϋ", "Ϋ́", "Ϋ̀", "Ϋ͂", "Φ", "Χ", "Ψ", "Ω",
-- "Ώ", "Ὼ", "Ω͂", "Ὠ", "Ὤ", "Ὢ", "Ὦ", "Ὡ",
-- "Ὥ", "Ὣ", "Ὧ",
-- },
gr = { -- greek
"α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ",
"λ", "μ", "ν", "ξ", "ο", "π", "ρ", "ς", "τ", "υ",
"φ", "χ", "ψ", "ω",
"Α", "Β", "Γ", "Δ", "Ε", "Ζ", "Η", "Θ", "Ι", "Κ",
"Λ", "Μ", "Ν", "Ξ", "Ο", "Π", "Ρ", "Σ", "Τ", "Υ",
"Χ", "Ψ", "Ω",
},
la = { -- latin
"a", "ā", "ă", "b", "c", "d", "e", "ē", "ĕ", "f",
"g", "h", "i", "ī", "ĭ", "j", "k", "l", "m", "n",
"o", "ō", "ŏ", "p", "q", "r", "s", "t", "u", "ū",
"ŭ", "v", "w", "x", "y", "ȳ", "y̆", "z", "æ",
"A", "Ā", "Ă", "B", "C", "D", "E", "Ē", "Ĕ", "F",
"G", "H", "I", "Ī", "Ĭ", "J", "K", "L", "M", "N",
"O", "Ō", "Ŏ", "P", "Q", "R", "S", "T", "U", "Ū",
"Ŭ", "V", "W", "X", "Y", "Ȳ", "Y̆", "Z", "Æ",
},
it = { -- italian
"a", "á", "b", "c", "d", "e", "é", "è", "f", "g",
"h", "i", "í", "ì", "j", "k", "l", "m", "n", "o",
"ó", "ò", "p", "q", "r", "s", "t", "u", "ú", "ù",
"v", "w", "x", "y", "z",
"A", "Á", "B", "C", "D", "E", "É", "È", "F", "G",
"H", "I", "Í", "Ì", "J", "K", "L", "M", "N", "O",
"Ó", "Ò", "P", "Q", "R", "S", "T", "U", "Ú", "Ù",
"V", "W", "X", "Y", "Z",
},
ro = { -- romanian
"a", "ă", "â", "b", "c", "d", "e", "f", "g", "h",
"i", "î", "j", "k", "l", "m", "n", "o", "p", "q",
"r", "s", "ș", "t", "ț", "u", "v", "w", "x", "y",
"z",
"A", "Ă", "Â", "B", "C", "D", "E", "F", "G", "H",
"I", "Î", "J", "K", "L", "M", "N", "O", "P", "Q",
"R", "S", "Ș", "T", "Ț", "U", "V", "W", "X", "Y",
"Z",
},
es = { -- spanish
"a", "á", "b", "c", "d", "e", "é", "f", "g", "h",
"i", "í", "j", "k", "l", "m", "n", "ñ", "o", "ó",
"p", "q", "r", "s", "t", "u", "ú", "ü", "v", "w",
"x", "y", "z",
"A", "Á", "B", "C", "D", "E", "É", "F", "G", "H",
"I", "Í", "J", "K", "L", "M", "N", "Ñ", "O", "Ó",
"P", "Q", "R", "S", "T", "U", "Ú", "Ü", "V", "W",
"X", "Y", "Z",
},
pt = { -- portuguese
"a", "á", "â", "ã", "à", "b", "c", "ç", "d", "e",
"é", "ê", "f", "g", "h", "i", "í", "j", "k", "l",
"m", "n", "o", "ó", "ô", "õ", "p", "q", "r", "s",
"t", "u", "ú", "ü", "v", "w", "x", "y", "z",
"A", "Á", "Â", "Ã", "À", "B", "C", "Ç", "D", "E",
"É", "Ê", "F", "G", "H", "I", "Í", "J", "K", "L",
"M", "N", "O", "Ó", "Ô", "Õ", "P", "Q", "R", "S",
"T", "U", "Ú", "Ü", "V", "W", "X", "Y", "Z",
},
lt = { -- lithuanian
"a", "ą", "b", "c", ch, "č", "d", "e", "ę", "ė",
"f", "g", "h", "i", "į", "y", "j", "k", "l", "m",
"n", "o", "p", "r", "s", "š", "t", "u", "ų", "ū",
"v", "z", "ž",
"A", "Ą", "B", "C", CH, "Č", "D", "E", "Ę", "Ė",
"F", "G", "H", "I", "Į", "Y", "J", "K", "L", "M",
"N", "O", "P", "R", "S", "Š", "T", "U", "Ų", "Ū",
"V", "Z", "Ž",
},
lv = { -- latvian
"a", "ā", "b", "c", "č", "d", "e", "ē", "f", "g",
"ģ", "h", "i", "ī", "j", "k", "ķ", "l", "ļ", "m",
"n", "ņ", "o", "ō", "p", "r", "ŗ", "s", "š", "t",
"u", "ū", "v", "z", "ž",
"A", "Ā", "B", "C", "Č", "D", "E", "Ē", "F", "G",
"Ģ", "H", "I", "Ī", "J", "K", "Ķ", "L", "Ļ", "M",
"N", "Ņ", "O", "Ō", "P", "R", "Ŗ", "S", "Š", "T",
"U", "Ū", "V", "Z", "Ž",
},
hu = { -- hungarian
"a", "á", "b", "c", "d", "e", "é",
"f", "g", "h", "i", "í", "j", "k", "l",
"m", "n", "o", "ó", "ö", "ő", "p", "q", "r",
"s", "t", "u", "ú", "ü", "ű", "v", "w",
"x", "y", "z",
"A", "Á", "B", "C", "D", "E", "É",
"F", "G", "H", "I", "Í", "J", "K", "L",
"M", "N", "O", "Ó", "Ö", "Ő", "P", "Q", "R",
"S", "T", "U", "Ú", "Ü", "Ű", "V", "W",
"X", "Y", "Z",
},
et = { -- estonian
"a", "b", "d", "e", "f", "g", "h", "i", "j", "k",
"l", "m", "n", "o", "p", "r", "s", "š", "z", "ž",
"t", "u", "v", "w", "õ", "ä", "ö", "ü", "x", "y",
"A", "B", "D", "E", "F", "G", "H", "I", "J", "K",
"L", "M", "N", "O", "P", "R", "S", "Š", "Z", "Ž",
"T", "U", "V", "W", "Õ", "Ä", "Ö", "Ü", "X", "Y",
},
-- jp = { -- japanese
-- "あ", "い", "う", "え", "お", "か", "き", "く", "け", "こ",
-- "さ", "し", "す", "せ", "そ", "た", "ち", "つ", "て", "と",
-- "な", "に", "ぬ", "ね", "の", "は", "ひ", "ふ", "へ", "ほ",
-- "ま", "み", "む", "め", "も", "や", "ゆ", "よ",
-- "ら", "り", "る", "れ", "ろ", "わ", "ゐ", "ゑ", "を", "ん",
-- },
}
local textselector = { }
for k, v in next, textlists do
textselector[#textselector+1] = k
end
table.sort(textselector)
local mathsets = {
{ "tf", {
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"
}, },
{ "bf", {
"𝐛", "𝐜", "𝐝", "𝐞", "𝐟", "𝐠", "𝐡", "𝐢", "𝐣", "𝐤", "𝐥", "𝐦", "𝐧", "𝐨", "𝐩", "𝐪", "𝐫", "𝐬", "𝐭", "𝐮", "𝐯", "𝐰", "𝐱", "𝐲", "𝐳",
"𝐀", "𝐁", "𝐂", "𝐃", "𝐄", "𝐅", "𝐆", "𝐇", "𝐈", "𝐉", "𝐊", "𝐋", "𝐌", "𝐍", "𝐎", "𝐏", "𝐐", "𝐑", "𝐒", "𝐓", "𝐔", "𝐕", "𝐖", "𝐗", "𝐘", "𝐙", "𝐚",
"𝟎", "𝟏", "𝟐", "𝟑", "𝟒", "𝟓", "𝟔", "𝟕", "𝟖", "𝟗"
}, },
{ "it", {
"𝑎", "𝑏", "𝑐", "𝑑", "𝑒", "𝑓", "𝑔", "ℎ", "𝑖", "𝑗", "𝑘", "𝑙", "𝑚", "𝑛", "𝑜", "𝑝", "𝑞", "𝑟", "𝑠", "𝑡", "𝑢", "𝑣", "𝑤", "𝑥", "𝑦", "𝑧",
"𝐴", "𝐵", "𝐶", "𝐷", "𝐸", "𝐹", "𝐺", "𝐻", "𝐼", "𝐽", "𝐾", "𝐿", "𝑀", "𝑁", "𝑂", "𝑃", "𝑄", "𝑅", "𝑆", "𝑇", "𝑈", "𝑉", "𝑊", "𝑋", "𝑌", "𝑍",
}, },
{ "bi", {
"𝒂", "𝒃", "𝒄", "𝒅", "𝒆", "𝒇", "𝒈", "𝒉", "𝒊", "𝒋", "𝒌", "𝒍", "𝒎", "𝒏", "𝒐", "𝒑", "𝒒", "𝒓", "𝒔", "𝒕", "𝒖", "𝒗", "𝒘", "𝒙", "𝒚", "𝒛",
"𝑨", "𝑩", "𝑪", "𝑫", "𝑬", "𝑭", "𝑮", "𝑯", "𝑰", "𝑱", "𝑲", "𝑳", "𝑴", "𝑵", "𝑶", "𝑷", "𝑸", "𝑹", "𝑺", "𝑻", "𝑼", "𝑽", "𝑾", "𝑿", "𝒀", "𝒁",
}, },
{ "sc", {
"𝒵", "𝒶", "𝒷", "𝒸", "𝒹", "ℯ", "𝒻", "ℊ", "𝒽", "𝒾", "𝒿", "𝓀", "𝓁", "𝓂", "𝓃", "ℴ", "𝓅", "𝓆", "𝓇", "𝓈", "𝓉", "𝓊", "𝓋", "𝓌", "𝓍", "𝓎", "𝓏",
"𝒜", "ℬ", "𝒞", "𝒟", "ℰ", "ℱ", "𝒢", "ℋ", "ℐ", "𝒥", "𝒦", "ℒ", "ℳ", "𝒩", "𝒪", "𝒫", "𝒬", "ℛ", "𝒮", "𝒯", "𝒰", "𝒱", "𝒲", "𝒳", "𝒴",
}, },
{ "sc bf", {
"𝓪", "𝓫", "𝓬", "𝓭", "𝓮", "𝓯", "𝓰", "𝓱", "𝓲", "𝓳", "𝓴", "𝓵", "𝓶", "𝓷", "𝓸", "𝓹", "𝓺", "𝓻", "𝓼", "𝓽", "𝓾", "𝓿", "𝔀", "𝔁", "𝔂", "𝔃",
"𝓐", "𝓑", "𝓒", "𝓓", "𝓔", "𝓕", "𝓖", "𝓗", "𝓘", "𝓙", "𝓚", "𝓛", "𝓜", "𝓝", "𝓞", "𝓟", "𝓠", "𝓡", "𝓢", "𝓣", "𝓤", "𝓥", "𝓦", "𝓧", "𝓨", "𝓩",
}, },
{ "fr", {
"𝔞", "𝔟", "𝔠", "𝔡", "𝔢", "𝔣", "𝔤", "𝔥", "𝔦", "𝔧", "𝔨", "𝔩", "𝔪", "𝔫", "𝔬", "𝔭", "𝔮", "𝔯", "𝔰", "𝔱", "𝔲", "𝔳", "𝔴", "𝔵", "𝔶", "𝔷",
"𝔄", "𝔅", "ℭ", "𝔇", "𝔈", "𝔉", "𝔊", "ℌ", "ℑ", "𝔍", "𝔎", "𝔏", "𝔐", "𝔑", "𝔒", "𝔓", "𝔔", "ℜ", "𝔖", "𝔗", "𝔘", "𝔙", "𝔚", "𝔛", "𝔜", "ℨ",
}, },
{ "ds", {
"𝕓", "𝕔", "𝕕", "𝕖", "𝕗", "𝕘", "𝕙", "𝕚", "𝕛", "𝕜", "𝕝", "𝕞", "𝕟", "𝕠", "𝕡", "𝕢", "𝕣", "𝕤", "𝕥", "𝕦", "𝕧", "𝕨", "𝕩", "𝕪", "𝕫",
"𝔸", "𝔹", "ℂ", "𝔻", "𝔼", "𝔽", "𝔾", "ℍ", "𝕀", "𝕁", "𝕂", "𝕃", "𝕄", "ℕ", "𝕆", "ℙ", "ℚ", "ℝ", "𝕊", "𝕋", "𝕌", "𝕍", "𝕎", "𝕏", "𝕐", "ℤ", "𝕒",
"𝟘", "𝟙", "𝟚", "𝟛", "𝟜", "𝟝", "𝟞", "𝟟", "𝟠", "𝟡"
}, },
{ "fr bf", {
"𝕬", "𝕭", "𝕮", "𝕯", "𝕰", "𝕱", "𝕲", "𝕳", "𝕴", "𝕵", "𝕶", "𝕷", "𝕸", "𝕹", "𝕺", "𝕻", "𝕼", "𝕽", "𝕾", "𝕿", "𝖀", "𝖁", "𝖂", "𝖃",
"𝖄", "𝖅", "𝖆", "𝖇", "𝖈", "𝖉", "𝖊", "𝖋", "𝖌", "𝖍", "𝖎", "𝖏", "𝖐", "𝖑", "𝖒", "𝖓", "𝖔", "𝖕", "𝖖", "𝖗", "𝖘", "𝖙", "𝖚", "𝖛", "𝖜", "𝖝", "𝖞", "𝖟"
}, },
{ "ss tf", {
"𝖺", "𝖻", "𝖼", "𝖽", "𝖾", "𝖿", "𝗀", "𝗁", "𝗂", "𝗃", "𝗄", "𝗅", "𝗆", "𝗇", "𝗈", "𝗉", "𝗊", "𝗋", "𝗌", "𝗍", "𝗎", "𝗏", "𝗐", "𝗑", "𝗒", "𝗓",
"𝖠", "𝖡", "𝖢", "𝖣", "𝖤", "𝖥", "𝖦", "𝖧", "𝖨", "𝖩", "𝖪", "𝖫", "𝖬", "𝖭", "𝖮", "𝖯", "𝖰", "𝖱", "𝖲", "𝖳", "𝖴", "𝖵", "𝖶", "𝖷", "𝖸", "𝖹",
"𝟢", "𝟣", "𝟤", "𝟥", "𝟦", "𝟧", "𝟨", "𝟩", "𝟪", "𝟫"
}, },
{ "ss bf", {
"𝗮", "𝗯", "𝗰", "𝗱", "𝗲", "𝗳", "𝗴", "𝗵", "𝗶", "𝗷", "𝗸", "𝗹", "𝗺", "𝗻", "𝗼", "𝗽", "𝗾", "𝗿", "𝘀", "𝘁", "𝘂", "𝘃", "𝘄", "𝘅", "𝘆", "𝘇",
"𝗔", "𝗕", "𝗖", "𝗗", "𝗘", "𝗙", "𝗚", "𝗛", "𝗜", "𝗝", "𝗞", "𝗟", "𝗠", "𝗡", "𝗢", "𝗣", "𝗤", "𝗥", "𝗦", "𝗧", "𝗨", "𝗩", "𝗪", "𝗫", "𝗬", "𝗭",
"𝟬", "𝟭", "𝟮", "𝟯", "𝟰", "𝟱", "𝟲", "𝟳", "𝟴", "𝟵",
}, },
{ "ss it", {
"𝘢", "𝘣", "𝘤", "𝘥", "𝘦", "𝘧", "𝘨", "𝘩", "𝘪", "𝘫", "𝘬", "𝘭", "𝘮", "𝘯", "𝘰", "𝘱", "𝘲", "𝘳", "𝘴", "𝘵", "𝘶", "𝘷", "𝘸", "𝘹", "𝘺", "𝘻",
"𝘈", "𝘉", "𝘊", "𝘋", "𝘌", "𝘍", "𝘎", "𝘏", "𝘐", "𝘑", "𝘒", "𝘓", "𝘔", "𝘕", "𝘖", "𝘗", "𝘘", "𝘙", "𝘚", "𝘛", "𝘜", "𝘝", "𝘞", "𝘟", "𝘠", "𝘡",
}, },
{ "ss bi", {
"𝙖", "𝙗", "𝙘", "𝙙", "𝙚", "𝙛", "𝙜", "𝙝", "𝙞", "𝙟", "𝙠", "𝙡", "𝙢", "𝙣", "𝙤", "𝙥", "𝙦", "𝙧", "𝙨", "𝙩", "𝙪", "𝙫", "𝙬", "𝙭", "𝙮", "𝙯",
"𝘼", "𝘽", "𝘾", "𝘿", "𝙀", "𝙁", "𝙂", "𝙃", "𝙄", "𝙅", "𝙆", "𝙇", "𝙈", "𝙉", "𝙊", "𝙋", "𝙌", "𝙍", "𝙎", "𝙏", "𝙐", "𝙑", "𝙒", "𝙓", "𝙔", "𝙕",
}, },
{ "tt", {
"𝚊", "𝚋", "𝚌", "𝚍", "𝚎", "𝚏", "𝚐", "𝚑", "𝚒", "𝚓", "𝚔", "𝚕", "𝚖", "𝚗", "𝚘", "𝚙", "𝚚", "𝚛", "𝚜", "𝚝", "𝚞", "𝚟", "𝚠", "𝚡", "𝚢", "𝚣",
"𝙰", "𝙱", "𝙲", "𝙳", "𝙴", "𝙵", "𝙶", "𝙷", "𝙸", "𝙹", "𝙺", "𝙻", "𝙼", "𝙽", "𝙾", "𝙿", "𝚀", "𝚁", "𝚂", "𝚃", "𝚄", "𝚅", "𝚆", "𝚇", "𝚈", "𝚉",
"𝟶", "𝟷", "𝟸", "𝟹", "𝟺", "𝟻", "𝟼", "𝟽", "𝟾", "𝟿"
}, },
{ "gr tf", {
"α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "ς", "σ", "τ", "υ", "φ", "χ", "ψ", "ω",
"Α", "Β", "Γ", "Δ", "Ε", "Ζ", "Η", "Θ", "Ι", "Κ", "Λ", "Μ", "Ν", "Ξ", "Ο", "Π", "Ρ", "", "Σ", "Τ", "Υ", "Φ", "Χ", "Ψ", "Ω",
}, },
{ "gr bf", {
"𝛂", "𝛃", "𝛄", "𝛅", "𝛆", "𝛇", "𝛈", "𝛉", "𝛊", "𝛋", "𝛌", "𝛍", "𝛎", "𝛏", "𝛐", "𝛑", "𝛒", "𝛓", "𝛔", "𝛕", "𝛖", "𝛗", "𝛘", "𝛙", "𝛚",
"𝚨", "𝚩", "𝚪", "𝚫", "𝚬", "𝚭", "𝚮", "𝚯", "𝚰", "𝚱", "𝚲", "𝚳", "𝚴", "𝚵", "𝚶", "𝚷", "𝚸", "𝚹", "𝚺", "𝚻", "𝚼", "𝚽", "𝚾", "𝚿", "𝛀",
}, },
{ "gr it", {
"𝛼", "𝛽", "𝛾", "𝛿", "𝜀", "𝜁", "𝜂", "𝜃", "𝜄", "𝜅", "𝜆", "𝜇", "𝜈", "𝜉", "𝜊", "𝜋", "𝜌", "𝜍", "𝜎", "𝜏", "𝜐", "𝜑", "𝜒", "𝜓", "𝜔",
"𝛢", "𝛣", "𝛤", "𝛥", "𝛦", "𝛧", "𝛨", "𝛩", "𝛪", "𝛫", "𝛬", "𝛭", "𝛮", "𝛯", "𝛰", "𝛱", "𝛲", "𝛳", "𝛴", "𝛵", "𝛶", "𝛷", "𝛸", "𝛹", "𝛺",
}, },
{ "gr bi", {
"𝜶", "𝜷", "𝜸", "𝜹", "𝜺", "𝜻", "𝜼", "𝜽", "𝜾", "𝜿", "𝝀", "𝝁", "𝝂", "𝝃", "𝝄", "𝝅", "𝝆", "𝝇", "𝝈", "𝝉", "𝝊", "𝝋", "𝝌", "𝝍", "𝝎",
"𝜜", "𝜝", "𝜞", "𝜟", "𝜠", "𝜡", "𝜢", "𝜣", "𝜤", "𝜥", "𝜦", "𝜧", "𝜨", "𝜩", "𝜪", "𝜫", "𝜬", "𝜭", "𝜮", "𝜯", "𝜰", "𝜱", "𝜲", "𝜳", "𝜴",
}, },
{ "gr ss bf", {
"𝝰", "𝝱", "𝝲", "𝝳", "𝝴", "𝝵", "𝝶", "𝝷", "𝝸", "𝝹", "𝝺", "𝝻", "𝝼", "𝝽", "𝝾", "𝝿", "𝞀", "𝞁", "𝞂", "𝞃", "𝞄", "𝞅", "𝞆", "𝞇", "𝞈",
"𝝖", "𝝗", "𝝘", "𝝙", "𝝚", "𝝛", "𝝜", "𝝝", "𝝞", "𝝟", "𝝠", "𝝡", "𝝢", "𝝣", "𝝤", "𝝥", "𝝦", "𝝧", "𝝨", "𝝩", "𝝪", "𝝫", "𝝬", "𝝭", "𝝮",
}, },
{ "gr ss bi", {
"𝞪", "𝞫", "𝞬", "𝞭", "𝞮", "𝞯", "𝞰", "𝞱", "𝞲", "𝞳", "𝞴", "𝞵", "𝞶", "𝞷", "𝞸", "𝞹", "𝞺", "𝞻", "𝞼", "𝞽", "𝞾", "𝞿", "𝟀", "𝟁", "𝟂",
"𝞐", "𝞑", "𝞒", "𝞓", "𝞔", "𝞕", "𝞖", "𝞗", "𝞘", "𝞙", "𝞚", "𝞛", "𝞜", "𝞝", "𝞞", "𝞟", "𝞠", "𝞡", "𝞢", "𝞣", "𝞤", "𝞥", "𝞦", "𝞧", "𝞨",
}, },
{ "op", {
}, },
{ "sy a", {
}, },
{ "sy b", {
}, },
{ "sy c", {
}, },
}
local mathlists = { }
local mathselector = { }
for i=1,#mathsets do
local mathset = mathsets[i]
mathselector[#mathselector+1] = mathset[1]
mathlists[mathset[1]] = mathset[2]
end
local enabled = 0
local usedlists = {
{ name = "text", current = "en", lists = textlists, selector = textselector },
{ name = "math", current = "tf", lists = mathlists, selector = mathselector },
}
local function make_strip()
local used = usedlists[enabled]
local lists = used.lists
local alphabet = lists[used.current]
local selector = "(hide)(" .. concat(used.selector,")(") .. ")"
local alphabet = "(" .. used.current .. ":)(" .. concat(alphabet,")(") .. ")"
scite.StripShow(selector .. "\n" .. alphabet)
end
local function hide_strip()
scite.StripShow("")
end
local function process_strip(control)
local value = scite.StripValue(control)
if value == "hide" then
hide_strip()
return
elseif find(value,".+:") then
return
end
local used = usedlists[enabled]
if used.lists[value] then
used.current = value
make_strip()
else
editor:insert(editor.CurrentPos,value)
end
end
local function ignore_strip()
end
function toggle_strip(name)
enabled = enabled + 1
if usedlists[enabled] then
make_strip()
OnStrip = process_strip
else
enabled = 0
hide_strip()
OnStrip = ignore_strip
end
end
-- this way we get proper lexing for lexers that do more extensive
-- parsing
function OnOpen(filename)
-- print("opening: " .. filename .. " (size: " .. editor.TextLength .. ")")
editor:Colourise(1,editor.TextLength)
end
-- output.LexerLanguage = ""
|