We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 984f5bc commit eb099c9Copy full SHA for eb099c9
1 file changed
src/views/components/InputMessage/index.tsx
@@ -188,6 +188,12 @@ const InputMessage = observer((props: any) => {
188
input.updateCommands(message.result);
189
}
190
);
191
+ messageUtil.registerHandler(
192
+ "chatWithDevChat",
193
+ (message: { command: string; message: string }) => {
194
+ chat.commonMessage(message.message, []);
195
+ }
196
+ );
197
messageUtil.registerHandler(
198
"appendContext",
199
(message: { command: string; context: string }) => {
0 commit comments