(
position: Position,
vimState: VimState,
count: number,
)
| 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 |
nothing calls this directly
no test coverage detected