Skip to content

Commit a63fc2a

Browse files
committed
Fix trigger char for completion proposals in properties YAML
1 parent 86af018 commit a63fc2a

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

vscode-extensions/vscode-spring-boot/package.json

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"./jars/sts-gradle-tooling.jar"
4040
],
4141
"languages": [
42-
{
42+
{
4343
"id": "spring-boot-properties-yaml",
4444
"aliases": [
4545
"Spring Boot Properties Yaml"
@@ -1297,7 +1297,29 @@
12971297
"scopeName": "source.spring-factories",
12981298
"path": "./properties-support/spring-factories.tmLanguage.json"
12991299
}
1300-
]
1300+
],
1301+
"configurationDefaults": {
1302+
"[spring-boot-properties-yaml]": {
1303+
"editor.quickSuggestions": {
1304+
"strings": true
1305+
}
1306+
},
1307+
"[spring-boot-properties]": {
1308+
"editor.quickSuggestions": {
1309+
"strings": true
1310+
}
1311+
},
1312+
"[jpa-query-properties]": {
1313+
"editor.quickSuggestions": {
1314+
"strings": true
1315+
}
1316+
},
1317+
"[spring-factories]": {
1318+
"editor.quickSuggestions": {
1319+
"strings": true
1320+
}
1321+
}
1322+
}
13011323
},
13021324
"main": "./out/lib/Main",
13031325
"scripts": {

0 commit comments

Comments
 (0)