From 44d966b3d5463310974de13644c666b093c70938 Mon Sep 17 00:00:00 2001 From: pr0c3550r Date: Sun, 5 Mar 2023 20:18:08 +0100 Subject: [PATCH] Telescope: added Shortcut (fb) to find in current buffer --- nvim/.config/nvim/lua/plugin/telescope.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/.config/nvim/lua/plugin/telescope.lua b/nvim/.config/nvim/lua/plugin/telescope.lua index bbf46e4..da8bcce 100644 --- a/nvim/.config/nvim/lua/plugin/telescope.lua +++ b/nvim/.config/nvim/lua/plugin/telescope.lua @@ -9,6 +9,7 @@ return { { ",", "Telescope buffers show_all_buffers=true", desc = "Switch Buffer" }, -- find { "ff", "Telescope find_files", desc = "Find Files" }, + { "fb", "Telescope current_buffer_fuzzy_find", desc = "Find Stings in current Buffer" }, { "fg", "Telescope live_grep", desc = "Grep Content in Files" }, { "/", "Telescope live_grep", desc = "Grep Content in Files" }, { "fG", "Telescope git_files", desc = "Find Git Files" },