(context: ExtensionContext)
| 193 | static onSearch: (vimState: VimState) => Promise<void>; |
| 194 | |
| 195 | public static async loadHistory(context: ExtensionContext): Promise<void> { |
| 196 | ExCommandLine.history = new CommandLineHistory(context); |
| 197 | await ExCommandLine.history.load(); |
| 198 | } |
| 199 | |
| 200 | // TODO: Make this stuff private? |
| 201 | public autoCompleteIndex = 0; |
no test coverage detected