From b4af4cf7b0627047819942a6960b79eb20977854 Mon Sep 17 00:00:00 2001 From: Triston Date: Sat, 29 Jun 2024 21:17:15 -0400 Subject: [PATCH] add new commands to f command --- lua/plugins/whichkey.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lua/plugins/whichkey.lua b/lua/plugins/whichkey.lua index c03e0bc..ff7bd77 100644 --- a/lua/plugins/whichkey.lua +++ b/lua/plugins/whichkey.lua @@ -10,8 +10,13 @@ return { -- f key register wk.register({ f = { - name = "Buffers", - f = { "Telescope buffers", "Find Buffer" } + name = "Files", + b = { "Telescope buffers", "Find Buffer" }, + f = { "Telescope find_files", "Find File" }, + r = { "Telescope oldfiles", "Open Recent File" }, + s = { "Telescope live_grep", "Search Word" }, + t = { "Telescope tags", "Find Tag" }, + w = { "Telescope grep_string", "Find Word" }, } }, { prefix = "" })