aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index 2aa3f9f3..48ce923e 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -491,8 +491,8 @@ impl Default for Keymaps {
"r" => dap_run,
"c" => dap_continue,
"h" => dap_pause,
- "j" => dap_in,
- "k" => dap_out,
+ "j" => dap_step_in,
+ "k" => dap_step_out,
"l" => dap_next,
"v" => dap_variables,
"t" => dap_terminate,