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