1
0
Fork 0
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:
Gaetan Lepage 2025-11-26 23:11:29 +01:00 committed by Gaétan Lepage
parent 1cca516a54
commit 7bce9d28ea

View file

@ -26,81 +26,41 @@
keymap = "B"; keymap = "B";
label = "Breakpoints [B]"; label = "Breakpoints [B]";
short_label = " [B]"; short_label = " [B]";
action.__raw = ''
function()
require("dap-view.views").switch_to_view("breakpoints")
end
'';
}; };
scopes = { scopes = {
keymap = "S"; keymap = "S";
label = "Scopes [S]"; label = "Scopes [S]";
short_label = "󰂥 [S]"; short_label = "󰂥 [S]";
action.__raw = ''
function()
require("dap-view.views").switch_to_view("scopes")
end
'';
}; };
exceptions = { exceptions = {
keymap = "E"; keymap = "E";
label = "Exceptions [E]"; label = "Exceptions [E]";
short_label = "󰢃 [E]"; short_label = "󰢃 [E]";
action.__raw = ''
function()
require("dap-view.views").switch_to_view("exceptions")
end
'';
}; };
watches = { watches = {
keymap = "W"; keymap = "W";
label = "Watches [W]"; label = "Watches [W]";
short_label = "󰛐 [W]"; short_label = "󰛐 [W]";
action.__raw = ''
function()
require("dap-view.views").switch_to_view("watches")
end
'';
}; };
threads = { threads = {
keymap = "T"; keymap = "T";
label = "Threads [T]"; label = "Threads [T]";
short_label = "󱉯 [T]"; short_label = "󱉯 [T]";
action.__raw = ''
function()
require("dap-view.views").switch_to_view("threads")
end
'';
}; };
repl = { repl = {
keymap = "R"; keymap = "R";
label = "REPL [R]"; label = "REPL [R]";
short_label = "󰯃 [R]"; short_label = "󰯃 [R]";
action.__raw = ''
function()
require("dap-view.repl").show()
end
'';
}; };
sessions = { sessions = {
keymap = "K"; keymap = "K";
label = "Sessions [K]"; label = "Sessions [K]";
short_label = " [K]"; short_label = " [K]";
action.__raw = ''
function()
require("dap-view.views").switch_to_view("sessions")
end
'';
}; };
console = { console = {
keymap = "C"; keymap = "C";
label = "Console [C]"; label = "Console [C]";
short_label = "󰆍 [C]"; short_label = "󰆍 [C]";
action.__raw = ''
function()
require("dap-view.term").show()
end
'';
}; };
}; };
custom_sections.__empty = { }; custom_sections.__empty = { };