From 329ba5a83b9606b2e03ac09e84efd46d4996c7d8 Mon Sep 17 00:00:00 2001 From: kalmenn Date: Thu, 29 Feb 2024 15:17:15 +0100 Subject: [PATCH] feat(neo-tree): Add keybinding to focus diagnostics in neo-tree --- lua/plugins/neo-tree.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lua/plugins/neo-tree.lua b/lua/plugins/neo-tree.lua index 56f544d..b401939 100644 --- a/lua/plugins/neo-tree.lua +++ b/lua/plugins/neo-tree.lua @@ -50,10 +50,11 @@ return { }, }, keys = { - { "t", "Neotree toggle", "Toggle Neotree" }, - { "f", "Neotree filesystem focus", "Focus filesystem in Neotree" }, - { "b", "Neotree buffers focus", "Focus buffers in Neotree" }, - { "g", "Neotree git_status focus", "Focus git status in Neotree" }, + { "c", "Neotree close", "Close Neotree" }, + { "t", "Neotree toggle", "Toggle Neotree" }, + { "f", "Neotree filesystem focus", "Focus filesystem in Neotree" }, + { "b", "Neotree buffers focus", "Focus buffers in Neotree" }, + { "g", "Neotree git_status focus", "Focus git status in Neotree" }, { "d", "Neotree diagnostics focus", "Focus diagnostics in Neotree" }, }, }