From 2f8002c567c8aae5b605a2843961c49c36227a0d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 26 Feb 2020 09:20:08 +0530 Subject: [PATCH] Add a test for #1616 --- kitty_tests/mouse.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kitty_tests/mouse.py b/kitty_tests/mouse.py index 2c31f67c5..c67d0cb33 100644 --- a/kitty_tests/mouse.py +++ b/kitty_tests/mouse.py @@ -133,6 +133,8 @@ class TestMouse(BaseTest): s.draw('X Y') multi_click(x=1.4) self.ae(sel(), 'ab') + move(2.6) + self.ae(sel(), 'ab ') move(3.6) self.ae(sel(), 'ab cd') release(3.6, 1)