Skip to content

Commit

Permalink
fix: Remove leftover debug println! (#12138)
Browse files Browse the repository at this point in the history
Introduced in dc941d6
  • Loading branch information
poliorcetics authored Nov 27, 2024
1 parent 7676106 commit 0f47292
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
Expand Down

0 comments on commit 0f47292

Please sign in to comment.