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:
@@ -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(
|
||||||
|
Reference in New Issue
Block a user