Merge pull request #38 from Xiao-M0/v2

feat: get visual-block text
This commit is contained in:
Zoran 2023-05-16 16:07:03 +08:00 committed by GitHub
commit 50c2f003f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,20 +3,23 @@ local fn, api = vim.fn, vim.api
---@class TransUtil ---@class TransUtil
local M = require 'Trans'.metatable 'util' local M = require 'Trans'.metatable 'util'
---Get the range of visual modes
---@return table
function M.get_range()
local _start = fn.getpos 'v'
local _end = fn.getpos '.'
local s_row, e_row = math.min(_start[2], _end[2]), math.max(_start[2], _end[2])
local s_col, e_col = math.min(_start[3], _end[3]), math.max(_start[3], _end[3])
return { s_row, e_row, s_col, e_col }
end
---Get selected text ---Get selected text
---@return string ---@return string
function M.get_select() function M.get_select()
local _start = fn.getpos 'v' local s_row, e_row, s_col, e_col = unpack(M.get_range())
local _end = fn.getpos '.'
if _start[2] > _end[2] or (_start[3] > _end[3] and _start[2] == _end[2]) then
_start, _end = _end, _start
end
local s_row, s_col = _start[2], _start[3]
local e_row, e_col = _end[2], _end[3]
-- print(s_row, e_row, s_col, e_col)
---@type string ---@type string
---@diagnostic disable-next-line: assign-type-mismatch ---@diagnostic disable-next-line: assign-type-mismatch
local line = fn.getline(e_row) local line = fn.getline(e_row)
@ -24,7 +27,6 @@ function M.get_select()
---@diagnostic disable-next-line: param-type-mismatch ---@diagnostic disable-next-line: param-type-mismatch
e_col = vim.str_byteindex(line, uidx) e_col = vim.str_byteindex(line, uidx)
if s_row == e_row then if s_row == e_row then
return line:sub(s_col, e_col) return line:sub(s_col, e_col)
else else
@ -39,19 +41,35 @@ end
---Get selected text ---Get selected text
---@return string ---@return string
function M.get_lines() function M.get_lines()
local _start = vim.fn.getpos 'v' local s_row, e_row = unpack(M.get_range())
local _end = vim.fn.getpos '.'
if _start[2] > _end[2] then
_start, _end = _end, _start
end
local s_row, e_row = _start[2], _end[2]
if s_row == e_row then if s_row == e_row then
return vim.fn.getline(s_row) return fn.getline(s_row)
else else
local lines = vim.fn.getline(s_row, e_row) local lines = fn.getline(s_row, e_row)
return table.concat(lines, " ")
end
end
---Get selected text
---@return string
function M.get_block()
local s_row, e_row, s_col, e_col = unpack(M.get_range())
---@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))
---@diagnostic disable-next-line: param-type-mismatch
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)
for col, l in pairs(lines) do
lines[col] = l:sub(s_col,e_col)
end
return table.concat(lines, " ") return table.concat(lines, " ")
end end
end end
@ -75,6 +93,10 @@ function M.get_str(mode)
api.nvim_input '<Esc>' api.nvim_input '<Esc>'
return M.get_lines() return M.get_lines()
end, end,
[''] = function()
api.nvim_input '<Esc>'
return M.get_block()
end,
})[mode]():match '^%s*(.-)%s*$' })[mode]():match '^%s*(.-)%s*$'
end end