File tree Expand file tree Collapse file tree 3 files changed +17
-11
lines changed
222/main/resources/META-INF
233/main/resources/META-INF Expand file tree Collapse file tree 3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 60
60
<bundleName >messages.AutoDevBundle</bundleName >
61
61
<categoryKey >intention.category.llm</categoryKey >
62
62
</autoDevIntention >
63
-
64
- <actions >
65
- <group id =" org.intellij.sdk.action.GroupedActions" popup =" true" text =" AutoDev Chat"
66
- description =" AutoDev chat" >
67
- <action id =" cc.unitmesh.idea.actions.GenTestDataAction"
68
- class =" cc.unitmesh.idea.actions.GenTestDataAction" text =" Generate Test Data (APIs)"
69
- description =" Ask AI write this code" >
70
- </action >
71
- </group >
72
- </actions >
73
63
</extensions >
74
64
75
65
<extensions defaultExtensionNs =" com.intellij" >
Original file line number Diff line number Diff line change 194
194
</group >
195
195
196
196
<!-- For right click -->
197
- <group id =" org.intellij.sdk.action.GroupedActions" popup =" true" text =" AutoDev Chat" description =" AutoDev chat" >
197
+ <!-- TODO: refactor to dynamic group: https://plugins.jetbrains.com/docs/intellij/grouping-action.html#adding-child-actions-to-the-dynamic-group -->
198
+ <group id =" AutoDevChatGroup" popup =" true" text =" AutoDev Chat" description =" AutoDev chat" >
198
199
<action id =" cc.unitmesh.devti.actions.chat.ExplainThisChatAction"
199
200
class =" cc.unitmesh.devti.actions.chat.ExplainThisChatAction" text =" Explain This"
200
201
description =" Ask AI about this code" >
215
216
description =" Ask AI write this code" >
216
217
</action >
217
218
219
+ <action id =" cc.unitmesh.idea.actions.GenTestDataAction"
220
+ class =" cc.unitmesh.idea.actions.GenTestDataAction" text =" Generate Test Data (APIs)"
221
+ description =" Ask AI generate test data" >
222
+
223
+ <add-to-group group-id =" GenerateGroup" anchor =" last" />
224
+ </action >
225
+
218
226
<add-to-group group-id =" EditorPopupMenu" anchor =" first" />
219
227
</group >
220
228
Original file line number Diff line number Diff line change 195
195
</group >
196
196
197
197
<!-- For right click -->
198
+ <!-- TODO: refactor to dynamic group: https://plugins.jetbrains.com/docs/intellij/grouping-action.html#adding-child-actions-to-the-dynamic-group -->
198
199
<group id =" org.intellij.sdk.action.GroupedActions" popup =" true" text =" AutoDev Chat" description =" AutoDev chat" >
199
200
<action id =" cc.unitmesh.devti.actions.chat.ExplainThisAction"
200
201
class =" cc.unitmesh.devti.actions.chat.ExplainThisAction" text =" Explain This"
216
217
description =" Ask AI write this code" >
217
218
</action >
218
219
220
+ <action id =" cc.unitmesh.idea.actions.GenTestDataAction"
221
+ class =" cc.unitmesh.idea.actions.GenTestDataAction" text =" Generate Test Data (APIs)"
222
+ description =" Ask AI generate test data" >
223
+
224
+ <add-to-group group-id =" GenerateGroup" anchor =" last" />
225
+ </action >
226
+
219
227
<add-to-group group-id =" EditorPopupMenu" anchor =" first" />
220
228
</group >
221
229
You can’t perform that action at this time.
0 commit comments