當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript WorkspaceEdit.replace方法代碼示例

本文整理匯總了TypeScript中vscode.WorkspaceEdit.replace方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript WorkspaceEdit.replace方法的具體用法?TypeScript WorkspaceEdit.replace怎麽用?TypeScript WorkspaceEdit.replace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在vscode.WorkspaceEdit的用法示例。


在下文中一共展示了WorkspaceEdit.replace方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: applyCodeAction

export async function applyCodeAction(
	client: ITypescriptServiceClient,
	action: Proto.CodeAction,
	file: string
): Promise<boolean> {
	if (action.changes && action.changes.length) {
		const workspaceEdit = new WorkspaceEdit();
		for (const change of action.changes) {
			for (const textChange of change.textChanges) {
				workspaceEdit.replace(client.asUrl(change.fileName),
					tsTextSpanToVsRange(textChange),
					textChange.newText);
			}
		}

		if (!(await workspace.applyEdit(workspaceEdit))) {
			return false;
		}
	}

	if (action.commands && action.commands.length) {
		for (const command of action.commands) {
			const response = await client.execute('applyCodeActionCommand', { file, command });
			if (!response || !response.body) {
				return false;
			}
		}
	}
	return true;
}
開發者ID:gokulakrishna9,項目名稱:vscode,代碼行數:30,代碼來源:codeAction.ts

示例2: Range

			change.textChanges.forEach(textChange => {
				workspaceEdit.replace(this.client.asUrl(change.fileName),
					new Range(
						textChange.start.line - 1, textChange.start.offset - 1,
						textChange.end.line - 1, textChange.end.offset - 1),
					textChange.newText);
			});
開發者ID:diarmaidm,項目名稱:vscode,代碼行數:7,代碼來源:codeActionProvider.ts

示例3: _revertChanges

	private async _revertChanges(textEditor: TextEditor, changes: LineChange[]): Promise<void> {
		const modifiedDocument = textEditor.document;
		const modifiedUri = modifiedDocument.uri;

		if (modifiedUri.scheme !== 'file') {
			return;
		}

		const originalUri = toGitUri(modifiedUri, '~');
		const originalDocument = await workspace.openTextDocument(originalUri);
		const basename = path.basename(modifiedUri.fsPath);
		const message = localize('confirm revert', "Are you sure you want to revert the selected changes in {0}?", basename);
		const yes = localize('revert', "Revert Changes");
		const pick = await window.showWarningMessage(message, { modal: true }, yes);

		if (pick !== yes) {
			return;
		}

		const result = applyLineChanges(originalDocument, modifiedDocument, changes);
		const edit = new WorkspaceEdit();
		edit.replace(modifiedUri, new Range(new Position(0, 0), modifiedDocument.lineAt(modifiedDocument.lineCount - 1).range.end), result);
		workspace.applyEdit(edit);
		await modifiedDocument.save();
	}
開發者ID:golf1052,項目名稱:vscode,代碼行數:25,代碼來源:commands.ts

示例4: provideRenameEdits

    provideRenameEdits(document: vs.TextDocument, position: vs.Position, newName: string, token: vs.CancellationToken): vs.WorkspaceEdit | Thenable<vs.WorkspaceEdit> {
        const found = findMatchingEnd(document.getText(), document.offsetAt(position), document.languageId !== 'xml');

        if (!found) {
            return undefined;
        }

        const edit = new vs.WorkspaceEdit();
        const startPos = found.start;
        edit.replace(document.uri, new vs.Range(document.positionAt(startPos), document.positionAt(startPos + found.length)), newName);

        const endPos = found.end;
        if (typeof endPos === 'number') {
            edit.replace(document.uri, new vs.Range(document.positionAt(endPos), document.positionAt(endPos + found.length)), newName);
        }

        return edit;
    }
開發者ID:krizzdewizz,項目名稱:vscode-tag-rename,代碼行數:18,代碼來源:extension.ts

示例5: Range

					promise.then((document) =>
						workspaceEdit.replace(
							uri,
							new Range(
								document.positionAt(fileEdit.offset),
								document.positionAt(fileEdit.offset + fileEdit.length),
							),
							fileEdit.replacement,
						),
開發者ID:DanTup,項目名稱:Dart-Code,代碼行數:9,代碼來源:dart_rename_provider.ts

示例6: applyTextEdit

function applyTextEdit(we) {
    telemetry.traceEvent('command-applytextedit');

    let wse = new vscode.WorkspaceEdit()
    for (let edit of we.documentChanges[0].edits) {
        wse.replace(we.documentChanges[0].textDocument.uri, new vscode.Range(edit.range.start.line, edit.range.start.character, edit.range.end.line, edit.range.end.character), edit.newText)
    }
    vscode.workspace.applyEdit(wse)
}
開發者ID:JuliaEditorSupport,項目名稱:julia-vscode,代碼行數:9,代碼來源:smallcommands.ts

示例7: toWorkspaceEdit

	private toWorkspaceEdit(edits: Proto.FileCodeEdits[]): WorkspaceEdit {
		const workspaceEdit = new WorkspaceEdit();
		for (const edit of edits) {
			for (const textChange of edit.textChanges) {
				workspaceEdit.replace(this.client.asUrl(edit.fileName),
					tsTextSpanToVsRange(textChange),
					textChange.newText);
			}
		}
		return workspaceEdit;
	}
開發者ID:elibarzilay,項目名稱:vscode,代碼行數:11,代碼來源:refactorProvider.ts

示例8: onCodeAction

	private async onCodeAction(action: Proto.CodeAction): Promise<boolean> {
		const workspaceEdit = new WorkspaceEdit();
		for (const change of action.changes) {
			for (const textChange of change.textChanges) {
				workspaceEdit.replace(this.client.asUrl(change.fileName),
					tsTextSpanToVsRange(textChange),
					textChange.newText);
			}
		}

		return workspace.applyEdit(workspaceEdit);
	}
開發者ID:elibarzilay,項目名稱:vscode,代碼行數:12,代碼來源:codeActionProvider.ts

示例9: toWorkspaceEdit

	private toWorkspaceEdit(edits: Proto.FileCodeEdits[]): WorkspaceEdit {
		const workspaceEdit = new WorkspaceEdit();
		for (const edit of edits) {
			for (const textChange of edit.textChanges) {
				workspaceEdit.replace(this.client.asUrl(edit.fileName),
					new Range(
						textChange.start.line - 1, textChange.start.offset - 1,
						textChange.end.line - 1, textChange.end.offset - 1),
					textChange.newText);
			}
		}
		return workspaceEdit;
	}
開發者ID:Chan-PH,項目名稱:vscode,代碼行數:13,代碼來源:refactorProvider.ts

示例10: createWorkspaceEditFromFileCodeEdits

export function createWorkspaceEditFromFileCodeEdits(
	client: ITypeScriptServiceClient,
	edits: Iterable<Proto.FileCodeEdits>
): vscode.WorkspaceEdit {
	const workspaceEdit = new vscode.WorkspaceEdit();
	for (const edit of edits) {
		for (const textChange of edit.textChanges) {
			workspaceEdit.replace(client.asUrl(edit.fileName),
				tsTextSpanToVsRange(textChange),
				textChange.newText);
		}
	}

	return workspaceEdit;
}
開發者ID:JarnoNijboer,項目名稱:vscode,代碼行數:15,代碼來源:workspaceEdit.ts


注:本文中的vscode.WorkspaceEdit.replace方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。