17 lines
399 B
Lua
17 lines
399 B
Lua
|
-- if this file exists, then change setting `Lua.runtime.plugin`
|
||
|
-- see https://github.com/sumneko/lua-language-server/wiki/Plugins
|
||
|
|
||
|
function OnSetText(uri, text)
|
||
|
local diffs = {}
|
||
|
|
||
|
for start, finish in text:gmatch '()pairs()' do
|
||
|
diffs[#diffs+1] = {
|
||
|
start = start,
|
||
|
finish = finish - 1,
|
||
|
text = 'safepairs'
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return diffs
|
||
|
end
|