feat: suppose translate in visual mode

This commit is contained in:
JuanZoran 2022-12-21 16:18:36 +08:00
parent 1ef2e80fd6
commit 76a33393fc
2 changed files with 41 additions and 13 deletions

View File

@ -40,7 +40,7 @@ local function get_title(text, query_res)
pos_info.title = {} pos_info.title = {}
pos_info.title.word = #query_res.word pos_info.title.word = #query_res.word
pos_info.title.phonetic = #query_res.phonetic pos_info.title.phonetic = query_res.phonetic and #query_res.phonetic or 3
pos_info.title.line = line pos_info.title.line = line
line = line + 1 line = line + 1
end end
@ -220,10 +220,12 @@ local function hl_zh()
end end
local function hl_en() local function hl_en()
if pos_info.en then
api.nvim_buf_add_highlight(buf, -1, hl.ref, pos_info.en.line, 0, -1) api.nvim_buf_add_highlight(buf, -1, hl.ref, pos_info.en.line, 0, -1)
for i = 1, pos_info.en.content, 1 do for i = 1, pos_info.en.content, 1 do
api.nvim_buf_add_highlight(buf, -1, hl.en, pos_info.en.line + i, 0, -1) api.nvim_buf_add_highlight(buf, -1, hl.en, pos_info.en.line + i, 0, -1)
end end
end
end end
local hl_handler = { local hl_handler = {
@ -246,21 +248,43 @@ local function clear_tmp_info()
line = 0 line = 0
end end
function M.query_cursor() local function get_visual_selection()
local word = vim.fn.expand('<cword>') local s_start = vim.fn.getpos("'<")
local s_end = vim.fn.getpos("'>")
assert(s_end[2] == s_start[2])
local lin = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)[1]
local word = string.sub(lin, s_start[3], s_end[3])
return word
end
function M.query(mode)
assert(buf > 0)
local word = ''
if mode == 'n' then
word = vim.fn.expand('<cword>')
elseif mode == 'v' then
word = get_visual_selection()
else
print(mode, 'is invalid')
assert(false)
end
local res = require("Trans.database").query(word) local res = require("Trans.database").query(word)
local width, height = set_text(res) local width, height = set_text(res)
show_win(width, height) show_win(width, height)
if res then
set_hl() set_hl()
clear_tmp_info() clear_tmp_info()
end
end end
function M.query() function M.query_cursor()
-- TODO: M.query('n')
end end
function M.toggle() function M.query_select()
-- TODO: wrap some function M.query('v')
end end
function M.close_win() function M.close_win()

View File

@ -3,6 +3,7 @@ local db = require("Trans").db
vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans.display").query_cursor, {}) vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans.display").query_cursor, {})
vim.api.nvim_create_user_command('TranslateSelectWord', require("Trans.display").query_select, {})
local group = vim.api.nvim_create_augroup("Trans", { clear = true }) local group = vim.api.nvim_create_augroup("Trans", { clear = true })
@ -27,4 +28,7 @@ if auto_close then
}) })
end end
vim.keymap.set('n', 'mm', '<cmd>TranslateCurosorWord<cr>')
vim.keymap.set('v', 'mm', '<Esc><cmd>TranslateSelectWord<cr>')
require("Trans.highlight").set_hl() require("Trans.highlight").set_hl()