Is it possible to call command between extensions in VSCode?
问题 for example there are two VSCode extension. - extension1 is regist command 'exCommand1'. - extension2 is regist command 'exCommand2'. VSCode extension can call command. (ref: https://code.visualstudio.com/docs/extensionAPI/vscode-api) executeCommand<T>(command: string, ...rest: any[]): Thenable<T | undefined> If API Doc is correct then.. extension1 can call extension2's 'exCommand2'. and extension2 can call extension1's 'exCommand1'. is it possible? VSCode's extension is Lazy Loading... If