forked from continuedev/continue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit d71f4f7 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Aesthetic tweaks to output format commit 2565fa4 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Ensure adjacent codeblocks separated by newline commit b82ccb7 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Tidy regex to capture filename commit 7e0b4e4 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Tidy regex to capture filename commit 3380620 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Reformat markdown code blocks Currently, user-selected code blocks are formatted with range in file (rif) info on the same line as the triple backticks, which means that when exported to markdown they don't have the language info needed on that line for syntax highlighting. This update moves the rif info to the following line as a comment in the language of the file and with the language info in the correct place. Before: ```example.ts (3-6) function fib(n) { if (n <= 1) return n; return fib(n - 2) + fib(n - 1); } ``` After: ```ts // example.ts (3-6) function fib(n) { if (n <= 1) return n; return fib(n - 2) + fib(n - 1); } ``` commit 81103ff Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Consolidate to single replace regex commit 7d697d5 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Change "Continue" to "Assistant" in export commit 41b9ef0 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Create user-specified directory if necessary commit ca44dd4 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Ensure replacement only at start of string commit 5f6077d Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Add description of outputDir param for /share commit 91d92ab Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Use `.`, `./`, or `.\` for current workspace commit e44ea2b Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Add datetimestamp to exported session filename commit 10b4701 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Add ability to specify workspace for /share commit 618906a Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Enable basic tilde expansion for /share outputDir commit fadf70e Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Add outputDir param to /share commit faabd38 Author: Peter Zaback <[email protected]> Date: Fri Apr 19 14:29:30 2024 -0500 Fix slash command params loading Existing slash commands expect an object named "params" so mapping to "options" here caused params to be undefined within the run scope. I renamed from 'm' to 's' just to avoid potential confusion with the model property mapping above. commit 1cb0455 Author: Nate Sesti <[email protected]> Date: Fri Apr 19 10:39:27 2024 -0700 🩹 use title for autodetect commit 6a5c4ec Author: Nate Sesti <[email protected]> Date: Fri Apr 19 10:12:08 2024 -0700 🩹 look for bedrock credentials in homedir commit 388df20 Author: Nate Sesti <[email protected]> Date: Thu Apr 18 15:35:17 2024 -0700 🩹 set default useLegacyCompletionsEndpoint to undefined commit 245936e Author: Roger Meier <[email protected]> Date: Thu Apr 18 22:00:07 2024 +0200 📝 useLegacyCompletionsEndpoint within OpenAI docs commit 514a642 Author: Roger Meier <[email protected]> Date: Thu Apr 18 21:42:32 2024 +0200 🐛 set supportsCompletions based on useLegacyCompletionsEndpoint model setting Closes continuedev#1132
- Loading branch information
Showing
10 changed files
with
129 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": false | ||
"useTabs": false, | ||
"trailingComma": "all" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters