mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
update with comment in pr
This commit is contained in:
@@ -6,7 +6,7 @@ Description: Inserts code blocks at specific line positions in a file. This is t
|
|||||||
Parameters:
|
Parameters:
|
||||||
- path: (required) The path of the file to insert code into (relative to the current working directory ${args.cwd.toPosix()})
|
- path: (required) The path of the file to insert code into (relative to the current working directory ${args.cwd.toPosix()})
|
||||||
- operations: (required) A JSON array of insertion operations. Each operation is an object with:
|
- operations: (required) A JSON array of insertion operations. Each operation is an object with:
|
||||||
* start_line: (required) The line number where the code block should be inserted
|
* start_line: (required) The line number where the code block should be inserted. The content currently at that line will end up below the inserted code block.
|
||||||
* content: (required) The code block to insert at the specified position
|
* content: (required) The code block to insert at the specified position
|
||||||
Usage:
|
Usage:
|
||||||
<insert_code_block>
|
<insert_code_block>
|
||||||
|
|||||||
@@ -205,7 +205,7 @@ export function isToolAllowedForMode(
|
|||||||
const filePath = toolParams?.path
|
const filePath = toolParams?.path
|
||||||
if (
|
if (
|
||||||
filePath &&
|
filePath &&
|
||||||
(toolParams.diff || toolParams.content) &&
|
(toolParams.diff || toolParams.content || toolParams.operations) &&
|
||||||
!doesFileMatchRegex(filePath, options.fileRegex)
|
!doesFileMatchRegex(filePath, options.fileRegex)
|
||||||
) {
|
) {
|
||||||
throw new FileRestrictionError(mode.name, options.fileRegex, options.description, filePath)
|
throw new FileRestrictionError(mode.name, options.fileRegex, options.description, filePath)
|
||||||
|
|||||||
@@ -97,8 +97,6 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
|
|||||||
apiConfiguration,
|
apiConfiguration,
|
||||||
})
|
})
|
||||||
|
|
||||||
console.log("Experiments", experiments)
|
|
||||||
|
|
||||||
vscode.postMessage({
|
vscode.postMessage({
|
||||||
type: "updateExperimental",
|
type: "updateExperimental",
|
||||||
values: experiments,
|
values: experiments,
|
||||||
|
|||||||
Reference in New Issue
Block a user