Skip to content

Commit c0f65be

Browse files
Flanker-MSFTFlanker-MSFT
authored andcommitted
Fix duplicated action id issue for lsp support
1 parent 1dbff63 commit c0f65be

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-bicep/src/main/resources/META-INF/azure-intellij-plugin-bicep.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,30 @@
2828
id="org.wso2.lsp4intellij.contributors.LSPCompletionContributor" language="any"/>
2929
<!-- needed for completion as well as signature help -->
3030
<typedHandler implementation="org.wso2.lsp4intellij.listeners.LSPTypedHandler"
31-
id="LSPTypedHandler"/>
31+
id="Azure.LSPTypedHandler"/>
3232

3333
<!-- needed for code diagnostics -->
34-
<externalAnnotator id="LSPAnnotator" language="TEXT"
34+
<externalAnnotator id="Azure.LSPAnnotator" language="TEXT"
3535
implementationClass="org.wso2.lsp4intellij.contributors.annotator.LSPAnnotator"/>
3636

3737
<!-- needed for Workspace Symbols -->
3838
<gotoSymbolContributor implementation="org.wso2.lsp4intellij.contributors.symbol.LSPSymbolContributor"
39-
id="LSPSymbolContributor"/>
39+
id="Azure.LSPSymbolContributor"/>
4040

4141
<!-- needed for renaming -->
42-
<renameHandler implementation="org.wso2.lsp4intellij.contributors.rename.LSPRenameHandler" id="LSPRenameHandler" order="first"/>
43-
<renamePsiElementProcessor implementation="org.wso2.lsp4intellij.contributors.rename.LSPRenameProcessor" id="LSPRenameProcessor" order="first"/>
42+
<renameHandler implementation="org.wso2.lsp4intellij.contributors.rename.LSPRenameHandler" id="Azure.LSPRenameHandler" order="first"/>
43+
<renamePsiElementProcessor implementation="org.wso2.lsp4intellij.contributors.rename.LSPRenameProcessor" id="Azure.LSPRenameProcessor" order="first"/>
4444
</extensions>
4545

4646
<actions>
4747
<!-- needed for hover -->
4848
<action id="org.intellij.sdk.action.QuickDocAction" class="org.wso2.lsp4intellij.actions.LSPQuickDocAction" text="Show Quick Doc"/>
49-
<action class="org.wso2.lsp4intellij.actions.LSPGotoDeclarationAction" id="GotoDeclaration" use-shortcut-of="GotoDeclaration"
49+
<action class="org.wso2.lsp4intellij.actions.LSPGotoDeclarationAction" id="Azure.GotoDeclaration" use-shortcut-of="GotoDeclaration"
5050
overrides="true" text="Go to Declaration or Usages"/>
51-
<action class="org.wso2.lsp4intellij.actions.LSPReformatAction" id="ReformatCode" use-shortcut-of="ReformatCode"
51+
<action class="org.wso2.lsp4intellij.actions.LSPReformatAction" id="Azure.ReformatCode" use-shortcut-of="ReformatCode"
5252
overrides="true" text="Reformat Code" />
5353
<!-- needed for find references -->
54-
<action class="org.wso2.lsp4intellij.actions.LSPReferencesAction" id="LSPFindUsages" text="Find Usages">
54+
<action class="org.wso2.lsp4intellij.actions.LSPReferencesAction" id="Azure.LSPFindUsages" text="Find Usages">
5555
<keyboard-shortcut first-keystroke="shift alt F7" keymap="$default"/>
5656
</action>
5757
</actions>

0 commit comments

Comments
 (0)