We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d11f44 commit 2f00058Copy full SHA for 2f00058
webview-ui/src/components/chat/ChatView.tsx
@@ -892,10 +892,10 @@ const ChatView = forwardRef<ChatViewRef, ChatViewProps>(
892
893
const placeholderText = useMemo(() => {
894
const baseText = task ? "Type a message..." : "Type your task here..."
895
- const contextText = "(@ to add context, / to switch modes"
+ const contextText = "(@ to add context, / to switch modes, hold shift to drag in files"
896
const imageText = shouldDisableImages
897
- ? "hold shift to drag in files"
898
- : ", hold shift to drag in files/images"
+ ? ""
+ : "/images"
899
return baseText + `\n${contextText}${imageText})`
900
}, [task, shouldDisableImages])
901
0 commit comments