From 36819227a1399a67d2faa7304e3f749f27703e06 Mon Sep 17 00:00:00 2001 From: Lorenzo Bettini Date: Sat, 28 Sep 2024 15:09:11 +0200 Subject: [PATCH] in-and-out quickly navigate in and out of surrounding characters like quotes and parenthesis with Ctrl+ENTER --- lua/plugins/in-and-out.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/plugins/in-and-out.lua diff --git a/lua/plugins/in-and-out.lua b/lua/plugins/in-and-out.lua new file mode 100644 index 0000000..d42814d --- /dev/null +++ b/lua/plugins/in-and-out.lua @@ -0,0 +1,12 @@ +return { + "ysmb-wtsg/in-and-out.nvim", + keys = { + { + "", + function() + require("in-and-out").in_and_out() + end, + mode = "i", + }, + }, +}