chore: sync
This commit is contained in:
parent
8f6b1d4069
commit
947beb16c8
@ -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 = {
|
||||||
|
@ -11,6 +11,4 @@ M.is_English = function(str)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
||||||
|
@ -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, {})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user