本文整理汇总了TypeScript中vs/platform/message/common/message.IMessageService类的典型用法代码示例。如果您正苦于以下问题:TypeScript IMessageService类的具体用法?TypeScript IMessageService怎么用?TypeScript IMessageService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了IMessageService类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: revealResourcesInOS
function revealResourcesInOS(resources: URI[], windowsService: IWindowsService, messageService: IMessageService): void {
if (resources.length) {
sequence(resources.map(r => () => windowsService.showItemInFolder(paths.normalize(r.fsPath, true))));
} else {
messageService.show(severity.Info, nls.localize('openFileToReveal', "Open a file first to reveal"));
}
}
开发者ID:tonycleveland,项目名称:vscode,代码行数:7,代码来源:fileCommands.ts
示例2: resourcesToClipboard
function resourcesToClipboard(resources: URI[], clipboardService: IClipboardService, messageService: IMessageService): void {
if (resources.length) {
const lineDelimiter = isWindows ? '\r\n' : '\n';
const text = resources.map(r => r.scheme === Schemas.file ? labels.getPathLabel(r) : r.toString()).join(lineDelimiter);
clipboardService.writeText(text);
} else {
messageService.show(severity.Info, nls.localize('openFileToCopy', "Open a file first to copy its path"));
}
}
开发者ID:tonycleveland,项目名称:vscode,代码行数:9,代码来源:fileCommands.ts
示例3:
this.toDispose.push(this.actionRunner.addListener(EventType.RUN, (e: any) => {
if (hideViewOnRun) {
this.contextViewService.hideContextView(false);
}
hideViewOnRun = false;
if (e.error && this.messageService) {
this.messageService.show(Severity.Error, e.error);
}
}));
开发者ID:SeanKilleen,项目名称:vscode,代码行数:11,代码来源:contextMenuHandler.ts
注:本文中的vs/platform/message/common/message.IMessageService类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论