|
11 | 11 | import warnings
|
12 | 12 | from typing import overload
|
13 | 13 |
|
14 |
| -from libtmux.common import tmux_cmd |
| 14 | +from libtmux.common import handle_option_error, tmux_cmd |
15 | 15 | from libtmux.neo import Obj, fetch_obj
|
16 | 16 |
|
17 | 17 | from . import exc
|
@@ -328,6 +328,77 @@ def split_window(
|
328 | 328 | percent=percent,
|
329 | 329 | )
|
330 | 330 |
|
| 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 | + |
331 | 402 | """
|
332 | 403 | Commands (helpers)
|
333 | 404 | """
|
|
0 commit comments