aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-22 08:16:11 +0000
committerDmitry Sharshakov2021-08-22 08:16:11 +0000
commitd93cd2a2611b3305293274f8fb590a01d4b99584 (patch)
tree968f5649ee3e171b18ff0245207ce059316cc8a7 /helix-term/src/keymap.rs
parentdfc70a12f337df57e69e3613896663c2f446df8e (diff)
editor: support stepIn, stepOut, next and pause commands
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index 6082521e..541ac233 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -490,6 +490,10 @@ impl Default for Keymaps {
"b" => dap_toggle_breakpoint,
"r" => dap_run,
"c" => dap_continue,
+ "h" => dap_pause,
+ "j" => dap_in,
+ "k" => dap_out,
+ "l" => dap_next,
"z" => dap_variable_scopes,
"t" => dap_terminate,
},