Skip to content

Commit b8057dc

Browse files
committed
fix: links
1 parent 89b07e8 commit b8057dc

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

docs/customize/deep-dives/slash-commands.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords: [slash command, custom commands, step]
99
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.
1010
![slash-commands](/images/slash-commands.png)
1111

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.
1313

1414
<Note>
1515
**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/
2828

2929
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.
3030

31-
Learn more about prompt files [here](./prompts.mdx).
31+
Learn more about prompt files [here](./prompts).
3232

3333
### MCP Server prompts
3434

docs/reference/json-reference.mdx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ noindex: true
88
**This page documents deprecated functionality.** For creating slash commands and customizing Continue, please use:
99
- [Prompt blocks and prompt files](/customize/deep-dives/slash-commands) for slash commands
1010
- [config.yaml](/reference) for configuration
11-
</Warning>
1211

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>
1816

1917
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).
2018

@@ -476,16 +474,19 @@ Several experimental config parameters are available, as described below:
476474
- `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.=
477475

478476
- `modelRoles`:
477+
479478
- `inlineEdit`: Model title for inline edits.
480479
- `applyCodeBlock`: Model title for applying code blocks.
481480
- `repoMapFileSelection`: Model title for repo map selections.
482481

483482
- `quickActions`: Array of custom quick actions
483+
484484
- `title` (**required**): Display title for the quick action.
485485
- `prompt` (**required**): Prompt for quick action.
486486
- `sendToChat`: If `true`, sends result to chat; else inserts in document. Default is `false`.
487487

488488
- `contextMenuPrompts`:
489+
489490
- `comment`: Prompt for commenting code.
490491
- `docstring`: Prompt for adding docstrings.
491492
- `fix`: Prompt for fixing code.
@@ -537,15 +538,18 @@ Some deprecated `config.json` settings are no longer stored in config and have b
537538
- `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
538539

539540
- `tabAutocompleteOptions`
541+
540542
- `useCache`: This value will override during migration.
541543
- `disableInFiles`: This value will be migrated to the safest merged value (arrays of file matches merged/deduplicated)
542544
- `multilineCompletions`: This value will override during migration.
543545

544546
- `experimental`
547+
545548
- `useChromiumForDocsCrawling`: This value will override during migration.
546549
- `readResponseTTS`: This value will override during migration.
547550

548551
- `ui` - all will override during migration
552+
549553
- `codeBlockToolbarPosition`
550554
- `fontSize`
551555
- `codeWrap`

0 commit comments

Comments
 (0)