36 lines
937 B
Lua
36 lines
937 B
Lua
local files = require 'files'
|
|
local converter = require 'proto.converter'
|
|
local log = require 'log'
|
|
local spell = require 'provider.spell'
|
|
|
|
|
|
---@async
|
|
return function(uri, callback)
|
|
local state = files.getState(uri)
|
|
if not state then
|
|
return
|
|
end
|
|
local text = state.originText
|
|
|
|
local status, diagnosticInfos = spell.spellCheck(uri, text)
|
|
|
|
if not status then
|
|
if diagnosticInfos ~= nil then
|
|
log.error(diagnosticInfos)
|
|
end
|
|
|
|
return
|
|
end
|
|
|
|
if diagnosticInfos then
|
|
for _, diagnosticInfo in ipairs(diagnosticInfos) do
|
|
callback {
|
|
start = converter.unpackPosition(state, diagnosticInfo.range.start),
|
|
finish = converter.unpackPosition(state, diagnosticInfo.range["end"]),
|
|
message = diagnosticInfo.message,
|
|
data = diagnosticInfo.data
|
|
}
|
|
end
|
|
end
|
|
end
|