當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。