diff options
author | Blaž Hrastnik | 2021-09-03 08:25:11 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-09-03 08:25:11 +0000 |
commit | c63ad60c31cb51481b227c1d610d3eb7b2f95529 (patch) | |
tree | b5652e82a60d985f9086cf4d8581281e09db4ff3 /helix-term/src/commands.rs | |
parent | 7b61c63ece4384f75fa41f6c052b3d9e506ff3aa (diff) |
dap: Allow switching between stack frames
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 7b207837..bdcad963 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -318,6 +318,7 @@ impl Command { dap_variables, "List variables", dap_terminate, "End debug session", dap_switch_thread, "Switch current thread", + dap_switch_stack_frame, "Switch stack frame", shell_pipe, "Pipe selections through shell command", shell_pipe_to, "Pipe selections into shell command, ignoring command output", shell_insert_output, "Insert output of shell command before each selection", |