From 0731f08ee43138b61eaf02ac00110babf61be99d Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 6 Jun 2023 12:20:53 +0200 Subject: [PATCH] feat(edgy): added `ue` to quickly jump to an edgy window --- lua/lazyvim/plugins/extras/ui/edgy.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/ui/edgy.lua b/lua/lazyvim/plugins/extras/ui/edgy.lua index 9b31a03e..2b42a90d 100644 --- a/lua/lazyvim/plugins/extras/ui/edgy.lua +++ b/lua/lazyvim/plugins/extras/ui/edgy.lua @@ -3,6 +3,10 @@ return { { "folke/edgy.nvim", event = "VeryLazy", + keys = { + -- stylua: ignore + { "ue", function() require("edgy").select() end, desc = "Edgy Select Window" }, + }, opts = { bottom = { { ft = "toggleterm", size = { height = 0.4 } }, @@ -19,7 +23,7 @@ return { { ft = "help", size = { height = 20 }, - -- only show help buffers + -- don't open help files in edgy that we're editing filter = function(buf) return vim.bo[buf].buftype == "help" end,