Skip to content

Commit

Permalink
chore: fix dsi example
Browse files Browse the repository at this point in the history
  • Loading branch information
dansdantas committed Dec 18, 2023
1 parent 8a58ad5 commit a82b63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ vim.keymap.set("n", "dsi", function()

-- plugin only switches to visual mode when a textobj has been found
local indentationFound = vim.fn.mode():find("V")
if indentationFound then return end
if not indentationFound then return end

-- dedent indentation
vim.cmd.normal { "<", bang = true }
Expand Down

0 comments on commit a82b63d

Please sign in to comment.