File tree Expand file tree Collapse file tree 8 files changed +7
-33
lines changed
223/main/resources/META-INF
233/main/resources/META-INF
main/kotlin/cc/unitmesh/devti/provider/local
src/main/resources/META-INF Expand file tree Collapse file tree 8 files changed +7
-33
lines changed Original file line number Diff line number Diff line change @@ -257,7 +257,6 @@ project(":") {
257
257
pluginModule(implementation(project(" :goland" )))
258
258
pluginModule(implementation(project(" :rust" )))
259
259
260
- pluginModule(implementation(project(" :local-bundle" )))
261
260
pluginModule(implementation(project(" :exts:ext-database" )))
262
261
pluginModule(implementation(project(" :exts:ext-git" )))
263
262
pluginModule(implementation(project(" :exts:ext-http-client" )))
@@ -282,7 +281,6 @@ project(":") {
282
281
implementation(project(" :goland" ))
283
282
implementation(project(" :rust" ))
284
283
285
- implementation(project(" :local-bundle" ))
286
284
implementation(project(" :exts:ext-database" ))
287
285
implementation(project(" :exts:ext-git" ))
288
286
implementation(project(" :exts:ext-http-client" ))
@@ -665,18 +663,6 @@ project(":exts:ext-endpoints") {
665
663
implementation(project(" :core" ))
666
664
}
667
665
}
668
-
669
-
670
- project(" :local-bundle" ) {
671
- dependencies {
672
- intellijPlatform {
673
- intellijIde(prop(" ideaVersion" ))
674
- }
675
-
676
- implementation(project(" :core" ))
677
- }
678
- }
679
-
680
666
project(" :exts:ext-terminal" ) {
681
667
dependencies {
682
668
intellijPlatform {
Original file line number Diff line number Diff line change 1
1
<!-- Defines IDEA IDE-specific contributions and implementations. -->
2
2
<idea-plugin >
3
+ <extensions defaultExtensionNs =" cc.unitmesh" >
4
+ <jsonTextProvider implementation =" cc.unitmesh.devti.provider.local.LocalJsonTextProvider" />
5
+ </extensions >
3
6
</idea-plugin >
Original file line number Diff line number Diff line change 1
1
<!-- Defines IDEA IDE-specific contributions and implementations. -->
2
2
<idea-plugin >
3
+ <extensions defaultExtensionNs =" cc.unitmesh" >
4
+ <jsonTextProvider implementation =" cc.unitmesh.devti.provider.local.LocalJsonTextProvider" />
5
+ </extensions >
3
6
</idea-plugin >
Original file line number Diff line number Diff line change 1
- package cc.unitmesh.local .provider
1
+ package cc.unitmesh.devti .provider.local
2
2
3
3
import cc.unitmesh.devti.custom.schema.CUSTOM_AGENT_FILE_NAME
4
- import cc.unitmesh.devti.provider.local.JsonTextProvider
5
4
import com.intellij.lang.Language
6
5
import com.intellij.openapi.editor.Document
7
6
import com.intellij.openapi.editor.colors.EditorColorsUtil
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ include(
14
14
)
15
15
16
16
include(
17
- " local-bundle" ,
18
-
19
17
" exts:ext-database" ,
20
18
" exts:ext-terminal" ,
21
19
// git4idea is the git plugin for IntelliJ IDEA, so we rename it to `exts-git`
Original file line number Diff line number Diff line change 29
29
<module name =" cc.unitmesh.go" />
30
30
<module name =" cc.unitmesh.rust" />
31
31
<!-- <module name="cc.unitmesh.csharp"/>-->
32
- <module name =" cc.unitmesh.local" />
33
32
34
33
<!-- extension modules -->
35
34
<module name =" cc.unitmesh.database" />
You can’t perform that action at this time.
0 commit comments