summaryrefslogtreecommitdiffstats
path: root/src/tab.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab.rs')
-rw-r--r--src/tab.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tab.rs b/src/tab.rs
index 9d0cbbe..5a31edc 100644
--- a/src/tab.rs
+++ b/src/tab.rs
@@ -371,7 +371,8 @@ impl Tab {
/// Select the previous siblging
pub fn tree_select_prev(&mut self) -> Result<()> {
- self.tree.select_prev()
+ self.tree.select_prev();
+ Ok(())
}
/// Select the first child if any.