mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-27 18:51:41 +02:00
@@ -13,6 +13,9 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
|
|||||||
- macOS: Prevent :kbd:`option` based shortcuts for being used for global menu
|
- macOS: Prevent :kbd:`option` based shortcuts for being used for global menu
|
||||||
actions (:iss:`3515`)
|
actions (:iss:`3515`)
|
||||||
|
|
||||||
|
- Fix ``kitty @ close-tab`` not working with pipe based remote control
|
||||||
|
(:iss:`3510`)
|
||||||
|
|
||||||
0.20.1 [2021-04-19]
|
0.20.1 [2021-04-19]
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|||||||
@@ -34,9 +34,8 @@ If specified close the tab this command is run in, rather than the active tab.
|
|||||||
|
|
||||||
def response_from_kitty(self, boss: Boss, window: Optional[Window], payload_get: PayloadGetType) -> ResponseType:
|
def response_from_kitty(self, boss: Boss, window: Optional[Window], payload_get: PayloadGetType) -> ResponseType:
|
||||||
for tab in self.tabs_for_match_payload(boss, window, payload_get):
|
for tab in self.tabs_for_match_payload(boss, window, payload_get):
|
||||||
if window:
|
if tab:
|
||||||
if tab:
|
boss.close_tab_no_confirm(tab)
|
||||||
boss.close_tab_no_confirm(tab)
|
|
||||||
|
|
||||||
|
|
||||||
close_tab = CloseTab()
|
close_tab = CloseTab()
|
||||||
|
|||||||
Reference in New Issue
Block a user