当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript OutputChannel.appendLine方法代码示例

本文整理汇总了TypeScript中vscode.OutputChannel.appendLine方法的典型用法代码示例。如果您正苦于以下问题:TypeScript OutputChannel.appendLine方法的具体用法?TypeScript OutputChannel.appendLine怎么用?TypeScript OutputChannel.appendLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vscode.OutputChannel的用法示例。


在下文中一共展示了OutputChannel.appendLine方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

		window.showQuickPick(items).then((value) => {
			if(value) {
				outputChannel.appendLine('');
				outputChannel.appendLine(`Killing process ${value.label} (pid: ${value.pid})`);
				outputChannel.appendLine('');
				kill(value.pid, 'SIGTERM');
			}
		});
开发者ID:Gigitsu,项目名称:vscode-npm-scripts,代码行数:8,代码来源:main.ts

示例2: 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);
    }
}
开发者ID:psake,项目名称:psake-vscode,代码行数:9,代码来源:log.ts

示例3: 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`);
}
开发者ID:JulioC,项目名称:prettier-vscode,代码行数:10,代码来源:errorHandler.ts

示例4:

	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();
	});
开发者ID:scytalezero,项目名称:vscode-npm-scripts,代码行数:13,代码来源:main.ts

示例5: init

async function init(context: ExtensionContext, outputChannel: OutputChannel, disposables: Disposable[]): Promise<Model> {
	const { name, version, aiKey } = require(context.asAbsolutePath('./package.json')) as { name: string, version: string, aiKey: string };
	const telemetryReporter: TelemetryReporter = new TelemetryReporter(name, version, aiKey);
	disposables.push(telemetryReporter);

	const pathHint = workspace.getConfiguration('git').get<string>('path');
	const info = await findGit(pathHint, path => outputChannel.appendLine(localize('looking', "Looking for git in: {0}", path)));
	const askpass = new Askpass();
	const env = await askpass.getEnv();
	const git = new Git({ gitPath: info.path, version: info.version, env });
	const model = new Model(git, context.globalState);
	disposables.push(model);

	const onRepository = () => commands.executeCommand('setContext', 'gitOpenRepositoryCount', `${model.repositories.length}`);
	model.onDidOpenRepository(onRepository, null, disposables);
	model.onDidCloseRepository(onRepository, null, disposables);
	onRepository();

	outputChannel.appendLine(localize('using git', "Using git {0} from {1}", info.version, info.path));

	const onOutput = (str: string) => outputChannel.append(str);
	git.onOutput.addListener('log', onOutput);
	disposables.push(toDisposable(() => git.onOutput.removeListener('log', onOutput)));

	disposables.push(
		new CommandCenter(git, model, outputChannel, telemetryReporter),
		new GitContentProvider(model),
		new GitDecorations(model)
	);

	await checkGitVersion(info);

	return model;
}
开发者ID:servicesgpr,项目名称:vscode,代码行数:34,代码来源:main.ts

示例6: 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);
 });
开发者ID:wesrupert,项目名称:omnisharp-vscode,代码行数:31,代码来源:omnisharpDownload.ts

示例7: processProcessEnding

 process.on('exit', (code, signal) => {
     outputChannel.appendLine(`\nexit: code=${code}, signal=${signal}`);
     processExited = true;
     if (processClosed) {
         processProcessEnding(code);
     }
 });
开发者ID:KalitaAlexey,项目名称:RustyCode,代码行数:7,代码来源:OutputChannelProcess.ts

示例8: decompress

 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);
         });
 });
开发者ID:wesrupert,项目名称:omnisharp-vscode,代码行数:16,代码来源:omnisharpDownload.ts

示例9: getOmnisharpAssetName

    return new Promise<boolean>((resolve, reject) => {
        output.appendLine(`[INFO] Installing to ${DefaultInstallLocation}`);
        
        const assetName = getOmnisharpAssetName();
        const urlString = `${BaseDownloadUrl}/${assetName}`;
        
        output.appendLine(`[INFO] Attempting to download ${assetName}...`);

        return download(urlString)
            .then(inStream => {
                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);
                });
            })
            .catch(err =>
            {
                output.appendLine(`[ERROR] ${err}`);
            });
    });
开发者ID:wesrupert,项目名称:omnisharp-vscode,代码行数:47,代码来源:omnisharpDownload.ts


注:本文中的vscode.OutputChannel.appendLine方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。