cleanup
This commit is contained in:
parent
ec10ac992a
commit
d2e28b4608
1 changed files with 36 additions and 33 deletions
69
src/main.rs
69
src/main.rs
|
@ -167,41 +167,44 @@ impl Navigator {
|
||||||
fn enter(&mut self) {
|
fn enter(&mut self) {
|
||||||
if self.selected < self.editors.len() {
|
if self.selected < self.editors.len() {
|
||||||
self.editors[self.selected].enter();
|
self.editors[self.selected].enter();
|
||||||
} else {
|
return;
|
||||||
let i = self.selected - self.editors.len();
|
}
|
||||||
if i == 0 {
|
|
||||||
if let Some(parent) = self.path.parent() {
|
let i = self.selected - self.editors.len();
|
||||||
self.set_path(self.path.join(parent));
|
// top entry is hardcoded to be ../
|
||||||
}
|
if i == 0 {
|
||||||
} else {
|
if let Some(parent) = self.path.parent() {
|
||||||
let path = &self.files[i];
|
self.set_path(self.path.join(parent));
|
||||||
if path.is_dir() {
|
}
|
||||||
self.set_path(self.path.join(path));
|
return;
|
||||||
} else if path.is_file() {
|
}
|
||||||
let path = path.canonicalize().unwrap();
|
|
||||||
let mut editor_index = self.editors.len();
|
let path = &self.files[i];
|
||||||
for (i, editor) in self.editors.iter().enumerate() {
|
if path.is_dir() {
|
||||||
if editor.path() == Some(&path) {
|
self.set_path(self.path.join(path));
|
||||||
editor_index = i;
|
return;
|
||||||
break;
|
}
|
||||||
}
|
if path.is_file() {
|
||||||
}
|
let path = path.canonicalize().unwrap();
|
||||||
if editor_index == self.editors.len() {
|
let mut selected = self.editors.len();
|
||||||
match Editor::open_file(
|
for (i, editor) in self.editors.iter().enumerate() {
|
||||||
self.clipboard.clone(),
|
if editor.path() == Some(&path) {
|
||||||
path.canonicalize().unwrap(),
|
selected = i;
|
||||||
) {
|
break;
|
||||||
Ok(editor) => self.editors.push(editor),
|
|
||||||
Err(err) => {
|
|
||||||
self.message(format!("Could not open file: {err}"));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
self.selected = editor_index;
|
|
||||||
self.open_selected();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// no editor exists with this path
|
||||||
|
if selected == self.editors.len() {
|
||||||
|
match Editor::open_file(self.clipboard.clone(), path) {
|
||||||
|
Ok(editor) => self.editors.push(editor),
|
||||||
|
Err(err) => {
|
||||||
|
self.message(format!("Could not open file: {err}"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
self.selected = selected;
|
||||||
|
self.open_selected();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue