From 0f4729289b92e3a80c89f2a8805c355133368101 Mon Sep 17 00:00:00 2001 From: Poliorcetics Date: Wed, 27 Nov 2024 12:05:18 +0100 Subject: [PATCH] fix: Remove leftover debug println! (#12138) Introduced in https://github.com/helix-editor/helix/commit/dc941d6d24cd4876f75e68487047542239b8316a --- helix-term/src/commands.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 55f8fb9c3..341fff8ca 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1286,7 +1286,6 @@ fn goto_file_impl(cx: &mut Context, action: Action) { // rarely so in practice) so that gf on quoted/braced path works (not sure about this // but apparently that is how gf has worked historically in helix) let path = find_paths(search_range, true) - .inspect(|mat| println!("{mat:?} {:?}", pos - search_start)) .take_while(|range| search_start + range.start <= pos + 1) .find(|range| pos <= search_start + range.end) .map(|range| Cow::from(search_range.byte_slice(range)));