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:
parent
5770fbd70f
commit
572af0d349
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user