mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-11 18:32:12 +02:00
Allow selecting blanks at the start of the top line
This commit is contained in:
@@ -179,6 +179,12 @@ class TestMouse(BaseTest):
|
||||
move(x=2, y=1)
|
||||
self.ae(sel(), '123\n 456')
|
||||
release()
|
||||
press(x=2, y=1, button=GLFW_MOUSE_BUTTON_RIGHT)
|
||||
release(x=2, y=1, button=GLFW_MOUSE_BUTTON_RIGHT)
|
||||
self.ae(sel(), '123\n 456')
|
||||
press(button=GLFW_MOUSE_BUTTON_RIGHT)
|
||||
release(button=GLFW_MOUSE_BUTTON_RIGHT)
|
||||
self.ae(sel(), ' 123\n 456')
|
||||
|
||||
# Rectangle select
|
||||
init()
|
||||
|
||||
Reference in New Issue
Block a user