-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Open
Labels
area:applyide:vscodeRelates specifically to VS Code extensionRelates specifically to VS Code extensionkind:bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behavioros:windowsHappening specifically on WindowsHappening specifically on Windows
Description
Before submitting your bug report
- I've tried using the "Ask AI" feature on the Continue docs site to see if the docs have an answer
- I believe this is a bug. I'll try to join the Continue Discord for questions
- I'm not able to find an open issue that reports the same bug
- I've seen the troubleshooting guide on the Continue Docs
Relevant environment info
- OS: Windows 11
- Continue version: pre-release 1.1.71 2025-07-31 18:38:21
- IDE version: 1.102.35058 (VSCodium)
- Model: meta-llama/llama-4-scout-17b-16e-instruct
- config:
name: Local Assistant
version: 1.0.0
schema: v1
models:
- name: Autodetect
provider: groq
model: AUTODETECT
apiKey: ...
context:
- provider: code
- provider: docs
- provider: diff
- provider: terminal
- provider: problems
- provider: folder
- provider: codebase
Description
When I apply code changes from the chat window, some spaces are swallowed.
To reproduce
- Create a new file
main.c
with the following input:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int total = 1000000;
int inside = 0;
srand(time(0));
for (int i = 0; i < total; i++) {
double x = (double)rand() / RAND_MAX;
double y = (double)rand() / RAND_MAX;
if (x * x + y * y <= 1)
inside++;
}
double pi = 4.0 * inside / total;
printf("Estimated pi: %f\n", pi);
}
- Prompt:
format code by logical separation
. - Apply the replied code.
- You should see that space characters after
=
are gone from the reply

Here is the reply:

Log output
N/A
Metadata
Metadata
Assignees
Labels
area:applyide:vscodeRelates specifically to VS Code extensionRelates specifically to VS Code extensionkind:bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behavioros:windowsHappening specifically on WindowsHappening specifically on Windows
Type
Projects
Status
Todo