fix: fix vistual selection region mistakes
This commit is contained in:
parent
225fa4f19e
commit
6737090710
@ -1,13 +1,15 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
local api = vim.api
|
||||||
|
local fn = vim.fn
|
||||||
|
|
||||||
local title = vim.fn.has('nvim-0.9') == 1 and {
|
local title = fn.has('nvim-0.9') == 1 and {
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
} or nil
|
} or nil
|
||||||
|
|
||||||
|
|
||||||
string.width = vim.fn.strwidth
|
string.width = api.nvim_strwidth
|
||||||
string.isEn = function(self)
|
string.isEn = function(self)
|
||||||
local char = { self:byte(1, -1) }
|
local char = { self:byte(1, -1) }
|
||||||
for i = 1, #self do
|
for i = 1, #self do
|
||||||
@ -19,13 +21,13 @@ string.isEn = function(self)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
string.play = vim.fn.has('linux') == 1 and function(self)
|
string.play = fn.has('linux') == 1 and function(self)
|
||||||
local cmd = ([[echo "%s" | festival --tts]]):format(self)
|
local cmd = ([[echo "%s" | festival --tts]]):format(self)
|
||||||
vim.fn.jobstart(cmd)
|
fn.jobstart(cmd)
|
||||||
end or function(self)
|
end or function(self)
|
||||||
local seperator = vim.fn.has('unix') and '/' or '\\'
|
local seperator = fn.has('unix') and '/' or '\\'
|
||||||
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
|
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
|
||||||
vim.fn.jobstart('node ' .. file .. ' ' .. self)
|
fn.jobstart('node ' .. file .. ' ' .. self)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -154,13 +156,12 @@ M.setup = function(opts)
|
|||||||
|
|
||||||
times = times + 1
|
times = times + 1
|
||||||
if times == 1 then
|
if times == 1 then
|
||||||
local api = vim.api
|
|
||||||
|
|
||||||
local get_mode = api.nvim_get_mode
|
local get_mode = api.nvim_get_mode
|
||||||
local set_hl = api.nvim_set_hl
|
local set_hl = api.nvim_set_hl
|
||||||
local new_command = api.nvim_create_user_command
|
local new_command = api.nvim_create_user_command
|
||||||
|
|
||||||
if vim.fn.executable('sqlite3') ~= 1 then
|
if fn.executable('sqlite3') ~= 1 then
|
||||||
error('Please check out sqlite3')
|
error('Please check out sqlite3')
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -187,30 +188,44 @@ M.setup = function(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function get_select()
|
local function get_select()
|
||||||
local s_start = vim.fn.getpos("v")
|
local _start = fn.getpos("v")
|
||||||
local s_end = vim.fn.getpos(".")
|
local _end = 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
|
if _start[2] > _end[2] or (_start[3] > _end[3] and _start[2] == _end[2]) then
|
||||||
local lines = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)
|
_start, _end = _end, _start
|
||||||
lines[1] = string.sub(lines[1], s_start[3], -1)
|
end
|
||||||
if n_lines == 1 then
|
local s_row = _start[2]
|
||||||
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3] - s_start[3] + 1)
|
local e_row = _end[2]
|
||||||
else
|
local s_col = _start[3]
|
||||||
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3])
|
local e_col = _end[3]
|
||||||
|
|
||||||
|
-- print(s_row, e_row, s_col, e_col)
|
||||||
|
---@type string
|
||||||
|
---@diagnostic disable-next-line: assign-type-mismatch
|
||||||
|
local line = fn.getline(e_row)
|
||||||
|
local uidx = vim.str_utfindex(line, math.min(#line, e_col))
|
||||||
|
e_col = vim.str_byteindex(line, uidx)
|
||||||
|
|
||||||
|
if s_row == e_row then
|
||||||
|
return line:sub(s_col, e_col)
|
||||||
|
else
|
||||||
|
local lines = fn.getline(s_row, e_row)
|
||||||
|
local i = #lines
|
||||||
|
lines[1] = lines[1]:sub(s_col)
|
||||||
|
lines[i] = line:sub(1, e_col)
|
||||||
|
return table.concat(lines)
|
||||||
end
|
end
|
||||||
return table.concat(lines, '')
|
|
||||||
end
|
end
|
||||||
|
|
||||||
M.get_word = function(mode)
|
M.get_word = function(mode)
|
||||||
local word
|
local word
|
||||||
if mode == 'n' then
|
if mode == 'n' then
|
||||||
word = vim.fn.expand('<cword>')
|
word = fn.expand('<cword>')
|
||||||
|
|
||||||
elseif mode == 'v' then
|
elseif mode == 'v' then
|
||||||
vim.api.nvim_input('<ESC>')
|
api.nvim_input('<ESC>')
|
||||||
word = get_select()
|
word = get_select()
|
||||||
|
|
||||||
elseif mode == 'i' then
|
elseif mode == 'i' then
|
||||||
-- TODO Use Telescope with fuzzy finder
|
-- TODO Use Telescope with fuzzy finder
|
||||||
vim.ui.input({ prompt = '请输入需要查询的单词: ' }, function(input)
|
vim.ui.input({ prompt = '请输入需要查询的单词: ' }, function(input)
|
||||||
@ -229,7 +244,7 @@ M.translate = function(mode, view)
|
|||||||
view = { view, 's', true }
|
view = { view, 's', true }
|
||||||
}
|
}
|
||||||
|
|
||||||
mode = mode or vim.api.nvim_get_mode().mode
|
mode = mode or api.nvim_get_mode().mode
|
||||||
view = view or M.conf.view[mode]
|
view = view or M.conf.view[mode]
|
||||||
assert(mode and view)
|
assert(mode and view)
|
||||||
local word = M.get_word(mode)
|
local word = M.get_word(mode)
|
||||||
@ -240,7 +255,4 @@ M.translate = function(mode, view)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
M.augroup = vim.api.nvim_create_augroup('Trans', { clear = true })
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -8,7 +8,7 @@ local path = require('Trans').conf.db_path
|
|||||||
local dict = db:open(path)
|
local dict = db:open(path)
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd('VimLeavePre', {
|
vim.api.nvim_create_autocmd('VimLeavePre', {
|
||||||
group = require("Trans").augroup,
|
once = true,
|
||||||
callback = function()
|
callback = function()
|
||||||
if db:isopen() then
|
if db:isopen() then
|
||||||
db:close()
|
db:close()
|
||||||
|
@ -237,7 +237,6 @@ return function(entry, option)
|
|||||||
---@diagnostic disable-next-line: param-type-mismatch
|
---@diagnostic disable-next-line: param-type-mismatch
|
||||||
setmetatable(win, window)
|
setmetatable(win, window)
|
||||||
|
|
||||||
|
|
||||||
win:bufset('filetype', 'Trans')
|
win:bufset('filetype', 'Trans')
|
||||||
win:bufset('buftype', 'nofile')
|
win:bufset('buftype', 'nofile')
|
||||||
api.nvim_win_set_hl_ns(win.winid, win.hl)
|
api.nvim_win_set_hl_ns(win.winid, win.hl)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user