-
Notifications
You must be signed in to change notification settings - Fork 382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implement comment timestamp #1595
Conversation
测试插件写法 const commentController = vscode.comments.createCommentController('comment-sample', 'Comment API Sample');
commentController.createCommentThread(vscode.window.activeTextEditor.document.uri, new vscode.Range(1, 1, 1, 1), [{
author: {
name: '蛋总'
},
body: '评论',
mode: vscode.CommentMode.Preview,
timestamp: new Date()
},
{
author: {
name: '蛋总'
},
body: '回复1',
mode: vscode.CommentMode.Preview,
timestamp: new Date()
}, {
author: {
name: '蛋总'
},
body: '回复2',
mode: vscode.CommentMode.Preview,
timestamp: new Date()
}]) |
Codecov ReportBase: 57.69% // Head: 57.66% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #1595 +/- ##
==========================================
- Coverage 57.69% 57.66% -0.03%
==========================================
Files 1254 1253 -1
Lines 78139 78168 +29
Branches 16328 16331 +3
==========================================
- Hits 45079 45077 -2
- Misses 30091 30122 +31
Partials 2969 2969
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
48a5f16
to
29ae657
Compare
29ae657
to
94e9e19
Compare
94e9e19
to
496f890
Compare
Types
Background or solution
resolve #1411
Changelog
implement comment timestamp