本文整理汇总了TypeScript中vscode.OutputChannel类的典型用法代码示例。如果您正苦于以下问题:TypeScript OutputChannel类的具体用法?TypeScript OutputChannel怎么用?TypeScript OutputChannel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了OutputChannel类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: batchExecuteFile
export function batchExecuteFile(
server: Server,
editor: TextEditor,
edit: TextEditorEdit,
args: any[]) {
batchOutputChannel = batchOutputChannel ||
window.createOutputChannel('Lean: Batch File Output');
const fileName = editor.document.fileName;
const executablePath = server.executablePath;
const lean = child.spawn(executablePath, [fileName],
{ cwd: workspace.rootPath, env: {} /* TODO(gabriel): take from server */ });
batchOutputChannel.clear();
carrier.carry(lean.stdout, (line) => {
batchOutputChannel.appendLine(line);
});
carrier.carry(lean.stderr, (line) => {
batchOutputChannel.appendLine(line);
});
lean.on('close', (code) => {
/* not sure if we need to do anything here */
});
batchOutputChannel.show(true);
}
示例2:
window.showQuickPick(items).then((value) => {
if(value) {
outputChannel.appendLine('');
outputChannel.appendLine(`Killing process ${value.label} (pid: ${value.pid})`);
outputChannel.appendLine('');
kill(value.pid, 'SIGTERM');
}
});
示例3: logError
export function logError(error: string, notify: boolean = true) {
var channel = getChannel(OUTPUT_CHANNEL_NAME);
channel.appendLine('Error encountered during psake operation.')
channel.appendLine(`E: ${error}`);
if (notify) {
window.showErrorMessage(error);
}
}
示例4: addToOutput
export function addToOutput(message: string): void {
const title = `${new Date().toLocaleString()}:`;
// Create a sort of title, to differentiate between messages
outputChannel.appendLine(title);
outputChannel.appendLine('-'.repeat(title.length));
// Append actual output
outputChannel.appendLine(`${message}\n`);
}
示例5: execPythonFile
execPythonFile(pythonSettings.pythonPath, testArgs, rootDirectory, true, (data: string) => {
if (data.startsWith('READY' + os.EOL)) {
// debug socket server has started.
launchDef.resolve();
data = data.substring(('READY' + os.EOL).length);
}
if (!outputChannelShown) {
outputChannelShown = true;
outChannel.show();
}
outChannel.append(data);
}, token).catch(reason => {
示例6:
p.on('exit', (_code: number, signal: string) => {
runningProcesses.delete(p.pid);
if (signal === 'SIGTERM') {
outputChannel.appendLine('Successfully killed process');
outputChannel.appendLine('-----------------------');
outputChannel.appendLine('');
} else {
outputChannel.appendLine('-----------------------');
outputChannel.appendLine('');
}
validateAllDocuments();
});
示例7: execPythonFile
execPythonFile(pythonSettings.pythonPath, [testLauncherFile].concat(nosetestlauncherargs).concat(noseTestArgs.concat(testPaths)), rootDirectory, true, (data: string) => {
if (data === 'READY' + os.EOL) {
// debug socket server has started
launchDef.resolve();
}
else {
if (!outputChannelShown) {
outputChannelShown = true;
outChannel.show();
}
outChannel.append(data);
}
}, token).catch(reason => {
示例8: reject
tmp.file((err, tmpPath, fd, cleanupCallback) => {
if (err) {
return reject(err);
}
output.appendLine(`[INFO] Downloading to ${tmpPath}...`);
const outStream = fs.createWriteStream(null, { fd: fd });
outStream.once('error', err => reject(err));
inStream.once('error', err => reject(err));
outStream.once('finish', () => {
// At this point, the asset has finished downloading.
output.appendLine(`[INFO] Download complete!`);
output.appendLine(`[INFO] Decompressing...`);
return decompress(tmpPath, DefaultInstallLocation)
.then(files => {
output.appendLine(`[INFO] Done! ${files.length} files unpacked.`)
return resolve(true);
})
.catch(err => {
output.appendLine(`[ERROR] ${err}`);
return reject(err);
});
});
inStream.pipe(outStream);
});
示例9: processProcessEnding
process.on('exit', (code, signal) => {
outputChannel.appendLine(`\nexit: code=${code}, signal=${signal}`);
processExited = true;
if (processClosed) {
processProcessEnding(code);
}
});