(
position: Position,
vimState: VimState,
count: number,
)
| 1408 | keys = ['<C-End>']; |
| 1409 | |
| 1410 | public override async execActionWithCount( |
| 1411 | position: Position, |
| 1412 | vimState: VimState, |
| 1413 | count: number, |
| 1414 | ): Promise<Position> { |
| 1415 | const line = count |
| 1416 | ? clamp(count - 1, 0, vimState.document.lineCount - 1) |
| 1417 | : vimState.document.lineCount - 1; |
| 1418 | |
| 1419 | return new Position(line, 0).getLineEnd(); |
| 1420 | } |
| 1421 | } |
| 1422 | |
| 1423 | @RegisterAction |
nothing calls this directly
no test coverage detected