提交 d7fe9bca 编写于 作者: J Johannes Rieken

workspace edit - clarify size

上级 c81fa687
......@@ -990,6 +990,11 @@ declare module 'vscode' {
*/
export interface WorkspaceEdit {
/**
* The number of affected resources of textual or resource changes.
*/
readonly size: number;
/**
* Create a regular file.
*
......@@ -1013,10 +1018,6 @@ declare module 'vscode' {
* @param options Defines if existing files should be overwritten.
*/
renameFile(oldUri: Uri, newUri: Uri, options?: { overwrite?: boolean }): void;
// replaceText(uri: Uri, range: Range, newText: string): void;
// insertText(uri: Uri, position: Position, newText: string): void;
// deleteText(uri: Uri, range: Range): void;
}
export namespace workspace {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册