diff options
author | Elazar Leibovich <[email protected]> | 2022-03-24 16:41:38 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-24 19:11:38 +0430 |
commit | c11fa143c8bcd2670d02ce38b2675b408646ce28 (patch) | |
tree | 4f20f1e706cbbc193f54d66689855559bd378ce2 | |
parent | 3c152cb1cf768e3111543d3070e6efd6cfacbb1c (diff) |
chore: [Feature]: Keyboard shortcut for quickfix in Telescope (#2385)
Lunarvim has keyboard shortcuts for various LSP searches, that feeds results to quickfix list.
It is useful then to have a quick way to inspect LSP results in quickfix via Telescope.
-rw-r--r-- | lua/lvim/core/which-key.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index 511786f0..52b7a9ab 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -168,6 +168,7 @@ M.config = function() "<cmd>Telescope lsp_dynamic_workspace_symbols<cr>", "Workspace Symbols", }, + e = { "<cmd>Telescope quickfix<cr>", "Telescope Quickfix" }, }, L = { name = "+LunarVim", |