| 23 | } |
| 24 | |
| 25 | interface IBaseMovement { |
| 26 | execActionWithCount( |
| 27 | position: Position, |
| 28 | vimState: VimState, |
| 29 | count: number, |
| 30 | ): Promise<Position | IMovement>; |
| 31 | } |
| 32 | |
| 33 | interface INVim { |
| 34 | run(vimState: VimState, command: string): Promise<{ statusBarText: string; error: boolean }>; |
no outgoing calls
no test coverage detected