Skip to content

Commit e70dadd

Browse files
committed
feat(Pane): Add Pane.set_option
1 parent 17fc19a commit e70dadd

File tree

1 file changed

+72
-1
lines changed

1 file changed

+72
-1
lines changed

src/libtmux/pane.py

+72-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import warnings
1212
from typing import overload
1313

14-
from libtmux.common import tmux_cmd
14+
from libtmux.common import handle_option_error, tmux_cmd
1515
from libtmux.neo import Obj, fetch_obj
1616

1717
from . import exc
@@ -328,6 +328,77 @@ def split_window(
328328
percent=percent,
329329
)
330330

331+
def set_option(
332+
self,
333+
option: str,
334+
value: t.Union[int, str],
335+
format: t.Optional[bool] = None,
336+
unset: t.Optional[bool] = None,
337+
unset_panes: t.Optional[bool] = None,
338+
prevent_overwrite: t.Optional[bool] = None,
339+
suppress_warnings: t.Optional[bool] = None,
340+
append: t.Optional[bool] = None,
341+
) -> "Pane":
342+
"""Set option for tmux pane.
343+
344+
Wraps ``$ tmux set-option -p <option> <value>``.
345+
346+
Parameters
347+
----------
348+
option : str
349+
option to set, e.g. 'aggressive-resize'
350+
value : str
351+
window option value. True/False will turn in 'on' and 'off',
352+
also accepts string of 'on' or 'off' directly.
353+
354+
Raises
355+
------
356+
:exc:`exc.OptionError`, :exc:`exc.UnknownOption`,
357+
:exc:`exc.InvalidOption`, :exc:`exc.AmbiguousOption`
358+
"""
359+
flags: list[str] = []
360+
if isinstance(value, bool) and value:
361+
value = "on"
362+
elif isinstance(value, bool) and not value:
363+
value = "off"
364+
365+
if unset is not None and unset:
366+
assert isinstance(unset, bool)
367+
flags.append("-u")
368+
369+
if unset_panes is not None and unset_panes:
370+
assert isinstance(unset_panes, bool)
371+
flags.append("-U")
372+
373+
if format is not None and format:
374+
assert isinstance(format, bool)
375+
flags.append("-F")
376+
377+
if prevent_overwrite is not None and prevent_overwrite:
378+
assert isinstance(prevent_overwrite, bool)
379+
flags.append("-o")
380+
381+
if suppress_warnings is not None and suppress_warnings:
382+
assert isinstance(suppress_warnings, bool)
383+
flags.append("-q")
384+
385+
if append is not None and append:
386+
assert isinstance(append, bool)
387+
flags.append("-a")
388+
389+
cmd = self.cmd(
390+
"set-option",
391+
f"-t{self.pane_id}",
392+
option,
393+
value,
394+
*flags,
395+
)
396+
397+
if isinstance(cmd.stderr, list) and len(cmd.stderr):
398+
handle_option_error(cmd.stderr[0])
399+
400+
return self
401+
331402
"""
332403
Commands (helpers)
333404
"""

0 commit comments

Comments
 (0)