docs: add IvyWorkspaceSymbols to the readme
This commit is contained in:
parent
51a72513f4
commit
04d04fc96a
2 changed files with 10 additions and 9 deletions
|
|
@ -51,11 +51,12 @@ error: linker `cc` not found
|
||||||
A command can be run that will launch the completion UI
|
A command can be run that will launch the completion UI
|
||||||
|
|
||||||
| Command | Key Map | Description |
|
| Command | Key Map | Description |
|
||||||
| ---------- | ----------- | ------------------------------------------------------ |
|
| ------------------ | ----------- | ----------------------------------------------------------- |
|
||||||
| IvyFd | \<leader\>p | Find files in your project with the fd cli file finder |
|
| IvyFd | \<leader\>p | Find files in your project with the fd cli file finder |
|
||||||
| IvyAg | \<leader\>/ | Find content in files using the silver searcher |
|
| IvyAg | \<leader\>/ | Find content in files using the silver searcher |
|
||||||
| IvyBuffers | \<leader\>b | Search though open buffers |
|
| IvyBuffers | \<leader\>b | Search though open buffers |
|
||||||
| IvyLines | | Search the lines in the current buffer |
|
| IvyLines | | Search the lines in the current buffer |
|
||||||
|
| IvyWorkspaceSymbol | | Search for workspace symbols using the lsp workspace/symbol |
|
||||||
|
|
||||||
### Actions
|
### Actions
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,9 +30,9 @@ local function items(input)
|
||||||
end
|
end
|
||||||
|
|
||||||
local lsp_workspace_symbols = {
|
local lsp_workspace_symbols = {
|
||||||
name = "WorkspaceSymbol",
|
name = "WorkspaceSymbols",
|
||||||
command = "IvyWorkspaceSymbol",
|
command = "IvyWorkspaceSymbols",
|
||||||
description = "Search for workspace ymbol using the lsp workspace/symbol",
|
description = "Search for workspace symbols using the lsp workspace/symbol",
|
||||||
items = items,
|
items = items,
|
||||||
callback = utils.vimgrep_action(),
|
callback = utils.vimgrep_action(),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue