insert new tab after current on middle click

This commit is contained in:
yggverse 2024-10-15 15:55:14 +03:00
parent 29588c0d0b
commit 18d0da99f2
5 changed files with 18 additions and 6 deletions

View file

@ -74,8 +74,8 @@ impl Window {
}
// Actions
pub fn tab_append(&self) {
self.tab.append();
pub fn tab_append(&self, position: Option<i32>) {
self.tab.append(position);
}
pub fn tab_page_navigation_base(&self) {