From a929b53d64c0ea54207c672b19627bd6195e3f5a Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 7 Aug 2023 21:55:23 +0200 Subject: [PATCH] vim/telescope: better mapping to send to loclist --- config/nvim/lua/fschauen/plugins/telescope.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/nvim/lua/fschauen/plugins/telescope.lua b/config/nvim/lua/fschauen/plugins/telescope.lua index 567a90b..7eaed89 100644 --- a/config/nvim/lua/fschauen/plugins/telescope.lua +++ b/config/nvim/lua/fschauen/plugins/telescope.lua @@ -4,10 +4,10 @@ local config = function() local actions_layout = require 'telescope.actions.layout' local mappings = { - [''] = actions_layout.cycle_layout_next, + [''] = actions_layout.cycle_layout_next, [''] = actions_layout.toggle_mirror, [''] = actions.smart_send_to_qflist + actions.open_qflist, - [''] = actions.smart_send_to_loclist + actions.open_loclist, + [''] = actions.smart_send_to_loclist + actions.open_loclist, [''] = actions.close, [''] = actions.preview_scrolling_down,