From a82b63dc854b5d54eaa6522724b6f272fb4754ef Mon Sep 17 00:00:00 2001 From: Daniel Santos Dantas Date: Mon, 18 Dec 2023 09:52:44 -0300 Subject: [PATCH] chore: fix `dsi` example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1061d75..0ed5e8b 100644 --- a/README.md +++ b/README.md @@ -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 }