diff options
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/application.rs | 5 | ||||
-rw-r--r-- | helix-term/src/commands.rs | 2 | ||||
-rw-r--r-- | helix-term/src/ui/editor.rs | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 42b9bcde..011dafee 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -245,9 +245,8 @@ impl Application { } } - pub async fn handle_debugger_message(&mut self, call: ()) { - - // + pub async fn handle_debugger_message(&mut self, _call: ()) { + // TODO } pub async fn handle_language_server_message( diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 012e0c7d..74b272c6 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1908,7 +1908,7 @@ mod cmd { ) -> anyhow::Result<()> { use helix_dap::Client; use helix_lsp::block_on; - let (_, doc) = current!(cx.editor); + let (_, _doc) = current!(cx.editor); // look up config for filetype // if multiple available, open picker diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 074f322e..20f6fdc7 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -465,7 +465,7 @@ impl EditorView { let selected = cursors.contains(&line); - if let Some(breakpoint) = breakpoints.and_then(|breakpoints| { + if let Some(_breakpoint) = breakpoints.and_then(|breakpoints| { breakpoints .iter() .find(|breakpoint| breakpoint.line == line) |