Skip to content

Commit a6a04ce

Browse files
committed
fix(editor): fix TypeOverHandler package name #109
Change in package name caused inconsistencies in file imports, updated package name to align with the changes made. - Updated TypeOverHandler's package name from com.intellij.temporary.inlay.codecomplete to cc.unitmesh.devti.inlay. This ensures consistent imports after renaming the file.
1 parent f65c1f4 commit a6a04ce

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/222/main/resources/META-INF/autodev-core.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
key="name"/>
6666
<!-- <editorFactoryListener implementation="cc.unitmesh.devti.editor.inlay.AutoDevEditorListener"/>-->
6767
<!-- <typedHandler order="first, before completionAutoPopup"-->
68-
<!-- implementation="cc.unitmesh.devti.editor.inlay.TypeOverHandler"/>-->
68+
<!-- implementation="cc.unitmesh.devti.inlay.TypeOverHandler"/>-->
6969

7070
<intentionAction>
7171
<className>cc.unitmesh.devti.intentions.AutoDevIntentionHelper</className>

src/233/main/resources/META-INF/autodev-core.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
serviceImplementation=" com.intellij.temporary.inlay.codecomplete.LLMInlayManagerImpl"/>
3535

3636
<typedHandler order="first, before completionAutoPopup"
37-
implementation="cc.unitmesh.devti.editor.inlay.TypeOverHandler"/>
37+
implementation="cc.unitmesh.devti.inlay.TypeOverHandler"/>
3838

3939

4040
<statusBarWidgetFactory id="AIAssistant"

src/main/kotlin/com/intellij/temporary/inlay/codecomplete/TypeOverHandler.kt renamed to src/main/kotlin/cc/unitmesh/devti/inlay/TypeOverHandler.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
package com.intellij.temporary.inlay.codecomplete
1+
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
2+
package cc.unitmesh.devti.inlay
23

34
import com.intellij.codeInsight.editorActions.TypedHandlerDelegate
45
import com.intellij.openapi.command.CommandProcessor

src/main/kotlin/com/intellij/temporary/inlay/codecomplete/AutoDevEditorListener.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.intellij.temporary.inlay.codecomplete
22

3+
import cc.unitmesh.devti.inlay.TypeOverHandler
34
import com.intellij.openapi.command.CommandProcessor
45
import com.intellij.openapi.editor.Editor
56
import com.intellij.openapi.editor.event.*

0 commit comments

Comments
 (0)