vim-engine/src/main/kotlin/com/maddyhome/idea/vim/action/change/change/ChangeCaseToggleMotionAction.kt [34:49]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun execute( editor: VimEditor, caret: VimCaret, context: ExecutionContext, argument: Argument?, operatorArguments: OperatorArguments, ): Boolean { if (argument == null || argument !is Argument.Motion) { logger.error("Argument is null or not Argument.Motion. argument=$argument") return false } return injector.changeGroup.changeCaseMotion( editor, caret, context, - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - vim-engine/src/main/kotlin/com/maddyhome/idea/vim/action/change/change/ChangeCaseUpperMotionAction.kt [34:49]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun execute( editor: VimEditor, caret: VimCaret, context: ExecutionContext, argument: Argument?, operatorArguments: OperatorArguments, ): Boolean { if (argument == null || argument !is Argument.Motion) { logger.error("Argument is null or not Argument.Motion. argument=$argument") return false } return injector.changeGroup.changeCaseMotion( editor, caret, context, - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -