We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e9bcc commit cd6f072Copy full SHA for cd6f072
tmuxp/server.py
@@ -38,11 +38,15 @@ class Server(TmuxRelationalObject):
38
39
"""
40
41
- #: socket name
+ #: ``[-L socket-name]``
42
socket_name = None
43
+ #: ``[-S socket-path]``
44
socket_path = None
45
+ #: ``[-f file]``
46
config_file = None
47
+ #: ``-2`` or ``-8``
48
colors = None
49
+ #: unique child ID key
50
childIdAttribute = 'session_id'
51
52
def __init__(
@@ -69,7 +73,7 @@ def __init__(
69
73
self.colors = colors
70
74
71
75
def tmux(self, *args, **kwargs):
72
- """Send command to tmux with :attr:`pane_id` as ``target-pane``.
76
+ """Return :class:`util.tmux` send tmux commands with sockets, colors.
77
78
:rtype: :class:`util.tmux`
79
0 commit comments