On this page
libtmux.Window.linked_sessions
- Module
- libtmux
- Declared in
- Window
- Package
- libtmux
- Source
- src/libtmux/window.py
-
Every session this window is reachable from.
Usually one, and then this is just
Window.sessionin a list.link-windowand grouped sessions (tmux new-session -t existing) make it more: the window is genuinely in each of them at once, andWindow.sessionreturns the session recorded on thisWindowinstance.Each session is listed once, however many indexes it links the window at, and they come back in the order tmux lists them. Fetching the holders takes two list commands total, independent of how many there are. If either listing fails, the result is empty.
Examples
A window you just made belongs to the session you made it in:
>>> window = session.new_window(window_name="solo", attach=False) >>> [s.session_name for s in window.linked_sessions] == [session.session_name] TrueLink it into a second session and it belongs to both:
>>> guest = server.new_session(session_name="guest") >>> target = f"{guest.session_id}:" >>> _ = server.cmd("link-window", "-d", "-s", window.window_id, "-t", target) >>> sorted(s.session_name for s in window.linked_sessions) == sorted( ... [session.session_name, "guest"] ... ) True
0 declared, 0 inherited