mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 06:21:50 +01:00
Add support for deleting comments, #58078
This commit is contained in:
committed by
GitHub
parent
6ec7423464
commit
d1dbe4d53c
@@ -80,6 +80,9 @@ export class MainThreadComments extends Disposable implements MainThreadComments
|
||||
},
|
||||
editComment: async (uri, comment, text, token) => {
|
||||
return this._proxy.$editComment(handle, uri, comment, text);
|
||||
},
|
||||
deleteComment: async (uri, comment, token) => {
|
||||
return this._proxy.$deleteComment(handle, uri, comment);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user