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