You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slash commands are shortcuts that can be activated by typing '/' in a chat session (press <kbd>cmd/ctrl</kbd> + <kbd>L</kbd> (VS Code) or <kbd>cmd/ctrl</kbd> + <kbd>J</kbd> (JetBrains)), and selecting from the dropdown.
10
10

11
11
12
-
Slash commands can be combined with additional instructions, including [context providers](../custom-providers.mdx) or highlighted code.
12
+
Slash commands can be combined with additional instructions, including [context providers](../custom-providers) or highlighted code.
13
13
14
14
<Note>
15
15
**Recommended approach**: Use prompt files to create slash commands instead of
@@ -28,7 +28,7 @@ The easiest way to add a slash command is by adding [`prompt` blocks](../../hub/
28
28
29
29
It is also possible to write your own slash command by defining a “.prompt file.” Prompt files can be as simple as a text file, but also include templating so that you can refer to files, URLs, highlighted code, and more.
30
30
31
-
Learn more about prompt files [here](./prompts.mdx).
Copy file name to clipboardExpand all lines: docs/reference/json-reference.mdx
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,11 @@ noindex: true
8
8
**This page documents deprecated functionality.** For creating slash commands and customizing Continue, please use:
9
9
-[Prompt blocks and prompt files](/customize/deep-dives/slash-commands) for slash commands
10
10
-[config.yaml](/reference) for configuration
11
-
</Warning>
12
11
13
-
<Info>
14
-
We recently introduced a new configuration format, `config.yaml`, to replace
15
-
`config.json`. See the `config.yaml` reference and migration guide
16
-
[here](/reference).
17
-
</Info>
12
+
See the `config.yaml` reference and migration guide
13
+
[here](/reference).
14
+
15
+
</Warning>
18
16
19
17
Below are details for each property that can be set in `config.json`. The config schema code is found in [`extensions/vscode/config_schema.json`](https://github.com/continuedev/continue/blob/main/extensions/vscode/config_schema.json).
20
18
@@ -476,16 +474,19 @@ Several experimental config parameters are available, as described below:
476
474
-`defaultContext`: Defines the default context for the LLM. Uses the same format as `contextProviders` but includes an additional `query` property to specify custom query parameters.=
477
475
478
476
-`modelRoles`:
477
+
479
478
-`inlineEdit`: Model title for inline edits.
480
479
-`applyCodeBlock`: Model title for applying code blocks.
481
480
-`repoMapFileSelection`: Model title for repo map selections.
482
481
483
482
-`quickActions`: Array of custom quick actions
483
+
484
484
-`title` (**required**): Display title for the quick action.
485
485
-`prompt` (**required**): Prompt for quick action.
486
486
-`sendToChat`: If `true`, sends result to chat; else inserts in document. Default is `false`.
487
487
488
488
-`contextMenuPrompts`:
489
+
489
490
-`comment`: Prompt for commenting code.
490
491
-`docstring`: Prompt for adding docstrings.
491
492
-`fix`: Prompt for fixing code.
@@ -537,15 +538,18 @@ Some deprecated `config.json` settings are no longer stored in config and have b
537
538
-`disableSessionTitles`/`ui.getChatTitles`: This value will be migrated to the safest merged value (`true` if either are `true`). `getChatTitles` takes precedence if set to false
538
539
539
540
-`tabAutocompleteOptions`
541
+
540
542
-`useCache`: This value will override during migration.
541
543
-`disableInFiles`: This value will be migrated to the safest merged value (arrays of file matches merged/deduplicated)
542
544
-`multilineCompletions`: This value will override during migration.
543
545
544
546
-`experimental`
547
+
545
548
-`useChromiumForDocsCrawling`: This value will override during migration.
546
549
-`readResponseTTS`: This value will override during migration.
0 commit comments