forked from Shinonome/fred-neovim
Added commodity LSPs and telescope DAP commands
This commit is contained in:
@@ -44,6 +44,11 @@
|
||||
group = "Code Actions";
|
||||
icon = "";
|
||||
}
|
||||
{
|
||||
__unkeyed-1 = "<leader>d/";
|
||||
group = "Search";
|
||||
icon = "";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
@@ -305,5 +310,31 @@
|
||||
action = "<CMD>BufferLineCloseLeft<CR>";
|
||||
options = { desc = "Delete Buffers to the Left"; };
|
||||
}
|
||||
|
||||
# DAP Telescope Actions
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>d/c";
|
||||
action = "<CMD>Telescope dap commands<CR>";
|
||||
options = { desc = "Search Commands"; };
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>d/b";
|
||||
action = "<CMD>Telescope dap list_breakpoints<CR>";
|
||||
options = { desc = "Search Breakpoints"; };
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>d/v";
|
||||
action = "<CMD>Telescope dap variables<CR>";
|
||||
options = { desc = "Search Variables"; };
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>d/f";
|
||||
action = "<CMD>Telescope dap frames<CR>";
|
||||
options = { desc = "Search Frames"; };
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user