Skip to content

Commit

Permalink
When buffer closes, focus on parent buffer (helix-editor#4766)
Browse files Browse the repository at this point in the history
  • Loading branch information
wes-adams authored and Frederik Vestre committed Feb 6, 2023
1 parent 5e89460 commit 7ceefc7
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion helix-view/src/tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl Tree {

if self.focus == index {
// focus on something else
self.focus = self.next();
self.focus = self.prev();
}

stack.push(index);
Expand Down Expand Up @@ -521,6 +521,26 @@ impl Tree {
Some(child_id)
}

pub fn prev(&self) -> ViewId {
// This function is very dumb, but that's because we don't store any parent links.
// (we'd be able to go parent.prev_sibling() recursively until we find something)
// For now that's okay though, since it's unlikely you'll be able to open a large enough
// number of splits to notice.

let mut views = self
.traverse()
.rev()
.skip_while(|&(id, _view)| id != self.focus)
.skip(1); // Skip focused value
if let Some((id, _)) = views.next() {
id
} else {
// extremely crude, take the last item
let (key, _) = self.traverse().rev().next().unwrap();
key
}
}

pub fn next(&self) -> ViewId {
// This function is very dumb, but that's because we don't store any parent links.
// (we'd be able to go parent.next_sibling() recursively until we find something)
Expand Down Expand Up @@ -661,6 +681,23 @@ impl<'a> Iterator for Traverse<'a> {
}
}

impl<'a> DoubleEndedIterator for Traverse<'a> {
fn next_back(&mut self) -> Option<Self::Item> {
loop {
let key = self.stack.pop()?;

let node = &self.tree.nodes[key];

match &node.content {
Content::View(view) => return Some((key, view)),
Content::Container(container) => {
self.stack.extend(container.children.iter());
}
}
}
}
}

#[cfg(test)]
mod test {
use super::*;
Expand Down

0 comments on commit 7ceefc7

Please sign in to comment.