parent
1cb3875cb5
commit
e7ee6d9e26
@ -107,6 +107,8 @@ Detailed list of changes
|
||||
rather than a plane. This means the first and last window are considered
|
||||
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
|
||||
(:iss:`4508`)
|
||||
|
||||
|
||||
@ -1178,6 +1178,10 @@ class Window:
|
||||
else:
|
||||
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')
|
||||
def scroll_line_up(self) -> None:
|
||||
if self.screen.is_main_linebuf():
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user