Skip to content

Commit

Permalink
[Chore] fix code style by stylua (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistricky authored Feb 23, 2024
1 parent dab5602 commit d60a491
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/codesnap/utils/visual.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ function visual_utils.get_selected_text()
if start_pos[2] > end_pos[2] or start_pos[3] > end_pos[3] then
start_pos, end_pos = end_pos, start_pos
end

if start_pos[2] == end_pos[2] then
return vim.api.nvim_buf_get_lines(0, start_pos[2] - 1, start_pos[2], false)[1]:sub(start_pos[3], end_pos[3] - 1)
else
-- 如果选中的是多行文本,则需要分别获取每一行的文本
local selected_text = {}
local selected_text = {}
for i = start_pos[2], end_pos[2] do
-- 使用 vim.api.nvim_buf_get_lines() 函数获取选中的文本
local line_text = vim.api.nvim_buf_get_lines(0, i - 1, i, false)[1]
Expand Down

0 comments on commit d60a491

Please sign in to comment.