Skip to content

Commit

Permalink
fix(editor): fix TypeOverHandler package name #109
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
phodal committed Mar 20, 2024
1 parent f65c1f4 commit a6a04ce
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/222/main/resources/META-INF/autodev-core.xml
Expand Up @@ -65,7 +65,7 @@
key="name"/>
<!-- <editorFactoryListener implementation="cc.unitmesh.devti.editor.inlay.AutoDevEditorListener"/>-->
<!-- <typedHandler order="first, before completionAutoPopup"-->
<!-- implementation="cc.unitmesh.devti.editor.inlay.TypeOverHandler"/>-->
<!-- implementation="cc.unitmesh.devti.inlay.TypeOverHandler"/>-->

<intentionAction>
<className>cc.unitmesh.devti.intentions.AutoDevIntentionHelper</className>
Expand Down
2 changes: 1 addition & 1 deletion src/233/main/resources/META-INF/autodev-core.xml
Expand Up @@ -34,7 +34,7 @@
serviceImplementation=" com.intellij.temporary.inlay.codecomplete.LLMInlayManagerImpl"/>

<typedHandler order="first, before completionAutoPopup"
implementation="cc.unitmesh.devti.editor.inlay.TypeOverHandler"/>
implementation="cc.unitmesh.devti.inlay.TypeOverHandler"/>


<statusBarWidgetFactory id="AIAssistant"
Expand Down
@@ -1,4 +1,5 @@
package com.intellij.temporary.inlay.codecomplete
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package cc.unitmesh.devti.inlay

import com.intellij.codeInsight.editorActions.TypedHandlerDelegate
import com.intellij.openapi.command.CommandProcessor
Expand Down
@@ -1,5 +1,6 @@
package com.intellij.temporary.inlay.codecomplete

import cc.unitmesh.devti.inlay.TypeOverHandler
import com.intellij.openapi.command.CommandProcessor
import com.intellij.openapi.editor.Editor
import com.intellij.openapi.editor.event.*
Expand Down

0 comments on commit a6a04ce

Please sign in to comment.