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

Fix issue with esc

Currently, esc action will return false as it have no action in the editor. However, it doesn't mean that IdeaVim goes into the error mode
This commit is contained in:
Alex Plate 2025-03-04 17:27:45 +02:00
parent 5770fbd70f
commit 572af0d349
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -202,7 +202,8 @@ internal class IjActionExecutor : VimActionExecutor {
}
override fun executeEsc(editor: VimEditor, context: ExecutionContext): Boolean {
return executeAction(editor, IdeActions.ACTION_EDITOR_ESCAPE, context)
executeAction(editor, IdeActions.ACTION_EDITOR_ESCAPE, context)
return true
}
override fun executeVimAction(