aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-08-29 13:37:21 +0000
committerBlaž Hrastnik2021-08-29 13:37:21 +0000
commitee2ba744a25594407a75b3094ac0124cd9f3035a (patch)
treec52d16d34e9418ee71a7d6163146efa7a1a838e4 /helix-term/src
parent2a7e38a2b4792f8b4c600b6e22469ea827b64f00 (diff)
Rename dap_in/_out to dap_step_in/_out
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands.rs8
-rw-r--r--helix-term/src/keymap.rs4
2 files changed, 6 insertions, 6 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index eea73e47..a91490fd 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -309,8 +309,8 @@ impl Command {
dap_run, "Begin program execution",
dap_continue, "Continue program execution",
dap_pause, "Pause program execution",
- dap_in, "Step in",
- dap_out, "Step out",
+ dap_step_in, "Step in",
+ dap_step_out, "Step out",
dap_next, "Step to next",
dap_variables, "List variables",
dap_terminate, "End debug session",
@@ -4742,7 +4742,7 @@ fn dap_pause(cx: &mut Context) {
}
}
-fn dap_in(cx: &mut Context) {
+fn dap_step_in(cx: &mut Context) {
use helix_lsp::block_on;
if let Some(debugger) = &mut cx.editor.debugger {
@@ -4759,7 +4759,7 @@ fn dap_in(cx: &mut Context) {
}
}
-fn dap_out(cx: &mut Context) {
+fn dap_step_out(cx: &mut Context) {
use helix_lsp::block_on;
if let Some(debugger) = &mut cx.editor.debugger {
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,