chore: sync

This commit is contained in:
JuanZoran 2023-03-08 15:46:30 +08:00
parent 8f6b1d4069
commit 947beb16c8
3 changed files with 18 additions and 5 deletions

View File

@ -29,9 +29,24 @@ M.query = function(opts)
limit = 1, limit = 1,
})[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 end
M.nowait = true M.nowait = true
M.field = { M.field = {

View File

@ -11,6 +11,4 @@ M.is_English = function(str)
end end
return M return M

View File

@ -1,10 +1,10 @@
local api, fn = vim.api, vim.fn
---@class buf ---@class buf
---@field bufnr integer buffer handle ---@field bufnr integer buffer handle
---@field size integer buffer line count ---@field size integer buffer line count
local buffer = {} local buffer = {}
local api, fn = vim.api, vim.fn
---Clear all content in buffer ---Clear all content in buffer
function buffer:wipe() function buffer:wipe()
api.nvim_buf_set_lines(self.bufnr, 0, -1, false, {}) api.nvim_buf_set_lines(self.bufnr, 0, -1, false, {})