File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { ExtensionHostKind , registerExtension } from '@codingame/monaco-vscode-api/extensions'
22
3- const { registerFileUrl } = registerExtension (
3+ export const { registerFileUrl, whenReady } = registerExtension (
44 {
55 name : 'cobol-indent' ,
66 publisher : 'codingame' ,
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import { whenReady as whenVbReady } from '@codingame/monaco-vscode-vb-default-ex
3232import { whenReady as wheXmlReady } from '@codingame/monaco-vscode-xml-default-extension'
3333import { whenReady as whenYamlReady } from '@codingame/monaco-vscode-yaml-default-extension'
3434import { whenReady as whenNpmReady } from '@codingame/monaco-vscode-npm-default-extension'
35+ import { whenReady as whenCobolReady } from './customExtensions/cobol'
3536
3637export async function whenReady ( ) : Promise < void > {
3738 await Promise . allSettled ( [
@@ -68,6 +69,7 @@ export async function whenReady(): Promise<void> {
6869 whenVbReady ( ) ,
6970 wheXmlReady ( ) ,
7071 whenYamlReady ( ) ,
71- whenNpmReady ( )
72+ whenNpmReady ( ) ,
73+ whenCobolReady ( )
7274 ] )
7375}
You can’t perform that action at this time.
0 commit comments