1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-15 00:34:06 +02:00

Double escape to exit multicaret is required

This commit is contained in:
Alex Plate 2024-01-05 18:53:22 +02:00
parent 98764b6356
commit ee94396afa
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -611,7 +611,10 @@ class UiTests {
)
// Reset state
keyboard { escape() }
keyboard {
escape()
escape()
}
assertEquals(1, editor.caretCount)
editor.injectText(testTextForEditor)
vimExit()