From fc50c055c3db561043e23b53afc270de2231fbb2 Mon Sep 17 00:00:00 2001 From: qizidog <451559450@qq.com> Date: Fri, 21 Jul 2023 05:40:23 +0800 Subject: [PATCH] feat: add a keybind to search register (#1170) use `"` to search register through telescope --- lua/lazyvim/plugins/editor.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index eeaa4649..1fad510c 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -103,6 +103,7 @@ return { { "gc", "Telescope git_commits", desc = "commits" }, { "gs", "Telescope git_status", desc = "status" }, -- search + { 's"', "Telescope registers", desc = "Registers" }, { "sa", "Telescope autocommands", desc = "Auto Commands" }, { "sb", "Telescope current_buffer_fuzzy_find", desc = "Buffer" }, { "sc", "Telescope command_history", desc = "Command History" },