Trans.nvim/lua/Trans/translate.lua

54 lines
1.5 KiB
Lua
Raw Normal View History

2023-01-14 01:57:12 +08:00
local function get_select()
local s_start = vim.fn.getpos("v")
local s_end = vim.fn.getpos(".")
if s_start[2] > s_end[2] or s_start[3] > s_end[3] then
s_start, s_end = s_end, s_start
end
2023-01-14 01:57:12 +08:00
local n_lines = math.abs(s_end[2] - s_start[2]) + 1
local lines = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)
lines[1] = string.sub(lines[1], s_start[3], -1)
if n_lines == 1 then
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3] - s_start[3] + 1)
else
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3])
end
return table.concat(lines, '')
end
local function get_word(mode)
2023-01-31 23:17:03 +08:00
local word
if mode == 'n' then
2023-01-31 23:17:03 +08:00
word = vim.fn.expand('<cword>')
elseif mode == 'v' then
2023-01-16 00:27:12 +08:00
vim.api.nvim_input('<ESC>')
2023-01-31 23:17:03 +08:00
word = get_select()
elseif mode == 'i' then
2023-01-14 19:35:13 +08:00
-- TODO Use Telescope with fuzzy finder
2023-01-31 23:17:03 +08:00
vim.ui.input({ prompt = '请输入需要查询的单词: ' }, function(input)
word = input
end)
2023-01-14 19:35:13 +08:00
else
error('invalid mode: ' .. mode)
2023-01-14 01:57:12 +08:00
end
2023-01-31 23:17:03 +08:00
return word
end
2023-01-21 14:02:38 +08:00
2023-01-31 23:17:03 +08:00
return function(mode, view)
vim.validate {
mode = { mode, 's', true },
view = { view, 's', true }
}
mode = mode or vim.api.nvim_get_mode().mode
view = view or require('Trans').conf.view[mode]
assert(mode and view)
2023-01-31 23:17:03 +08:00
local word = get_word(mode)
if word == nil or word == '' then
return
else
require('Trans.view.' .. view)(word:gsub('^%s+', '', 1))
end
2023-01-14 01:57:12 +08:00
end