[ai-completion] LLM-16686 move editor typed handler registration to the inline-completion module

GitOrigin-RevId: 98654d57d7a03ff9818533b5c35cdbfef82cfd8d
This commit is contained in:
Roman Chertishchev
2025-06-20 20:07:28 +02:00
committed by intellij-monorepo-bot
parent d639828076
commit 946d961fe8
2 changed files with 3 additions and 2 deletions

View File

@@ -9,6 +9,9 @@
description="Use Rhizome DB for inline completion implementation in RemDev"
restartRequired="true"
defaultValue="true"/>
<editorTypedHandler implementationClass="com.intellij.codeInsight.inline.completion.InlineCompletionTypedHandler"
id="inline.completion" order="after lookup"/>
</extensions>
<extensionPoints>

View File

@@ -922,8 +922,6 @@
order="after hide-hints" id="hide-search"/>
<editorTypedHandler implementationClass="com.intellij.codeInsight.lookup.impl.LookupTypedHandler" id="lookup"/>
<editorTypedHandler implementationClass="com.intellij.codeInsight.inline.completion.InlineCompletionTypedHandler"
id="inline.completion" order="after lookup"/>
<typedHandler implementation="com.intellij.codeInsight.editorActions.CompletionAutoPopupHandler" id="completionAutoPopup"
order="first"/>
<typedHandler implementation="com.intellij.codeInsight.editorActions.SelectionQuotingTypedHandler" id="selectionQuoting"/>