fix: 修复了反向选择,位置识别错误的问题
This commit is contained in:
parent
549e10f029
commit
0a2d05af70
@ -1,3 +1,4 @@
|
|||||||
|
---@diagnostic disable: unused-local
|
||||||
local M = {}
|
local M = {}
|
||||||
local icon = require('Trans').conf.icon
|
local icon = require('Trans').conf.icon
|
||||||
|
|
||||||
|
@ -8,6 +8,10 @@ local handler = require('Trans.core.handler')
|
|||||||
local function get_select()
|
local function get_select()
|
||||||
local s_start = vim.fn.getpos("v")
|
local s_start = vim.fn.getpos("v")
|
||||||
local s_end = vim.fn.getpos(".")
|
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
|
||||||
|
|
||||||
local n_lines = math.abs(s_end[2] - s_start[2]) + 1
|
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)
|
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)
|
lines[1] = string.sub(lines[1], s_start[3], -1)
|
||||||
@ -35,6 +39,7 @@ local function get_word(method)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
M.translate = function(method, view)
|
M.translate = function(method, view)
|
||||||
method = method or vim.api.nvim_get_mode().mode
|
method = method or vim.api.nvim_get_mode().mode
|
||||||
view = view or conf.view[method]
|
view = view or conf.view[method]
|
||||||
|
@ -102,6 +102,11 @@ M.load_float_opts = function()
|
|||||||
end
|
end
|
||||||
end, { buffer = M.bufnr, silent = true })
|
end, { buffer = M.bufnr, silent = true })
|
||||||
|
|
||||||
|
vim.keymap.set('n', '<Esc>', function()
|
||||||
|
if api.nvim_win_is_valid(M.id) then
|
||||||
|
api.nvim_win_close(M.id, true)
|
||||||
|
end
|
||||||
|
end, { buffer = M.bufnr, silent = true })
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ M.conf = {
|
|||||||
-- },
|
-- },
|
||||||
},
|
},
|
||||||
icon = {
|
icon = {
|
||||||
title = ' ',
|
title = ' ', --
|
||||||
star = '',
|
star = '',
|
||||||
-- notfound = '',
|
-- notfound = '',
|
||||||
-- yes = '',
|
-- yes = '',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user