mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-19 23:14:55 +02:00
Fix #4070
This commit is contained in:
@@ -155,6 +155,20 @@ class TestMouse(BaseTest):
|
||||
move(0.2)
|
||||
release()
|
||||
self.ae(sel(), 'ab cd')
|
||||
multi_click(x=4.4)
|
||||
self.ae(sel(), 'cd')
|
||||
move(x=4.4, y=1)
|
||||
self.ae(sel(), 'cd f gh')
|
||||
move(x=4.4, y=0)
|
||||
self.ae(sel(), 'cd')
|
||||
release()
|
||||
multi_click(x=4.4, y=1)
|
||||
self.ae(sel(), 'gh')
|
||||
move(x=4.4, y=0)
|
||||
self.ae(sel(), 'cd f gh')
|
||||
move(x=4.4, y=1)
|
||||
self.ae(sel(), 'gh')
|
||||
release()
|
||||
|
||||
# Line select with drag
|
||||
s.reset()
|
||||
|
||||
Reference in New Issue
Block a user