From 784c00cd693d43ac77059ecf7dd01ac46e9856d6 Mon Sep 17 00:00:00 2001 From: Ty Dunn Date: Mon, 18 Sep 2023 17:16:36 -0700 Subject: updating placeholder text and color (#486) --- continuedev/src/continuedev/plugins/policies/default.py | 5 ++--- extension/react-app/src/components/ComboBox.tsx | 2 +- extension/react-app/src/components/index.ts | 2 +- extension/src/commands.ts | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/continuedev/src/continuedev/plugins/policies/default.py b/continuedev/src/continuedev/plugins/policies/default.py index 85d8c528..ea3541e3 100644 --- a/continuedev/src/continuedev/plugins/policies/default.py +++ b/continuedev/src/continuedev/plugins/policies/default.py @@ -70,10 +70,9 @@ class DefaultPolicy(Policy): name="Welcome to Continue", message=dedent( """\ - - Highlight code section and ask a question or give instructions + - Highlight code section and ask a question or use `/edit` - Use `cmd+m` (Mac) / `ctrl+m` (Windows) to open Continue - - Use `/help` to ask questions about how to use Continue - - [Customize Continue](https://continue.dev/docs/customization) (e.g. use your own API key) by typing '/config'.""" + - [Customize Continue](https://continue.dev/docs/customization) by typing '/config' (e.g. use your own API key) """ ), ) >> StepsOnStartupStep() diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx index a91edaca..48df368b 100644 --- a/extension/react-app/src/components/ComboBox.tsx +++ b/extension/react-app/src/components/ComboBox.tsx @@ -648,7 +648,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => { typeof inQueryForContextProvider !== "undefined" } disabled={props.disabled} - placeholder={`Ask a question, give instructions, type '/' for slash commands, or '@' to add context`} + placeholder={`Ask a question, type '/' for slash commands, or '@' to add context`} {...getInputProps({ onCompositionStart: () => setIsComposing(true), onCompositionEnd: () => setIsComposing(false), diff --git a/extension/react-app/src/components/index.ts b/extension/react-app/src/components/index.ts index 1f418c94..557a7479 100644 --- a/extension/react-app/src/components/index.ts +++ b/extension/react-app/src/components/index.ts @@ -2,7 +2,7 @@ import { Tooltip } from "react-tooltip"; import styled, { keyframes } from "styled-components"; export const defaultBorderRadius = "5px"; -export const lightGray = "#646464"; +export const lightGray = "#cfcccc"; // export const secondaryDark = "rgb(45 45 45)"; // export const vscBackground = "rgb(30 30 30)"; export const vscBackgroundTransparent = "#1e1e1ede"; diff --git a/extension/src/commands.ts b/extension/src/commands.ts index 7d190634..479e8db0 100644 --- a/extension/src/commands.ts +++ b/extension/src/commands.ts @@ -48,7 +48,7 @@ const commandsMap: { [command: string]: (...args: any) => any } = { "continue.quickTextEntry": async () => { const text = await vscode.window.showInputBox({ placeHolder: - "Ask a question, give instructions, or enter a slash command", + "Ask a question or enter a slash command", title: "Continue Quick Input", }); if (text) { -- cgit v1.2.3-70-g09d2