How do I iterate over the Sections dynamically?
#118
-
|
I want to iterate over the values ---@param view "breakpoints" | "exceptions" | "watches" | "repl" | "threads" | "console" | "scopes" | "sessions" | string
require("dap-view").jump_to_view(view)Where do I find them in the codebase? I probably start with Since I am not the most proliferate lua-nvim-wizard out there, so I don't know, if my goal is feasible or not. |
Beta Was this translation helpful? Give feedback.
Answered by
igorlfs
Oct 21, 2025
Replies: 1 comment 2 replies
-
|
Hello,
This sounds like an XY problem. What exactly is your end goal? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These functions only allow you to jump to the sections (views) you have configured. If you're using the default configuration, they are
{ "watches", "scopes", "exceptions", "breakpoints", "threads", "repl" }Else, you're setting the
winbar.sectionssomewhere, which allows you to: