Skip to content

Commit

Permalink
add commit characters to explain mode, #110382
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Nov 11, 2020
1 parent efef7c1 commit 87fd567
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vs/editor/contrib/suggest/suggestWidgetDetails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export class SuggestDetailsWidget {
md += `score: ${item.score[0]}${item.word ? `, compared '${item.completion.filterText && (item.completion.filterText + ' (filterText)') || item.completion.label}' with '${item.word}'` : ' (no prefix)'}\n`;
md += `distance: ${item.distance}, see localityBonus-setting\n`;
md += `index: ${item.idx}, based on ${item.completion.sortText && `sortText: "${item.completion.sortText}"` || 'label'}\n`;
md += `commit characters: ${item.completion.commitCharacters}\n`;
documentation = new MarkdownString().appendCodeblock('empty', md);
detail = `Provider: ${item.provider._debugDisplayName}`;
}
Expand Down

0 comments on commit 87fd567

Please sign in to comment.