chore: sync
This commit is contained in:
parent
8f6b1d4069
commit
947beb16c8
@ -29,9 +29,24 @@ M.query = function(opts)
|
||||
limit = 1,
|
||||
})[1]
|
||||
|
||||
return res and formatter(res) or nil
|
||||
|
||||
local ret = {
|
||||
-- from = '',
|
||||
-- to = '',
|
||||
engine = 'offline',
|
||||
}
|
||||
|
||||
if res then
|
||||
res.result = formatter(res)
|
||||
-- TODO
|
||||
else
|
||||
-- TODO :
|
||||
end
|
||||
|
||||
return ret
|
||||
end
|
||||
|
||||
|
||||
M.nowait = true
|
||||
|
||||
M.field = {
|
||||
|
@ -11,6 +11,4 @@ M.is_English = function(str)
|
||||
end
|
||||
|
||||
|
||||
|
||||
return M
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
local api, fn = vim.api, vim.fn
|
||||
|
||||
---@class buf
|
||||
---@field bufnr integer buffer handle
|
||||
---@field size integer buffer line count
|
||||
local buffer = {}
|
||||
|
||||
local api, fn = vim.api, vim.fn
|
||||
|
||||
---Clear all content in buffer
|
||||
function buffer:wipe()
|
||||
api.nvim_buf_set_lines(self.bufnr, 0, -1, false, {})
|
||||
|
Loading…
x
Reference in New Issue
Block a user