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


TypeScript window.showTextDocument方法代码示例

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


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

示例1:

 .then((doc: vscode.TextDocument) => {
     textDoc = doc;
     return vscode.window.showTextDocument(doc)
 })
开发者ID:Togusa09,项目名称:vscode-tmlanguage,代码行数:4,代码来源:fileConverter.ts

示例2:

		}).then((doc) => {
			return window.showTextDocument(doc, ViewColumn.One);
		}).then(() => {
开发者ID:sandy081,项目名称:vscode,代码行数:3,代码来源:window.test.ts

示例3:

 Workspace.openTextDocument(path).then((document) => {
     Window.showTextDocument(document);
 });
开发者ID:Gigitsu,项目名称:vscode-npm,代码行数:3,代码来源:init.ts

示例4:

 vscode.workspace.openTextDocument(fileEncodingUsed).then(document => {
     textDocument = document;
     return vscode.window.showTextDocument(textDocument);
 }).then(editor => {
开发者ID:,项目名称:,代码行数:4,代码来源:

示例5: openFile

 async function openFile(fileName: string) {
     const document = await vscode.workspace.openTextDocument(fileName);
     const editor = await vscode.window.showTextDocument(document);
     assert(vscode.window.activeTextEditor, 'No active editor');
     return editor;
 }
开发者ID:,项目名称:,代码行数:6,代码来源:

示例6:

 return vscode.workspace.openTextDocument(filePath).then(document => {
     return vscode.window.showTextDocument(document, vscode.ViewColumn.Three);
 });
开发者ID:mgarf,项目名称:ForceCode,代码行数:3,代码来源:soql.ts

示例7:

 return vscode.workspace.openTextDocument(fileToFormatWithoutConfig).then(document => {
     textDocument = document;
     originalContent = textDocument.getText();
     return vscode.window.showTextDocument(textDocument);
 }).then(editor => {
开发者ID:walkoncross,项目名称:pythonVSCode,代码行数:5,代码来源:extension.sort.test.ts

示例8:

 openDocument.then((document:TextDocument) => 
 {
     window.showTextDocument(document); 
 });
开发者ID:Janne252,项目名称:vscode-uri-test,代码行数:4,代码来源:extension.ts

示例9: openDocument

 async function openDocument() {
     const uri = Uri.file(editorFile1);
     const textDocument = await workspace.openTextDocument(uri);
     return window.showTextDocument(textDocument);
 }
开发者ID:sleistner,项目名称:vscode-fileutils,代码行数:5,代码来源:NewFileCommand.test.ts


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