vim-engine/src/main/kotlin/com/maddyhome/idea/vim/action/motion/mark/MotionGotoFileMarkAction.kt [27:43]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override val motionType: MotionType = MotionType.EXCLUSIVE override val argumentType: Argument.Type = Argument.Type.CHARACTER override val flags: EnumSet = EnumSet.of(CommandFlags.FLAG_SAVE_JUMP) override fun getOffset( editor: VimEditor, caret: ImmutableVimCaret, context: ExecutionContext, argument: Argument?, operatorArguments: OperatorArguments, ): Motion { if (argument !is Argument.Character) return Motion.Error val mark = argument.character return injector.motion.moveCaretToMark(caret, mark, false) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - vim-engine/src/main/kotlin/com/maddyhome/idea/vim/action/motion/mark/MotionGotoMarkAction.kt [27:43]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override val motionType: MotionType = MotionType.EXCLUSIVE override val argumentType: Argument.Type = Argument.Type.CHARACTER override val flags: EnumSet = EnumSet.of(CommandFlags.FLAG_SAVE_JUMP) override fun getOffset( editor: VimEditor, caret: ImmutableVimCaret, context: ExecutionContext, argument: Argument?, operatorArguments: OperatorArguments, ): Motion { if (argument !is Argument.Character) return Motion.Error val mark = argument.character return injector.motion.moveCaretToMark(caret, mark, false) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -