Skip to content

Commit

Permalink
feat(plugins): utility functions to find active pane and tab (#2652)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nacho114 authored Jul 28, 2023
1 parent 859d633 commit 9631204
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions zellij-tile/src/shim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,31 @@ pub fn rename_tab<S: AsRef<str>>(tab_position: i32, new_name: S) {
unsafe { host_rename_tab() };
}

// Utility Functions

/// Returns the `TabInfo` corresponding to the currently active tab
fn get_focused_tab(tab_infos: &Vec<TabInfo>) -> Option<TabInfo> {
for tab_info in tab_infos {
if tab_info.active {
return Some(tab_info.clone());
}
}
return None;
}

/// Returns the `PaneInfo` corresponding to the currently active pane (ignoring plugins)
fn get_focused_pane(tab_position: usize, pane_manifest: &PaneManifest) -> Option<PaneInfo> {
let panes = pane_manifest.panes.get(&tab_position);
if let Some(panes) = panes {
for pane in panes {
if pane.is_focused & !pane.is_plugin {
return Some(pane.clone());
}
}
}
None
}

// Internal Functions

#[doc(hidden)]
Expand Down

0 comments on commit 9631204

Please sign in to comment.