aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/50-transform_text.lua
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-12 17:02:54 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-12 22:57:34 +0200
commit527c8940bf710aac2e52e2041f148cab71b4a132 (patch)
tree80c7d1d6d3c6ee35ee3bc0adb50099316934f485 /plugin/50-transform_text.lua
parent0474f63214d561459a81dd1637433819cc7c799b (diff)
downloadnvim-config-527c8940bf710aac2e52e2041f148cab71b4a132.tar.gz
nvim-config-527c8940bf710aac2e52e2041f148cab71b4a132.zip
misc(nvim): reformat lua files to 100 char line width
Diffstat (limited to 'plugin/50-transform_text.lua')
-rw-r--r--plugin/50-transform_text.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugin/50-transform_text.lua b/plugin/50-transform_text.lua
index 9ec74d5..6786ba2 100644
--- a/plugin/50-transform_text.lua
+++ b/plugin/50-transform_text.lua
@@ -1,5 +1,8 @@
local function get_visual_selection_text()
- return table.concat(vim.fn.getregion(vim.fn.getpos("v"), vim.fn.getpos("."), { type = vim.fn.mode() }), "\n")
+ return table.concat(
+ vim.fn.getregion(vim.fn.getpos("v"), vim.fn.getpos("."), { type = vim.fn.mode() }),
+ "\n"
+ )
end
local function delete_visual_selection()
@@ -7,7 +10,8 @@ local function delete_visual_selection()
local eovisual_pos, cur_pos = vim.fn.getpos("v"), vim.fn.getpos(".")
local region = vim.fn.getregionpos(eovisual_pos, cur_pos, { type = mode })[1]
local start_row, start_col = unpack(region[1], 2, 3)
- local end_row, end_col = mode == "v" and region[2][2] or math.max(eovisual_pos[2], cur_pos[2]), region[2][3]
+ local end_row, end_col =
+ mode == "v" and region[2][2] or math.max(eovisual_pos[2], cur_pos[2]), region[2][3]
vim.api.nvim_buf_set_text(0, start_row - 1, start_col - 1, end_row - 1, end_col, {})
end