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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
## [2.1.14]
4
4
5
5
- Fix bug where diffs were not being applied correctly and try Aider's [unified diff prompt](https://github.com/Aider-AI/aider/blob/3995accd0ca71cea90ef76d516837f8c2731b9fe/aider/coders/udiff_prompts.py#L75-L105)
6
+
- If diffs are enabled, automatically reject write_to_file commands that lead to truncated output
6
7
7
8
## [2.1.13]
8
9
@@ -51,4 +52,4 @@
51
52
## [2.1.2]
52
53
53
54
- Support for auto-approval of write operations and command execution
"Content appears to be truncated. Found comments indicating omitted code (e.g., '// rest of code unchanged', '/* previous code */'). Please provide the complete file content without any omissions if possible, or otherwise use the 'apply_diff' tool to apply the diff to the original file."
1111
+
))
1112
+
break
1113
+
}else{
1114
+
vscode.window
1115
+
.showWarningMessage(
1116
+
"Potential code truncation detected. This happens when the AI reaches its max output limit.",
1117
+
"Follow this guide to fix the issue",
1118
+
)
1119
+
.then((selection)=>{
1120
+
if(selection==="Follow this guide to fix the issue"){
0 commit comments