1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-22 04:41:34 +03:00
wezterm/docs/config/lua/pane/index.markdown

24 lines
780 B
Markdown
Raw Normal View History

2022-06-18 01:52:24 +03:00
# `Pane` object
2022-09-11 17:16:20 +03:00
---
*Since: 20221119-145034-49b9839f*
2022-09-11 17:16:20 +03:00
In previous releases there were separate `MuxPane` and `Pane` objects created
by the mux and gui layers, respectively. This is no longer the case: there is
now just the underlying mux pane which is referred to in these docs as `Pane`
for the sake of simplicity.
---
A Pane object is typically passed to your code via an event callback. A Pane
object is a handle to a live instance of a Pane that is known to the wezterm
process. A Pane object tracks the psuedo terminal (or real serial terminal)
and associated process(es) and the parsed screen and scrollback.
2022-06-18 01:52:24 +03:00
A Pane object can be used to send input to the associated processes and
introspect the state of the terminal emulation for that pane.
## Available methods