Remove references to overlay_for from boss

This commit is contained in:
Kovid Goyal
2020-05-05 17:08:46 +05:30
parent 81b28bc1bd
commit 79a780004f
3 changed files with 19 additions and 8 deletions

View File

@@ -167,6 +167,10 @@ class Tab: # {{{
def active_window(self) -> Optional[Window]:
return self.windows.active_window
@property
def active_window_for_cwd(self) -> Optional[Window]:
return self.windows.active_group_base
@property
def title(self) -> str:
return cast(str, getattr(self.active_window, 'title', appname))