[vscode-spring-cli] Basic AI command support

This commit is contained in:
aboyko
2024-01-27 23:51:23 -05:00
parent 48fcde87e3
commit cebd63c697
7 changed files with 171 additions and 29 deletions

View File

@@ -31,6 +31,11 @@
"when": "resourceFilename == pom.xml",
"command": "vscode-spring-cli.boot.add",
"group": "Spring-CLI"
},
{
"when": "resourceFilename =~ /README-\\S+.md/",
"command": "vscode-spring-cli.guide.apply",
"group": "Spring-CLI"
}
],
"explorer/context": [
@@ -38,6 +43,11 @@
"when": "resourceFilename == pom.xml",
"command": "vscode-spring-cli.boot.add",
"group": "Spring-CLI"
},
{
"when": "resourceFilename =~ /README-\\S+.md/",
"command": "vscode-spring-cli.guide.apply",
"group": "Spring-CLI"
}
]
},
@@ -91,6 +101,16 @@
"command": "vscode-spring-cli.command.execute",
"title": "Execute User Defined Command",
"category": "Spring CLI"
},
{
"command": "vscode-spring-cli.ai.add",
"title": "Add from AI",
"category": "Spring CLI"
},
{
"command": "vscode-spring-cli.guide.apply",
"title": "Apply Guide",
"category": "Spring CLI"
}
],
"configuration": {