From 6c72b6867b488ff1f1fc15fdb7e460b6498bff6e Mon Sep 17 00:00:00 2001 From: Kitsu Date: Sun, 28 Apr 2024 14:34:08 -0300 Subject: [PATCH] fix: do not stop at first url at goto_file --- helix-term/src/commands.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 8610a20484e0..7be2ea0954c9 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1256,7 +1256,8 @@ fn goto_file_impl(cx: &mut Context, action: Action) { } if let Ok(url) = Url::parse(p) { - return open_url(cx, url, action); + open_url(cx, url, action); + continue; } let path = &rel_path.join(p);