Skip to content

Commit

Permalink
feat(telescope): add <leader>sS for `:Telescope lsp_workspace_symbo…
Browse files Browse the repository at this point in the history
…ls` (#309)
  • Loading branch information
NyCodeGHG authored Feb 20, 2023
1 parent 90c5835 commit cccdc1c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lua/lazyvim/plugins/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,24 @@ return {
}),
desc = "Goto Symbol",
},
{
"<leader>sS",
Util.telescope("lsp_workspace_symbols", {
symbols = {
"Class",
"Function",
"Method",
"Constructor",
"Interface",
"Module",
"Struct",
"Trait",
"Field",
"Property",
},
}),
desc = "Goto Symbol (Workspace)",
},
},
opts = {
defaults = {
Expand Down

0 comments on commit cccdc1c

Please sign in to comment.