diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 3d500405..6a611edb 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1472,7 +1472,6 @@ fn search_completions(cx: &mut Context, reg: Option) -> Vec { items.into_iter().cloned().collect() } -// TODO: use one function for search vs extend fn search(cx: &mut Context) { searcher(cx, Direction::Forward) } @@ -1480,7 +1479,7 @@ fn search(cx: &mut Context) { fn rsearch(cx: &mut Context) { searcher(cx, Direction::Backward) } -// TODO: use one function for search vs extend + fn searcher(cx: &mut Context, direction: Direction) { let reg = cx.register.unwrap_or('/'); let scrolloff = cx.editor.config.scrolloff; diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs index eee42244..6e89586a 100644 --- a/helix-term/src/commands/dap.rs +++ b/helix-term/src/commands/dap.rs @@ -392,7 +392,6 @@ fn debug_parameter_prompt( } pub fn dap_toggle_breakpoint(cx: &mut Context) { - // TODO: accept line instead of current selection let (view, doc) = current!(cx.editor); let path = match doc.path() { Some(path) => path.clone(),