@@ -202,6 +202,14 @@ class TmuxMappingObject(collections.MutableMapping):
202202 Session, Window, Pane, stored :attr:`self._info`. For example, a
203203 :class:`Window` will have a ``window_id`` and ``window_name``.
204204
205+ ================ ================================== ==============
206+ Object formatter_prefix value
207+ ================ ================================== ==============
208+ :class:`Server` n/a n/a
209+ :class:`Session` :attr:`Session.formatter_prefix` session\_
210+ :class:`Window` :attr:`Window.formatter_prefix` window\_
211+ :class:`Pane` :attr:`Pane.formatter_prefix` pane\_
212+ ================ ================================== ==============
205213 """
206214
207215 def __getitem__ (self , key ):
@@ -242,24 +250,24 @@ class TmuxRelationalObject(object):
242250 :class:`Window`)
243251
244252 Children of :class:`TmuxRelationalObject` are going to have a
245- ``self.children``, ``self.child_id_attribute`` and ``self.list_children`` .
253+ ``self.children``, ``self.child_id_attribute``.
246254
247- ================ ======================== = =================================
248- Object .children method
249- ================ ======================== = =================================
250- :class:`Server` :attr:`Server._sessions` :meth:`Server.list_sessions`
251- :class:`Session` :attr:`Windows ._windows` :meth:`Session.list_windows`
252- :class:`Window` :attr:`Panes ._panes` :meth:`Window.list_panes`
253- :class:`Pane`
254- ================ ======================== = =================================
255+ ================ ========================= =================================
256+ Object .children method
257+ ================ ========================= =================================
258+ :class:`Server` :attr:`Server._sessions` :meth:`Server.list_sessions`
259+ :class:`Session` :attr:`Sessions ._windows` :meth:`Session.list_windows`
260+ :class:`Window` :attr:`Windows ._panes` :meth:`Window.list_panes`
261+ :class:`Pane` n/a n/a
262+ ================ ========================= =================================
255263
256264 ================ ================================== ==============
257265 Object child_id_attribute value
258266 ================ ================================== ==============
259- :class:`Server` :attr:`Server.child_id_attribute`` `` session_id``
260- :class:`Session` :attr:`Session.window_id` `` window_id``
261- :class:`Window` :attr:`Window.pane_id ` `` pane_id``
262- :class:`Pane`
267+ :class:`Server` :attr:`Server.child_id_attribute` session_id
268+ :class:`Session` :attr:`Session.child_id_attribute` window_id
269+ :class:`Window` :attr:`Window.child_id_attribute ` pane_id
270+ :class:`Pane` n/a n/a
263271 ================ ================================== ==============
264272 """
265273
0 commit comments