[vscode-spring-cli] Experimental guide apply --lsp-edit support

This commit is contained in:
aboyko
2024-02-02 20:42:27 -05:00
parent 2b443c7106
commit 9445e28e83
5 changed files with 188 additions and 17 deletions

View File

@@ -36,6 +36,11 @@
"when": "resourceFilename =~ /README-\\S+.md/",
"command": "vscode-spring-cli.guide.apply",
"group": "Spring-CLI"
},
{
"when": "resourceFilename =~ /README-\\S+.md/",
"command": "vscode-spring-cli.guide.run",
"group": "Spring-CLI"
}
],
"explorer/context": [
@@ -48,6 +53,11 @@
"when": "resourceFilename =~ /README-\\S+.md/",
"command": "vscode-spring-cli.guide.apply",
"group": "Spring-CLI"
},
{
"when": "resourceFilename =~ /README-\\S+.md/",
"command": "vscode-spring-cli.guide.run",
"group": "Spring-CLI"
}
]
},
@@ -111,6 +121,11 @@
"command": "vscode-spring-cli.guide.apply",
"title": "Apply Guide",
"category": "Spring CLI"
},
{
"command": "vscode-spring-cli.guide.run",
"title": "Run Guide",
"category": "Spring CLI"
}
],
"configuration": {
@@ -158,6 +173,7 @@
"vsce-pre-release-package": "vsce package --pre-release"
},
"dependencies": {
"vscode-languageclient": "^9.0.1",
"lodash.debounce": "^4.0.8",
"js-yaml": "^4.1.0"
},