1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-08-13 14:17:07 +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

@@ -202,7 +202,8 @@ internal class IjActionExecutor : VimActionExecutor {
} }
override fun executeEsc(editor: VimEditor, context: ExecutionContext): Boolean { 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( override fun executeVimAction(