-
Notifications
You must be signed in to change notification settings - Fork 3
/
snippets.lua
566 lines (494 loc) · 13.4 KB
/
snippets.lua
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
VERSION = "0.1.4"
local debugflag = true
local curFileType = ""
local snippets = {}
local currentSnippet = nil
local Location = {}
Location.__index = Location
local Snippet = {}
Snippet.__index = Snippet
-- Snippets
-- --> Snippet
-- --> Location
function Location.new(idx, ph, snippet)
debug1("Location.new(idx, ph, snip) idx = " , idx)
--debugt("Location.new(idx, ph, snip) ph = ", ph)
--debugt("Location.new(idx, ph, snippet) snippet = ", snippet)
local self = setmetatable({}, Location)
self.idx = idx
self.ph = ph
self.snippet = snippet
return self
end
-- offset of the location relative to the snippet start
function Location.offset(self)
debug("Location.offset(self)")
local add = 0
for i = 1, #self.snippet.locations do
local loc = self.snippet.locations[i]
debug1("loc = ",loc)
if loc == self then
break
end
local val = loc.ph.value
if val then
add = add + val:len()
end
end
return self.idx+add
end
function Location.startPos(self)
--debugt("Location.startPos(self) = ",self)
local loc = self.snippet.startPos
return loc:Move(self:offset(), self.snippet.view.buf)
end
-- returns the length of the location (but at least 1)
function Location.len(self)
debug("Location.len(self)")
local len = 0
if self.ph.value then
len = self.ph.value:len()
end
if len <= 0 then
len = 1
end
return len
end
function Location.endPos(self)
debug("Location.endPos(self)")
local start = self:startPos()
return start:Move(self:len(), self.snippet.view.buf)
end
-- check if the given loc is within the location
function Location.isWithin(self, loc)
debug("Location.isWithin(self, loc)")
return loc:GreaterEqual(self:startPos()) and loc:LessEqual(self:endPos())
end
function Location.focus(self)
debug("Location.focus(self)")
local view = self.snippet.view
local startP = self:startPos():Move(-1, view.Buf)
local endP = self:endPos():Move(-1, view.Buf)
while view.Cursor:LessThan(startP) do
view.Cursor:Right()
end
while view.Cursor:GreaterThan(endP) do
view.Cursor:Left()
end
if self.ph.value:len() > 0 then
view.Cursor:SetSelectionStart(startP)
view.Cursor:SetSelectionEnd(endP)
else
view.Cursor:ResetSelection()
end
end
function Location.handleInput(self, ev)
debug("Location.handleInput(self, ev)")
if ev.EventType == 1 then
-- TextInput
if ev.Deltas[1].Text == "\n" then
Accept()
return false
else
local offset = 1
local sp = self:startPos()
while sp:LessEqual(-ev.Deltas[1].Start) do
sp = sp:Move(1, self.snippet.view.Buf)
offset = offset + 1
end
self.snippet:remove()
local v = self.ph.value
if v == nil then
v = ""
end
self.ph.value = v:sub(0, offset-1) .. ev.Deltas[1].Text .. v:sub(offset)
self.snippet:insert()
return true
end
elseif ev.EventType == -1 then
-- TextRemove
local offset = 1
local sp = self:startPos()
while sp:LessEqual(-ev.Deltas[1].Start) do
sp = sp:Move(1, self.snippet.view.Buf)
offset = offset + 1
end
if ev.Deltas[1].Start.Y ~= ev.Deltas[1].End.Y then
return false
end
self.snippet:remove()
local v = self.ph.value
if v == nil then
v = ""
end
local len = ev.Deltas[1].End.X - ev.Deltas[1].Start.X
self.ph.value = v:sub(0, offset-1) .. v:sub(offset+len)
self.snippet:insert()
return true
end
return false
end
-- new snippet
function Snippet.new()
debug("Snippet.new()")
local self = setmetatable({}, Snippet)
self.code = ""
return self
end
-- add line of code to snippet
function Snippet.AddCodeLine(self, line)
--debugt("Snippet.AddCodeLine(self,line) self = " , self)
debug1("Snippet.AddCodeLine(self, line) line = " , line)
if self.code ~= "" then
self.code = self.code .. "\n"
end
self.code = self.code .. line
end
function Snippet.Prepare(self)
debug("Snippet.Prepare(self)")
if not self.placeholders then
self.placeholders = {}
self.locations = {}
local count = 0
local pattern = "${(%d+):?([^}]*)}"
while true do
local num, value = self.code:match(pattern)
if not num then
break
end
count = count+1
num = tonumber(num)
local idx = self.code:find(pattern)
self.code = self.code:gsub(pattern, "", 1)
local placeHolders = self.placeholders[num]
if not placeHolders then
placeHolders = {num = num}
self.placeholders[#self.placeholders+1] = placeHolders
end
self.locations[#self.locations+1] = Location.new(idx, placeHolders, self)
debug1("location total = ",#self.locations)
if value then
placeHolders.value = value
end
end
end
end
function Snippet.clone(self)
debug("Snippet.clone(self)")
local result = Snippet.new()
result:AddCodeLine(self.code)
result:Prepare()
return result
end
function Snippet.str(self)
debug("Snippet.str(self)")
local res = self.code
for i = #self.locations, 1, -1 do
local loc = self.locations[i]
res = res:sub(0, loc.idx-1) .. loc.ph.value .. res:sub(loc.idx)
end
return res
end
function Snippet.findLocation(self, loc)
debug1("Snippet.findLocation(self, loc) loc = ",loc)
for i = 1, #self.locations do
if self.locations[i]:isWithin(loc) then
return self.locations[i]
end
end
return nil
end
function Snippet.remove(self)
debug("Snippet.remove(self)")
local endPos = self.startPos:Move(self:str():len(), self.view.Buf)
self.modText = true
self.view.Cursor:SetSelectionStart(self.startPos)
self.view.Cursor:SetSelectionEnd(endPos)
self.view.Cursor:DeleteSelection()
self.view.Cursor:ResetSelection()
self.modText = false
end
function Snippet.insert(self)
debug("Snippet.insert(self)")
self.modText = true
self.view.Buf:insert(self.startPos, self:str())
self.modText = false
end
function Snippet.focusNext(self)
debug("Snippet.focusNext(self)")
if self.focused == nil then
self.focused = 0
else
self.focused = (self.focused + 1) % #self.placeholders
end
local ph = self.placeholders[self.focused+1]
for i = 1, #self.locations do
if self.locations[i].ph == ph then
self.locations[i]:focus()
return
end
end
end
local function CursorWord(v)
debug1("CursorWord(v)",v)
local c = v.Cursor
local x = c.X-1 -- start one rune before the cursor
local result = ""
while x >= 0 do
local r = RuneStr(c:RuneUnder(x))
if (r == " ") then -- IsWordChar(r) then
break
else
result = r .. result
end
x = x-1
end
return result
end
local function ReadSnippets(filetype)
debug1("ReadSnippets(filetype)",filetype)
local snippets = {}
local allSnippetFiles = ListRuntimeFiles("snippets")
local exists = false
for i = 1, #allSnippetFiles do
if allSnippetFiles[i] == filetype then
exists = true
break
end
end
if not exists then
messenger:Error("No snippets file for \""..filetype.."\"")
return snippets
end
local snippetFile = ReadRuntimeFile("snippets", filetype)
local curSnip = nil
local lineNo = 0
for line in string.gmatch(snippetFile, "(.-)\r?\n") do
lineNo = lineNo + 1
if string.match(line,"^#") then
-- comment
elseif line:match("^snippet") then
curSnip = Snippet.new()
for snipName in line:gmatch("%s(.+)") do -- %s space .+ one or more non-empty sequence
snippets[snipName] = curSnip
end
else
local codeLine = line:match("^\t(.*)$")
if codeLine ~= nil then
curSnip:AddCodeLine(codeLine)
elseif line ~= "" then
messenger:Error("Invalid snippets file (Line #"..tostring(lineNo)..")")
end
end
end
debugt("ReadSnippets(filetype) snippets = ",snippets)
return snippets
end
-- Check filetype and load snippets
-- Return true is snippets loaded for filetype
-- Return false if no snippets loaded
local function EnsureSnippets()
debug("EnsureSnippets()")
local filetype = GetOption("filetype")
if curFileType ~= filetype then
snippets = ReadSnippets(filetype)
curFileType = filetype
end
if next(snippets) == nil then
return false
end
return true
end
function onBeforeTextEvent(ev)
debug1("onBeforeTextEvent(ev)",ev)
if currentSnippet ~= nil and currentSnippet.view == CurView() then
if currentSnippet.modText then
-- text event from the snippet. simply ignore it...
return true
end
local locStart = nil
local locEnd = nil
if ev.Deltas[1].Start ~= nil and currentSnippet ~= nil then
locStart = currentSnippet:findLocation(ev.Deltas[1].Start:Move(1, CurView().Buf))
locEnd = currentSnippet:findLocation(ev.Deltas[1].End)
end
if locStart ~= nil and ((locStart == locEnd) or (ev.Deltas[1].End.Y==0 and ev.Deltas[1].End.X==0)) then
if locStart:handleInput(ev) then
CurView().Cursor:Goto(-ev.C)
return false
end
end
Accept()
end
return true
end
-- Insert snippet if found.
-- Pass in the name of the snippet to be inserted by command mode
-- No name passed in then it will check the text left of the cursor
function Insert(snippetName)
debug1("Insert(snippetName)",snippetName)
local v = CurView()
local c = v.Cursor
local buf = v.Buf
local xy = Loc(c.X, c.Y)
-- check if a snippet name was passed in
local noArg = false
if not snippetName then
snippetName = CursorWord(v)
noArg = true
end
-- check filetype and load snippets
local result = EnsureSnippets()
-- if no snippets return early
if (result == false) then return end
-- curSn cloned into currentSnippet if snippet found
local curSn = snippets[snippetName]
if curSn then
currentSnippet = curSn:clone()
currentSnippet.view = v
-- remove snippet keyword from micro buffer before inserting snippet
if noArg then
currentSnippet.startPos = xy:Move(-snippetName:len(), buf)
currentSnippet.modText = true
c:SetSelectionStart(currentSnippet.startPos)
c:SetSelectionEnd(xy)
c:DeleteSelection()
c:ResetSelection()
currentSnippet.modText = false
else
-- no need to remove snippet keyword from buffer as run from command mode
currentSnippet.startPos = xy
end
-- insert snippet to micro buffer
currentSnippet:insert()
messenger:Message("Snippet Inserted \""..snippetName.."\"")
-- Placeholders
if #currentSnippet.placeholders == 0 then
local pos = currentSnippet.startPos:Move(currentSnippet:str():len(), v.Buf)
while v.Cursor:LessThan(pos) do
v.Cursor:Right()
end
while v.Cursor:GreaterThan(pos) do
v.Cursor:Left()
end
else
currentSnippet:focusNext()
end
else
-- Snippet not found
messenger:Message("Unknown snippet \""..snippetName.."\"")
end
end
function Next()
debug("Next()")
if currentSnippet then
currentSnippet:focusNext()
end
end
function Accept()
debug("Accept()")
currentSnippet = nil
end
function Cancel()
debug("Cancel()")
if currentSnippet then
currentSnippet:remove()
Accept()
end
end
local function StartsWith(String,Start)
debug1("StartsWith(String,Start) String ",String)
debug1("StartsWith(String,Start) start ",start)
String = String:upper()
Start = Start:upper()
return string.sub(String,1,string.len(Start))==Start
end
-- Used for auto complete in the command prompt
function findSnippet(input)
debug1("findSnippet(input)",input)
local result = {}
EnsureSnippets()
for name,v in pairs(snippets) do
if StartsWith(name, input) then
table.insert(result, name)
end
end
return result
end
-- Debug functions below
-- debug1 is for logging functionName and 1 argument passed
function debug1(functionName, argument)
if debugflag == false then return end
if argument == nil then
messenger:AddLog("snippets-plugin -> function " .. functionName .. " = nil")
elseif argument == "" then
messenger:AddLog("snippets-plugin -> function " .. functionName .. " = empty string")
else messenger:AddLog("snippets-plugin -> function " .. functionName .. " = " .. tostring(argument))
end
end
-- debug is for logging functionName only
function debug(functionName)
if debugflag == false then return end
messenger:AddLog("snippets-plugin -> function " .. functionName)
end
-- debug is for logging functionName and table
function debugt(functionName,tablepassed)
if debugflag == false then return end
messenger:AddLog("snippets-plugin -> function " .. functionName )
tprint(tablepassed)
-- if (tablepassed == nil) then return end
-- for key,value in pairs(tablepassed) do
-- messenger:AddLog("key - " .. tostring(key) .. "value = " .. tostring(value[1]) )
-- end
end
-- dump table
function dump(o)
if type(o) == 'table' then
local s = '{ '
for k,v in pairs(o) do
if type(k) ~= 'number' then k = '"'..k..'"' end
s = s .. '['..k..'] = ' .. dump(v) .. ','
end
return s .. '} '
else
return tostring(o)
end
end
function tprint (tbl, indent)
if not indent then indent = 0 end
for k, v in pairs(tbl) do
formatting = string.rep(" ", indent) .. k .. ": "
if type(v) == "table" then
messenger:AddLog(formatting .. "Table ->")
tprint(v, indent+1)
elseif type(v) == nil then
messenger:AddLog(formatting .. " nil")
else
messenger:AddLog(formatting .. tostring(v))
end
end
end
function checkTableisEmpty(myTable)
if next(myTable) == nil then
-- myTable is empty
end
end
function tablePrint(tbl)
for index = 1, #tbl do
messenger:AddLog(tostring(index) .. " = " .. tostring(tbl[index]))
end
end
-- Insert a snippet
MakeCommand("snippetinsert", "snippets.Insert", MakeCompletion("snippets.findSnippet"), 0)
-- Mark next placeholder
MakeCommand("snippetnext", "snippets.Next", 0)
-- Cancel current snippet (removes the text)
MakeCommand("snippetcancel", "snippets.Cancel", 0)
-- Acceptes snipped editing
MakeCommand("snippetaccept", "snippets.Accept", 0)
AddRuntimeFile("snippets", "help", "help/snippets.md")
AddRuntimeFilesFromDirectory("snippets", "snippets", "snippets", "*.snippets")
BindKey("Alt-w", "snippets.Next")
BindKey("Alt-a", "snippets.Accept")
BindKey("Alt-s", "snippets.Insert")
BindKey("Alt-d", "snippets.Cancel")