mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-22 00:08:04 +02:00
@@ -107,6 +107,8 @@ Detailed list of changes
|
|||||||
rather than a plane. This means the first and last window are considered
|
rather than a plane. This means the first and last window are considered
|
||||||
neighbors (:iss:`4494`)
|
neighbors (:iss:`4494`)
|
||||||
|
|
||||||
|
- A new action to clear the current selection (:iss:`4600`)
|
||||||
|
|
||||||
- Shell integration: fish: Fix cursor shape not working with fish's vi mode
|
- Shell integration: fish: Fix cursor shape not working with fish's vi mode
|
||||||
(:iss:`4508`)
|
(:iss:`4508`)
|
||||||
|
|
||||||
|
|||||||
@@ -1178,6 +1178,10 @@ class Window:
|
|||||||
else:
|
else:
|
||||||
open_url(text, cwd=cwd)
|
open_url(text, cwd=cwd)
|
||||||
|
|
||||||
|
@ac('cp', 'Clear the current selection')
|
||||||
|
def clear_selection(self) -> None:
|
||||||
|
self.screen.clear_selection()
|
||||||
|
|
||||||
@ac('sc', 'Scroll up by one line')
|
@ac('sc', 'Scroll up by one line')
|
||||||
def scroll_line_up(self) -> None:
|
def scroll_line_up(self) -> None:
|
||||||
if self.screen.is_main_linebuf():
|
if self.screen.is_main_linebuf():
|
||||||
|
|||||||
Reference in New Issue
Block a user