(key: string, value: any)
| 431 | |
| 432 | // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/no-explicit-any |
| 433 | export async function setContext(key: string, value: any): Promise<void> { |
| 434 | await vscode.commands.executeCommand( |
| 435 | 'setContext', key, value |
| 436 | ); |
| 437 | } |
| 438 | |
| 439 | // Helper function used to convert raw text files to html |
| 440 | export function escapeHtml(source: string): string { |
no outgoing calls
no test coverage detected