From dbb6fa04d0e093431d1cdb4e98fd50442d285d9f Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 8 Apr 2025 17:32:01 +0000 Subject: Add a bunch of mappings to different telescope operations. Uses t as the prefix for these commands, replacing the "show trouble" --- init.vim | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/init.vim b/init.vim index 0b3e6ad..7b4f72b 100644 --- a/init.vim +++ b/init.vim @@ -118,7 +118,47 @@ inoremap (vsnip-expand) " to the leftmost position. noremap ^ ^zH -noremap t TroubleToggle +noremap to Telescope oldfiles +noremap ta Telescope autocommands +noremap tbu Telescope buffers +noremap T Telescope builtin +noremap tcs Telescope colorscheme +noremap tch Telescope command_history +noremap tco Telescope commands +noremap t/ Telescope current_buffer_fuzzy_find +noremap tcbt Telescope current_buffer_tags +noremap td Telescope diagnostics +noremap tf Telescope find_files +noremap tgb Telescope git_branches +noremap tgc Telescope git_commits +noremap tgf Telescope git_files +noremap tgs Telescope git_stash +noremap tgr Telescope grep_string +noremap thi Telescope highlights +noremap tjl Telescope jumplist +noremap tlg Telescope live_grep +noremap tll Telescope loclist +noremap t[d Telescope lsp_definitions +noremap t[s Telescope lsp_document_symbols +noremap t[w Telescope lsp_dynamic_workspace_symbols +noremap t[i Telescope lsp_implementations +noremap t[r Telescope lsp_incoming_calls +noremap t[n Telescope lsp_outgoing_calls +noremap t[e Telescope lsp_references +noremap t[t Telescope lsp_type_definitions +noremap t? Telescope man_pages +noremap t' Telescope marks +noremap tp Telescope pickers +noremap tqf Telescope quickfix +noremap tqh Telescope quickfixhistory +noremap t" Telescope registers +noremap th/ Telescope search_history +noremap tz Telescope spell_suggest +noremap ty Telescope symbols +noremap tt Telescope tags +noremap tst Telescope tagstack +noremap tsit Telescope treesitter +noremap tv Telescope vim_options augroup InitVim au! -- cgit