From c4970c617ed5f03dadce2a284b66539bf0ce3054 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Fri, 20 Aug 2021 16:48:59 +0300 Subject: make CI green --- helix-term/src/application.rs | 5 ++--- helix-term/src/commands.rs | 2 +- helix-term/src/ui/editor.rs | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) (limited to 'helix-term') 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) -- cgit v1.2.3-70-g09d2