提交 8c81545f 编写于 作者: I isidor

debug: show full source path when it is not available

fixes #2026
上级 840fb157
......@@ -703,7 +703,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService
private sourceIsUnavailable(source: Source, sideBySide: boolean): Promise {
this.model.sourceIsUnavailable(source);
const editorInput = this.getDebugStringEditorInput(source, nls.localize('debugSourceNotAvailable', "Source is not available."), 'text/plain');
const editorInput = this.getDebugStringEditorInput(source, nls.localize('debugSourceNotAvailable', "Source {0} is not available.", source.uri.fsPath), 'text/plain');
return this.editorService.openEditor(editorInput, wbeditorcommon.TextEditorOptions.create({ preserveFocus: true }), sideBySide);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册