goto_file: try multiple relative paths to find existing files

This commit is contained in:
Andreas Kloeckner 2024-10-09 13:22:02 -05:00
parent 388a3b78e3
commit 476b4df854

View file

@ -1297,10 +1297,6 @@ fn goto_file_impl(cx: &mut Context, action: Action) {
let text = doc.text().slice(..);
let selections = doc.selection(view.id);
let primary = selections.primary();
let rel_path = doc
.relative_path()
.map(|path| path.parent().unwrap().to_path_buf())
.unwrap_or_default();
let paths: Vec<_> = if selections.len() == 1 && primary.len() == 1 {
// Cap the search at roughly 1k bytes around the cursor.
@ -1332,14 +1328,35 @@ fn goto_file_impl(cx: &mut Context, action: Action) {
.collect()
};
let doc_path = doc
.relative_path()
.map(|path| path.parent().unwrap().to_path_buf())
.unwrap_or_default();
let mut search_paths = vec![doc_path];
let cwd = helix_stdx::env::current_working_dir();
if cwd.exists() {
search_paths.push(cwd);
}
// FIXME: Also include project root? Or just use project root, not cwd?
for sel in paths {
if let Ok(url) = Url::parse(&sel) {
open_url(cx, url, action);
continue;
}
let path = path::expand(&sel);
let path = &rel_path.join(path);
let selpath = path::expand(&sel);
let paths: Vec<_> = search_paths.iter().map(|sp| sp.join(&selpath)).collect();
let existing: Vec<_> = paths.iter().filter(|p| p.exists()).collect();
let path = if !existing.is_empty() {
existing.first().unwrap()
} else {
paths.first().unwrap()
};
if path.is_dir() {
let picker = ui::file_picker(cx.editor, path.into());
cx.push_layer(Box::new(overlaid(picker)));