mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 09:48:59 +02:00
feat(telescope): add <leader>sS
for :Telescope lsp_workspace_symbols
(#309)
This commit is contained in:
parent
90c58352dd
commit
cccdc1cacf
1 changed files with 18 additions and 0 deletions
|
@ -112,6 +112,24 @@ return {
|
||||||
}),
|
}),
|
||||||
desc = "Goto Symbol",
|
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 = {
|
opts = {
|
||||||
defaults = {
|
defaults = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue