MCPcopy
hub / github.com/VSCodeVim/Vim / execActionWithCount

Method execActionWithCount

src/actions/motion.ts:975–985  ·  view source on GitHub ↗
(
    position: Position,
    vimState: VimState,
    count: number,
  )

Source from the content-addressed store, hash-verified

973 keys = [';'];
974
975 public override async execActionWithCount(
976 position: Position,
977 vimState: VimState,
978 count: number,
979 ): Promise<Position | IMovement> {
980 const movement = vimState.lastSemicolonRepeatableMovement;
981 if (movement) {
982 return movement.execActionWithCount(position, vimState, count);
983 }
984 return position;
985 }
986}
987
988@RegisterAction

Callers

nothing calls this directly

Calls 1

execActionWithCountMethod · 0.65

Tested by

no test coverage detected