]> git.huck.website - nvim.git/commitdiff
added: telescope insert mode keybindings
authorHuck Boles <huck@huck.website>
Fri, 30 Jun 2023 16:27:27 +0000 (11:27 -0500)
committerHuck Boles <huck@huck.website>
Fri, 30 Jun 2023 16:27:27 +0000 (11:27 -0500)
lua/plugins/telescope.lua

index c3d66076f7e8d2e177d07e64b7ac1c0f59413c38..0e9c0025d75751db2849fd86cb00aaf207d0f0b0 100644 (file)
@@ -51,6 +51,11 @@ return {
                             ['<C-d>'] = actions.delete_buffer + actions.move_to_top,
                             ['<C-j>'] = actions.move_selection_next,
                             ['<C-k>'] = actions.move_selection_previous,
+                            ['<C-n>'] = actions.preview_scrolling_down,
+                            ['<C-p>'] = actions.preview_scrolling_up,
+                            ['<C-h>'] = actions.select_vertical,
+                            ['<C-v>'] = actions.select_horizontal,
+                            ['<C-q>'] = actions.smart_add_to_qflist,
                         },
                     },
                 },