mirror of https://github.com/helix-editor/helix
Rename functions
parent
1041a5bb07
commit
31212e133d
|
@ -1924,7 +1924,7 @@ mod cmd {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn impl_edit_breakpoint(
|
fn edit_breakpoint_impl(
|
||||||
cx: &mut compositor::Context,
|
cx: &mut compositor::Context,
|
||||||
condition: Option<String>,
|
condition: Option<String>,
|
||||||
log_message: Option<String>,
|
log_message: Option<String>,
|
||||||
|
@ -2002,7 +2002,7 @@ mod cmd {
|
||||||
Some(condition)
|
Some(condition)
|
||||||
};
|
};
|
||||||
|
|
||||||
impl_edit_breakpoint(cx, condition, None);
|
edit_breakpoint_impl(cx, condition, None);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2018,7 +2018,7 @@ mod cmd {
|
||||||
Some(log_message)
|
Some(log_message)
|
||||||
};
|
};
|
||||||
|
|
||||||
impl_edit_breakpoint(cx, None, log_message);
|
edit_breakpoint_impl(cx, None, log_message);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2027,7 +2027,7 @@ mod cmd {
|
||||||
args: &[&str],
|
args: &[&str],
|
||||||
_event: PromptEvent,
|
_event: PromptEvent,
|
||||||
) -> anyhow::Result<()> {
|
) -> anyhow::Result<()> {
|
||||||
impl_dap_start(&mut cx.editor, args.get(0).map(|name| name.to_string()));
|
dap_start_impl(&mut cx.editor, args.get(0).map(|name| name.to_string()));
|
||||||
// TODO templating
|
// TODO templating
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -4402,7 +4402,7 @@ fn suspend(_cx: &mut Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// DAP
|
// DAP
|
||||||
fn impl_dap_start(editor: &mut Editor, name: Option<String>) {
|
fn dap_start_impl(editor: &mut Editor, name: Option<String>) {
|
||||||
use helix_dap::Client;
|
use helix_dap::Client;
|
||||||
use helix_lsp::block_on;
|
use helix_lsp::block_on;
|
||||||
use serde_json::to_value;
|
use serde_json::to_value;
|
||||||
|
@ -4470,7 +4470,7 @@ fn impl_dap_start(editor: &mut Editor, name: Option<String>) {
|
||||||
fn dap_start(cx: &mut Context) {
|
fn dap_start(cx: &mut Context) {
|
||||||
// TODO: check that first config does not have templates
|
// TODO: check that first config does not have templates
|
||||||
// which cannot be handled with a shortcut
|
// which cannot be handled with a shortcut
|
||||||
impl_dap_start(&mut cx.editor, None);
|
dap_start_impl(&mut cx.editor, None);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn dap_toggle_breakpoint(cx: &mut Context) {
|
fn dap_toggle_breakpoint(cx: &mut Context) {
|
||||||
|
|
Loading…
Reference in New Issue