mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
Merge 476b4df854
into db187c4870
This commit is contained in:
commit
c6ad4a4edc
1 changed files with 23 additions and 6 deletions
|
@ -1297,10 +1297,6 @@ fn goto_file_impl(cx: &mut Context, action: Action) {
|
||||||
let text = doc.text().slice(..);
|
let text = doc.text().slice(..);
|
||||||
let selections = doc.selection(view.id);
|
let selections = doc.selection(view.id);
|
||||||
let primary = selections.primary();
|
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 {
|
let paths: Vec<_> = if selections.len() == 1 && primary.len() == 1 {
|
||||||
// Cap the search at roughly 1k bytes around the cursor.
|
// Cap the search at roughly 1k bytes around the cursor.
|
||||||
|
@ -1332,14 +1328,35 @@ fn goto_file_impl(cx: &mut Context, action: Action) {
|
||||||
.collect()
|
.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 {
|
for sel in paths {
|
||||||
if let Ok(url) = Url::parse(&sel) {
|
if let Ok(url) = Url::parse(&sel) {
|
||||||
open_url(cx, url, action);
|
open_url(cx, url, action);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let path = path::expand(&sel);
|
let selpath = path::expand(&sel);
|
||||||
let path = &rel_path.join(path);
|
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() {
|
if path.is_dir() {
|
||||||
let picker = ui::file_picker(cx.editor, path.into());
|
let picker = ui::file_picker(cx.editor, path.into());
|
||||||
cx.push_layer(Box::new(overlaid(picker)));
|
cx.push_layer(Box::new(overlaid(picker)));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue