We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa27321 + a0ce7cb commit b18b9eaCopy full SHA for b18b9ea
1 file changed
src/views/components/InputMessage/index.tsx
@@ -194,6 +194,12 @@ const InputMessage = observer((props: any) => {
194
chat.commonMessage(message.message, []);
195
}
196
);
197
+ messageUtil.registerHandler(
198
+ "focusDevChatInput",
199
+ (message: { command: string; message: string }) => {
200
+ inputRef.current.focus();
201
+ }
202
+ );
203
messageUtil.registerHandler(
204
"appendContext",
205
(message: { command: string; context: string }) => {
0 commit comments