Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/components/FloatingPromptInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ const FloatingPromptInputInner = (
const [cursorPosition, setCursorPosition] = useState(0);
const [embeddedImages, setEmbeddedImages] = useState<string[]>([]);
const [dragActive, setDragActive] = useState(false);
const [isComposing, setIsComposing] = useState(false);

const textareaRef = useRef<HTMLTextAreaElement>(null);
const expandedTextareaRef = useRef<HTMLTextAreaElement>(null);
Expand Down Expand Up @@ -679,7 +680,8 @@ const FloatingPromptInputInner = (
return;
}

if (e.key === "Enter" && !e.shiftKey && !isExpanded && !showFilePicker && !showSlashCommandPicker) {
const composing = (e as any).nativeEvent?.isComposing || isComposing || (e as any).keyCode === 229;
if (e.key === "Enter" && !e.shiftKey && !isExpanded && !showFilePicker && !showSlashCommandPicker && !composing) {
e.preventDefault();
handleSend();
}
Expand Down Expand Up @@ -834,6 +836,8 @@ const FloatingPromptInputInner = (
ref={expandedTextareaRef}
value={prompt}
onChange={handleTextChange}
onCompositionStart={() => setIsComposing(true)}
onCompositionEnd={() => setIsComposing(false)}
onPaste={handlePaste}
placeholder="Type your message..."
className="min-h-[200px] resize-none"
Expand Down Expand Up @@ -1157,6 +1161,8 @@ const FloatingPromptInputInner = (
value={prompt}
onChange={handleTextChange}
onKeyDown={handleKeyDown}
onCompositionStart={() => setIsComposing(true)}
onCompositionEnd={() => setIsComposing(false)}
onPaste={handlePaste}
placeholder={dragActive ? "Drop images here..." : "Message Claude (@ for files, / for commands)..."}
disabled={disabled}
Expand Down