summaryrefslogtreecommitdiff
path: root/continuedev
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-04 13:50:28 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-04 13:50:28 -0700
commitbd202df41755c581844d0ab1773ba55968b15450 (patch)
tree538a242811716e998395c78a9cbac6ad22a446f1 /continuedev
parent85826ae7e2ed5033e3756706953313d0d4490233 (diff)
downloadsncontinue-bd202df41755c581844d0ab1773ba55968b15450.tar.gz
sncontinue-bd202df41755c581844d0ab1773ba55968b15450.tar.bz2
sncontinue-bd202df41755c581844d0ab1773ba55968b15450.zip
feat: :children_crossing: more keyboard shortcuts
Diffstat (limited to 'continuedev')
-rw-r--r--continuedev/src/continuedev/libs/constants/default_config.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/continuedev/src/continuedev/libs/constants/default_config.py b/continuedev/src/continuedev/libs/constants/default_config.py
index 8526df21..73c8eeba 100644
--- a/continuedev/src/continuedev/libs/constants/default_config.py
+++ b/continuedev/src/continuedev/libs/constants/default_config.py
@@ -66,11 +66,13 @@ config = ContinueConfig(
# Custom commands let you map a prompt to a shortened slash command
# They are like slash commands, but more easily defined - write just a prompt instead of a Step class
# Their output will always be in chat form
- custom_commands=[CustomCommand(
- name="test",
- description="This is an example custom command. Use /config to edit it and create more",
- prompt="Write a comprehensive set of unit tests for the selected code. It should setup, run tests that check for correctness including important edge cases, and teardown. Ensure that the tests are complete and sophisticated. Give the tests just as chat output, don't edit any file.",
- )],
+ custom_commands=[
+ # CustomCommand(
+ # name="test",
+ # description="Write unit tests for the higlighted code",
+ # prompt="Write a comprehensive set of unit tests for the selected code. It should setup, run tests that check for correctness including important edge cases, and teardown. Ensure that the tests are complete and sophisticated. Give the tests just as chat output, don't edit any file.",
+ # )
+ ],
# Slash commands let you run a Step from a slash command
slash_commands=[
@@ -86,7 +88,7 @@ config = ContinueConfig(
),
SlashCommand(
name="config",
- description="Open the config file to create new and edit existing slash commands",
+ description="Customize Continue - slash commands, LLMs, system message, etc.",
step=OpenConfigStep,
),
SlashCommand(