Skip to content

Commit

Permalink
Fix trigger char for completion proposals in properties YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
BoykoAlex committed Oct 2, 2024
1 parent 86af018 commit a63fc2a
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions vscode-extensions/vscode-spring-boot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"./jars/sts-gradle-tooling.jar"
],
"languages": [
{
{
"id": "spring-boot-properties-yaml",
"aliases": [
"Spring Boot Properties Yaml"
Expand Down Expand Up @@ -1297,7 +1297,29 @@
"scopeName": "source.spring-factories",
"path": "./properties-support/spring-factories.tmLanguage.json"
}
]
],
"configurationDefaults": {
"[spring-boot-properties-yaml]": {
"editor.quickSuggestions": {
"strings": true
}
},
"[spring-boot-properties]": {
"editor.quickSuggestions": {
"strings": true
}
},
"[jpa-query-properties]": {
"editor.quickSuggestions": {
"strings": true
}
},
"[spring-factories]": {
"editor.quickSuggestions": {
"strings": true
}
}
}
},
"main": "./out/lib/Main",
"scripts": {
Expand Down

0 comments on commit a63fc2a

Please sign in to comment.