mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 10:53:51 -08:00
feat(keys): avoid conflict between document symbol keybinds for
telescope
This commit is contained in:
parent
8e3bb627ba
commit
570fddee2d
1 changed files with 11 additions and 2 deletions
|
@ -200,14 +200,23 @@
|
|||
};
|
||||
}
|
||||
{
|
||||
action = "<cmd>lua require'telescope.builtin'.lsp_workplace_symbols{}<CR>";
|
||||
key = "<leader>fs";
|
||||
action = "<cmd>lua require'telescope.builtin'.lsp_document_symbols{}<CR>";
|
||||
key = "<leader>a";
|
||||
options = {
|
||||
silent = true;
|
||||
noremap = true;
|
||||
desc = "List and search through document symbols";
|
||||
};
|
||||
}
|
||||
{
|
||||
action = "<cmd>lua require'telescope.builtin'.lsp_workspace_symbols{}<CR>";
|
||||
key = "<leader>fcs";
|
||||
options = {
|
||||
silent = true;
|
||||
noremap = true;
|
||||
desc = "List and search through workplace symbols";
|
||||
};
|
||||
}
|
||||
{
|
||||
action = "<cmd>lua require'telescope.builtin'.lsp_type_definitions{}<CR>";
|
||||
key = "<leader>fct";
|
||||
|
|
Loading…
Reference in a new issue