mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -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>";
|
action = "<cmd>lua require'telescope.builtin'.lsp_document_symbols{}<CR>";
|
||||||
key = "<leader>fs";
|
key = "<leader>a";
|
||||||
options = {
|
options = {
|
||||||
silent = true;
|
silent = true;
|
||||||
noremap = true;
|
noremap = true;
|
||||||
desc = "List and search through document symbols";
|
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>";
|
action = "<cmd>lua require'telescope.builtin'.lsp_type_definitions{}<CR>";
|
||||||
key = "<leader>fct";
|
key = "<leader>fct";
|
||||||
|
|
Loading…
Reference in a new issue