mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
fix: do not stop at first url at goto_file (#10622)
This commit is contained in:
parent
8db93013fb
commit
ec224798e7
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user