You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -573,6 +573,22 @@
573
573
"markdownDescription": "Enable/disable postfix completion support. `#editor.snippetSuggestions#` can be used to customize how postfix snippets are sorted.",
574
574
"scope": "window"
575
575
},
576
+
"java.completion.matchCase": {
577
+
"type": "string",
578
+
"enum": [
579
+
"auto",
580
+
"firstLetter",
581
+
"off"
582
+
],
583
+
"enumDescriptions": [
584
+
"Only match case for the first letter when using Visual Studio Code - Insiders.",
585
+
"Match case for the first letter when doing completion.",
586
+
"Do not match case when doing completion."
587
+
],
588
+
"default": "auto",
589
+
"markdownDescription": "Specify whether to match case for code completion.",
0 commit comments