From be1fbe38b31b6046d396407c4efbf238941c6b08 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 21 Feb 2025 02:02:32 +0100 Subject: feat(lua): vim.text.indent() Problem: Indenting text is a common task in plugins/scripts for presentation/formatting, yet vim has no way of doing it (especially "dedent", and especially non-buffer text). Solution: Introduce `vim.text.indent()`. It sets the *exact* indentation because that's a more difficult (and thus more useful) task than merely "increasing the current indent" (which is somewhat easy with a `gsub()` one-liner). --- test/functional/legacy/039_visual_block_mode_commands_spec.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'test/functional/legacy/039_visual_block_mode_commands_spec.lua') diff --git a/test/functional/legacy/039_visual_block_mode_commands_spec.lua b/test/functional/legacy/039_visual_block_mode_commands_spec.lua index 9fbf5ae774..98bcfd8261 100644 --- a/test/functional/legacy/039_visual_block_mode_commands_spec.lua +++ b/test/functional/legacy/039_visual_block_mode_commands_spec.lua @@ -112,7 +112,8 @@ describe('Visual block mode', function() line1 line2 line3 - ]]) + . + ]]) -- Test for Visual block insert when virtualedit=all and utf-8 encoding. feed_command('set ve=all') @@ -123,7 +124,8 @@ describe('Visual block mode', function() x line1 x line2 x line3 - ]]) + . + ]]) -- Test for Visual block append when virtualedit=all. feed('012ljjAx') @@ -132,7 +134,8 @@ describe('Visual block mode', function() x x line1 x x line2 x x line3 - ]]) + . + ]]) end) it('should make a selected part uppercase', function() -- cgit