window.Window.activePane
- Module
- window
- Declared in
- Window
- Package
- libtmux
- Source
- packages/libtmux/src/window.ts
- Other languages
- Python Ruby Lua RustGoJava.NETC++ Swift
-
The pane tmux marks active in this window.
pane_activeis scoped to a window, so filtering a session's panes on it yields one per window rather than one overall. Reaching the active pane through the window it belongs to is what makes the answer singular.Examples
await window.activePane?.sendKeys("echo hello");Discussed in Traversal
In other ports The window's active pane
- Python
libtmux.Window.active_pane - Ruby No source-verified Ruby equivalent is recorded for this operation.
- Lua No source-verified Lua equivalent is recorded for this operation.
- Rust
window.Window.active_pane - Go
tmux.Window.ActivePane - Java
io.github.libtmux.Window.Window.activePane - .NET
LibTmux.Window.ActivePane - C++
libtmux::Window::active_pane - Swift no accessor;
Pane.isActiveis a flag on the pane, so the active one is found by filtering a listing
- Python
0 declared, 0 inherited