File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -330,6 +330,22 @@ def set_window_option(
330
330
self ,
331
331
option : str ,
332
332
value : t .Union [int , str ],
333
+ ) -> "Window" :
334
+ """Set option for tmux window. Deprecated by :meth:`Window.set_option()`.
335
+
336
+ .. deprecated:: 0.26
337
+
338
+ Deprecated by :meth:`Window.set_option()`.
339
+
340
+ """
341
+ warnings .warn ("Window.set_window_option() is deprecated" , stacklevel = 2 )
342
+
343
+ return self .set_option (option = option , value = value )
344
+
345
+ def set_option (
346
+ self ,
347
+ option : str ,
348
+ value : t .Union [int , str ],
333
349
format : t .Optional [bool ] = None ,
334
350
unset : t .Optional [bool ] = None ,
335
351
unset_panes : t .Optional [bool ] = None ,
@@ -355,7 +371,7 @@ def set_window_option(
355
371
:exc:`exc.OptionError`, :exc:`exc.UnknownOption`,
356
372
:exc:`exc.InvalidOption`, :exc:`exc.AmbiguousOption`
357
373
"""
358
- flags : list [str ] = []
374
+ flags : t . List [str ] = []
359
375
if isinstance (value , bool ) and value :
360
376
value = "on"
361
377
elif isinstance (value , bool ) and not value :
You can’t perform that action at this time.
0 commit comments