mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 14:46:03 +00:00
Output the actual tab id in its repr
This commit is contained in:
parent
a856c64104
commit
d1eb9340ac
1 changed files with 1 additions and 1 deletions
|
|
@ -759,7 +759,7 @@ class Tab: # {{{
|
|||
self.windows = WindowList(self)
|
||||
|
||||
def __repr__(self) -> str:
|
||||
return f'Tab(title={self.effective_title}, id={hex(id(self))})'
|
||||
return f'Tab(title={self.effective_title}, id={self.id})'
|
||||
|
||||
def make_active(self) -> None:
|
||||
tm = self.tab_manager_ref()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue