From 89cbebe6d484e05238a40f7f785e6c94450d103b Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 7 Aug 2023 21:54:49 +0200 Subject: [PATCH] vim/telescope: bring back f, good bye --- config/nvim/lua/fschauen/plugins/telescope.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/nvim/lua/fschauen/plugins/telescope.lua b/config/nvim/lua/fschauen/plugins/telescope.lua index cb87807..567a90b 100644 --- a/config/nvim/lua/fschauen/plugins/telescope.lua +++ b/config/nvim/lua/fschauen/plugins/telescope.lua @@ -114,7 +114,7 @@ local config = function() end end - map('', { + map('f', { -- ╭────╮ ╭──────╮ ╭────────────╮ ╭───────────────────╮ -- │keys│ │picker│ │prompt title│ │mapping description│ -- ╰────╯ ╰──────╯ ╰────────────╯ ╰───────────────────╯ @@ -157,7 +157,7 @@ local config = function() { ':', ts.command_history , ' Command history' , '[:]command history' }, { '?', ts.commands , ' Commands' , 'commands [?]' }, { '/', ts.search_history , ' Search history' , '[/]search history' }, - {'', ts.resume , '󰐎 Resume' , 'Resume' }, + {'', ts.resume , '󰐎 Resume' , 'Resume' }, }, v = { { 's', my.selection , '' --[[dynamic]] , 'visual [s]election' }, @@ -166,7 +166,7 @@ local config = function() telescope.load_extension 'fzf' telescope.load_extension 'file_browser' - vim.keymap.set('n', 'br', 'Telescope file_browser', { desc = ' file [BR]owser' }) + vim.keymap.set('n', 'fB', 'Telescope file_browser', { desc = ' [f]ile [B]rowser' }) end return {