@@ -441,47 +441,11 @@ def show_window_options(self, g: t.Optional[bool] = False) -> "WindowOptionDict"
441441 option_type = OptionType .Window ,
442442 )
443443
444- @t .overload
445- def show_options (
446- self ,
447- g : t .Optional [bool ],
448- option_type : t .Optional [OptionType ],
449- include_hooks : t .Optional [bool ],
450- include_parents : t .Optional [bool ],
451- values_only : t .Literal [True ],
452- ) -> t .List [str ]:
453- ...
454-
455- @t .overload
456- def show_options (
457- self ,
458- g : t .Optional [bool ],
459- option_type : t .Optional [OptionType ],
460- include_hooks : t .Optional [bool ],
461- include_parents : t .Optional [bool ],
462- values_only : t .Literal [None ] = None ,
463- ) -> "WindowOptionDict" :
464- ...
465-
466- @t .overload
467- def show_options (
468- self ,
469- g : t .Optional [bool ] = None ,
470- option_type : t .Optional [OptionType ] = None ,
471- include_hooks : t .Optional [bool ] = None ,
472- include_parents : t .Optional [bool ] = None ,
473- values_only : t .Literal [False ] = False ,
474- ) -> "WindowOptionDict" :
475- ...
476-
477444 def show_options (
478445 self ,
479446 g : t .Optional [bool ] = False ,
480447 option_type : t .Optional [OptionType ] = None ,
481- include_hooks : t .Optional [bool ] = None ,
482- include_parents : t .Optional [bool ] = None ,
483- values_only : t .Optional [bool ] = False ,
484- ) -> t .Union ["WindowOptionDict" , t .List [str ]]:
448+ ) -> "WindowOptionDict" :
485449 """Return a dict of options for the window.
486450
487451 For familiarity with tmux, the option ``option`` param forwards to pick a
@@ -505,15 +469,6 @@ def show_options(
505469 assert option_type in OPTION_TYPE_FLAG_MAP
506470 tmux_args += (OPTION_TYPE_FLAG_MAP [option_type ],)
507471
508- if include_parents is not None and include_parents :
509- tmux_args += ("-A" ,)
510-
511- if include_hooks is not None and include_hooks :
512- tmux_args += ("-H" ,)
513-
514- if values_only is not None and values_only :
515- tmux_args += ("-v" ,)
516-
517472 cmd = self .cmd ("show-options" , * tmux_args )
518473
519474 output = cmd .stdout
0 commit comments