gravatar, title bar for comment thread, show comment titles when file opened.

This commit is contained in:
Peng Lyu
2018-04-06 15:40:48 -07:00
parent 88ac101230
commit 105ba504ad
9 changed files with 260 additions and 39 deletions

View File

@@ -72,6 +72,7 @@ function convertCommentThread(vscodeCommentThread: vscode.CommentThread): modes.
function convertComment(vscodeComment: vscode.Comment): modes.Comment {
return {
body: extHostTypeConverter.MarkdownString.from(vscodeComment.body),
userName: vscodeComment.userName
userName: vscodeComment.userName,
gravatar: vscodeComment.gravatar
};
}