Rename dap_in/_out to dap_step_in/_out
This commit is contained in:
parent
2a7e38a2b4
commit
ee2ba744a2
2 changed files with 6 additions and 6 deletions
|
@ -309,8 +309,8 @@ impl Command {
|
||||||
dap_run, "Begin program execution",
|
dap_run, "Begin program execution",
|
||||||
dap_continue, "Continue program execution",
|
dap_continue, "Continue program execution",
|
||||||
dap_pause, "Pause program execution",
|
dap_pause, "Pause program execution",
|
||||||
dap_in, "Step in",
|
dap_step_in, "Step in",
|
||||||
dap_out, "Step out",
|
dap_step_out, "Step out",
|
||||||
dap_next, "Step to next",
|
dap_next, "Step to next",
|
||||||
dap_variables, "List variables",
|
dap_variables, "List variables",
|
||||||
dap_terminate, "End debug session",
|
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;
|
use helix_lsp::block_on;
|
||||||
|
|
||||||
if let Some(debugger) = &mut cx.editor.debugger {
|
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;
|
use helix_lsp::block_on;
|
||||||
|
|
||||||
if let Some(debugger) = &mut cx.editor.debugger {
|
if let Some(debugger) = &mut cx.editor.debugger {
|
||||||
|
|
|
@ -491,8 +491,8 @@ impl Default for Keymaps {
|
||||||
"r" => dap_run,
|
"r" => dap_run,
|
||||||
"c" => dap_continue,
|
"c" => dap_continue,
|
||||||
"h" => dap_pause,
|
"h" => dap_pause,
|
||||||
"j" => dap_in,
|
"j" => dap_step_in,
|
||||||
"k" => dap_out,
|
"k" => dap_step_out,
|
||||||
"l" => dap_next,
|
"l" => dap_next,
|
||||||
"v" => dap_variables,
|
"v" => dap_variables,
|
||||||
"t" => dap_terminate,
|
"t" => dap_terminate,
|
||||||
|
|
Loading…
Add table
Reference in a new issue