vim-engine/src/main/kotlin/com/maddyhome/idea/vim/action/motion/scroll/CtrlUpDownAction.kt [29:42]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override val type: Command.Type = Command.Type.OTHER_READONLY override fun execute( editor: VimEditor, context: ExecutionContext, cmd: Command, operatorArguments: OperatorArguments, ): Boolean { val keyStroke = keySet.first().first() val actions = injector.keyGroup.getKeymapConflicts(keyStroke) for (action in actions) { if (injector.actionExecutor.executeAction(editor, action, context)) break } return true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - vim-engine/src/main/kotlin/com/maddyhome/idea/vim/action/motion/scroll/CtrlUpDownAction.kt [51:64]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override val type: Command.Type = Command.Type.OTHER_READONLY override fun execute( editor: VimEditor, context: ExecutionContext, cmd: Command, operatorArguments: OperatorArguments, ): Boolean { val keyStroke = keySet.first().first() val actions = injector.keyGroup.getKeymapConflicts(keyStroke) for (action in actions) { if (injector.actionExecutor.executeAction(editor, action, context)) break } return true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -