Skip to content

Commit a268363

Browse files
authored
Reduce default C++ inlay hint font size 12 to match VS and potentially reduce confusion (#9480)
* Reduce default inlay hint font size to 12 match VS and reduce confusion.
1 parent 590923c commit a268363

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Extension/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4034,17 +4034,20 @@
40344034
"[cpp]": {
40354035
"editor.wordBasedSuggestions": false,
40364036
"editor.suggest.insertMode": "replace",
4037-
"editor.semanticHighlighting.enabled": true
4037+
"editor.semanticHighlighting.enabled": true,
4038+
"editor.inlayHints.fontSize": 12
40384039
},
40394040
"[cuda-cpp]": {
40404041
"editor.wordBasedSuggestions": false,
40414042
"editor.suggest.insertMode": "replace",
4042-
"editor.semanticHighlighting.enabled": true
4043+
"editor.semanticHighlighting.enabled": true,
4044+
"editor.inlayHints.fontSize": 12
40434045
},
40444046
"[c]": {
40454047
"editor.wordBasedSuggestions": false,
40464048
"editor.suggest.insertMode": "replace",
4047-
"editor.semanticHighlighting.enabled": true
4049+
"editor.semanticHighlighting.enabled": true,
4050+
"editor.inlayHints.fontSize": 12
40484051
}
40494052
},
40504053
"semanticTokenTypes": [

0 commit comments

Comments
 (0)