summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-15 11:36:13 -0700
committerGitHub <noreply@github.com>2023-06-15 11:36:13 -0700
commitcdd04fc41edc6af6321c6e992228a09210944634 (patch)
treee2a20544cfe316e1ca6f5c7471c85b7e98e047c1 /extension/react-app/src/components
parenta947148bb726cda4bff68605661680e6041b0094 (diff)
parent9cf110602621f80d0971f698ee40e7d73d0fa2b7 (diff)
downloadsncontinue-cdd04fc41edc6af6321c6e992228a09210944634.tar.gz
sncontinue-cdd04fc41edc6af6321c6e992228a09210944634.tar.bz2
sncontinue-cdd04fc41edc6af6321c6e992228a09210944634.zip
Merge pull request #98 from continuedev/slash-commands
adds /edit and /explain commands
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r--extension/react-app/src/components/ComboBox.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/components/ComboBox.tsx b/extension/react-app/src/components/ComboBox.tsx
index 11d04974..ace0605e 100644
--- a/extension/react-app/src/components/ComboBox.tsx
+++ b/extension/react-app/src/components/ComboBox.tsx
@@ -105,7 +105,7 @@ const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {
<div className="flex px-2" ref={divRef} hidden={!isOpen}>
<MainTextInput
disabled={props.disabled}
- placeholder="Type instructions or a question. Highlighted code / the open file are used as context."
+ placeholder="Type '/' to see the list of available slash commands..."
{...getInputProps({
onKeyDown: (event) => {
if (event.key === "Enter" && (!isOpen || items.length === 0)) {