29 lines
806 B
Lua
29 lines
806 B
Lua
local m_window
|
|
local m_result
|
|
|
|
|
|
return function(word)
|
|
-- TODO :online query
|
|
m_result = require('Trans.query.offline')(word)
|
|
m_window = require('Trans.window')
|
|
local float = require('Trans').conf.float
|
|
|
|
local opt = {
|
|
relative = 'editor',
|
|
width = float.width,
|
|
height = float.height,
|
|
border = float.border,
|
|
title = float.title,
|
|
row = math.floor((vim.o.lines - float.height) / 2),
|
|
col = math.floor((vim.o.columns - float.width) / 2),
|
|
}
|
|
|
|
-- 创建窗口
|
|
m_window.init(true, opt)
|
|
m_window.center('https:github.com/JuanZoran/Trans.nvim', '@text.uri') -- only show color with treesiter
|
|
m_window.draw()
|
|
m_window.map('q', function()
|
|
m_window.try_close(float.animation)
|
|
end)
|
|
end
|