]> git.huck.website - nvim.git/commitdiff
added: more telescope bindings
authorHuck Boles <huck@huck.website>
Fri, 30 Jun 2023 03:15:32 +0000 (22:15 -0500)
committerHuck Boles <huck@huck.website>
Fri, 30 Jun 2023 03:15:32 +0000 (22:15 -0500)
lua/plugins/telescope.lua

index 855fa5cd0f8d77962bcd43c966270348783c6d49..0cd48e4dfeaeeb6bf81589b9c65836768ed350fb 100644 (file)
@@ -11,25 +11,25 @@ return {
             },
         },
         keys = {
+            { '<C-_>',       '<CMD>Telescope current_buffer_fuzzy_find sorting_strategy=ascending<CR>' },
+            { '<C-r>',       '<CMD>Telescope command_history<CR>' },
             { '<leader>b',   '<CMD>Telescope buffers<CR>' },
+            { '<leader>l',   '<CMD>Telescope diagnostics<CR>' },
+            { '<leader>R',   '<CMD>Telescope lsp_references<CR>' },
             { '<leader>tt',  '<CMD>Telescope resume<CR>' },
             { '<leader>tc',  '<CMD>Telescope commands<CR>' },
-            { '<leader>t!',  '<CMD>Telescope command_history<CR>' },
             { '<leader>th',  '<CMD>Telescope help_tags<CR>' },
             { '<leader>tm',  '<CMD>Telescope marks<CR>' },
             { '<leader>tq',  '<CMD>Telescope quickfix<CR>' },
             { '<leader>ts',  '<CMD>Telescope search_history<CR>' },
             { '<leader>tr',  '<CMD>Telescope registers<CR>' },
             { '<leader>tk',  '<CMD>Telescope keymaps<CR>' },
-            { '<leader>tb',  '<CMD>Telescope current_buffer_fuzzy_find<CR>' },
             { '<leader>to',  '<CMD>Telescope vim_options<CR>' },
             { '<leader>tgc', '<CMD>Telescope git_commits<CR>' },
             { '<leader>tgd', '<CMD>Telescope git_bcommits<CR>' },
             { '<leader>tgb', '<CMD>Telescope git_branches<CR>' },
             { '<leader>tgs', '<CMD>Telescope git_status<CR>' },
             { '<leader>tft', '<CMD>Telescope filetypes<CR>' },
-            { '<leader>l',   '<CMD>Telescope diagnostics<CR>' },
-            { '<leader>R',   '<CMD>Telescope lsp_references<CR>' },
             { '<leader>tld', '<CMD>Telescope lsp_type_definitions<CR>' },
             { '<leader>tlt', '<CMD>Telescope lsp_definitions<CR>' },
             { '<leader>tli', '<CMD>Telescope lsp_implementations<CR>' },