mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-30 14:11:03 +01:00
tests/plugins/dap-view: remove deprecated settings.winbar.base_sections.*.action
This commit is contained in:
parent
1cca516a54
commit
7bce9d28ea
1 changed files with 0 additions and 40 deletions
|
|
@ -26,81 +26,41 @@
|
|||
keymap = "B";
|
||||
label = "Breakpoints [B]";
|
||||
short_label = " [B]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.views").switch_to_view("breakpoints")
|
||||
end
|
||||
'';
|
||||
};
|
||||
scopes = {
|
||||
keymap = "S";
|
||||
label = "Scopes [S]";
|
||||
short_label = " [S]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.views").switch_to_view("scopes")
|
||||
end
|
||||
'';
|
||||
};
|
||||
exceptions = {
|
||||
keymap = "E";
|
||||
label = "Exceptions [E]";
|
||||
short_label = " [E]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.views").switch_to_view("exceptions")
|
||||
end
|
||||
'';
|
||||
};
|
||||
watches = {
|
||||
keymap = "W";
|
||||
label = "Watches [W]";
|
||||
short_label = " [W]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.views").switch_to_view("watches")
|
||||
end
|
||||
'';
|
||||
};
|
||||
threads = {
|
||||
keymap = "T";
|
||||
label = "Threads [T]";
|
||||
short_label = " [T]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.views").switch_to_view("threads")
|
||||
end
|
||||
'';
|
||||
};
|
||||
repl = {
|
||||
keymap = "R";
|
||||
label = "REPL [R]";
|
||||
short_label = " [R]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.repl").show()
|
||||
end
|
||||
'';
|
||||
};
|
||||
sessions = {
|
||||
keymap = "K";
|
||||
label = "Sessions [K]";
|
||||
short_label = " [K]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.views").switch_to_view("sessions")
|
||||
end
|
||||
'';
|
||||
};
|
||||
console = {
|
||||
keymap = "C";
|
||||
label = "Console [C]";
|
||||
short_label = " [C]";
|
||||
action.__raw = ''
|
||||
function()
|
||||
require("dap-view.term").show()
|
||||
end
|
||||
'';
|
||||
};
|
||||
};
|
||||
custom_sections.__empty = { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue