Skip to content

Commit 71d3f78

Browse files
committed
optimize directory structure
1 parent 35a5c21 commit 71d3f78

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/kotlin/com/github/oldmegit/goframehelper/contributor/Completion.kt renamed to src/main/kotlin/com/github/oldmegit/goframehelper/contributor/go/Completion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.oldmegit.goframehelper.contributor
1+
package com.github.oldmegit.goframehelper.contributor.go
22

33
import com.github.oldmegit.goframehelper.completion.go.CompletionApiTag
44
import com.github.oldmegit.goframehelper.completion.go.CompletionCall

src/main/kotlin/com/github/oldmegit/goframehelper/contributor/Reference.kt renamed to src/main/kotlin/com/github/oldmegit/goframehelper/contributor/go/Reference.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.oldmegit.goframehelper.contributor
1+
package com.github.oldmegit.goframehelper.contributor.go
22

33
import com.github.oldmegit.goframehelper.provider.go.ReferenceCallBase
44
import com.goide.psi.GoCallExpr

src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
<defaultLiveTemplates file="liveTemplates/GoFrame.xml" />
1515

1616
<completion.contributor language="go"
17-
implementationClass="com.github.oldmegit.goframehelper.contributor.Completion" />
17+
implementationClass="com.github.oldmegit.goframehelper.contributor.go.Completion" />
18+
<psi.referenceContributor language="go" implementation="com.github.oldmegit.goframehelper.contributor.go.Reference"/>
1819

1920
<postStartupActivity implementation="com.github.oldmegit.goframehelper.startup.StartUp"/>
2021

@@ -24,7 +25,6 @@
2425

2526
<notificationGroup displayType="BALLOON" id="GoFrame Help Notify" />
2627

27-
<psi.referenceContributor language="go" implementation="com.github.oldmegit.goframehelper.contributor.Reference"/>
2828
</extensions>
2929

3030
<projectListeners>

0 commit comments

Comments
 (0)