Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

edits stops in the middle of doing fixes. #3836

Open
NejcZorko007 opened this issue Jan 7, 2025 · 5 comments
Open

edits stops in the middle of doing fixes. #3836

NejcZorko007 opened this issue Jan 7, 2025 · 5 comments
Assignees
Labels
edit-generation info-needed Issue requires more information from poster

Comments

@NejcZorko007
Copy link

Type: Bug

So i am using the Copilot to code with and when i try to tell him to fix something, he gets to like 25% or so and then he just skip to 99% and no changes were done.

Extension version: 0.23.2
VS Code version: Code 1.96.2 (fabdb6a30b49f79a7aba0f2ad9df9b399473380f, 2024-12-19T10:22:47.216Z)
OS version: Windows_NT x64 10.0.26100
Modes:

@github-actions github-actions bot added the triage-needed Issues needing to be assigned to the prospective feature owner label Jan 7, 2025
@aeschli
Copy link

aeschli commented Jan 8, 2025

Is this with edits, or inline chat?

@aeschli aeschli added the info-needed Issue requires more information from poster label Jan 8, 2025
@NejcZorko007
Copy link
Author

with edits.

@vs-code-engineering vs-code-engineering bot removed the triage-needed Issues needing to be assigned to the prospective feature owner label Jan 9, 2025
@aeschli aeschli added triage-needed Issues needing to be assigned to the prospective feature owner edit-generation and removed info-needed Issue requires more information from poster triage-needed Issues needing to be assigned to the prospective feature owner labels Jan 9, 2025
@aeschli aeschli changed the title It stops in the middle of doing fixes. edits stops in the middle of doing fixes. Jan 9, 2025
@joyceerhl
Copy link

Can you please share the files you're editing and the prompts you use? A screen recording would also help so we can try to reproduce the issue

@joyceerhl joyceerhl added the info-needed Issue requires more information from poster label Jan 10, 2025
@NejcZorko007
Copy link
Author

well, i don't have / i tried to reproduce the issue but, i have home screneshots. So basicly, i would ask it if it could fix a blackscreen issue in a .java file which was this part of the code:
private static void activateBlackScreenOverlay() {
if (blackScreenWindow != null) {
blackScreenWindow.dispose();
}
blackScreenWindow = new JWindow();
blackScreenWindow.getContentPane().setBackground(Color.BLACK); // Ensure the content pane is set to black
blackScreenWindow.setBackground(new Color(0, 0, 0, 0)); // Ensure the window background is transparent
blackScreenWindow.setAlwaysOnTop(true);
blackScreenWindow.setSize(Toolkit.getDefaultToolkit().getScreenSize());
blackScreenWindow.setVisible(true);
blackScreenWindow.toFront(); // Bring the black screen window to the front
blackScreenWindow.requestFocusInWindow(); // Request focus for the black screen window
isBlackScreenActive = true;
System.out.println("Black screen overlay activated.");
}

private static void deactivateBlackScreenOverlay() {
    if (blackScreenWindow != null) {
        blackScreenWindow.setVisible(false); // Hide the window
        blackScreenWindow.toBack(); // Send the black screen window to the back
        blackScreenWindow.dispose();
        blackScreenWindow = null;
    }
    isBlackScreenActive = false;
    System.out.println("Black screen overlay deactivated.");
}

and when i asked it, it would go with that blue rectange down to 25% and it would skit to 99% and it would show this:

Image

so i will try to recreate it but i dont think i will be able to make it.

@NejcZorko007
Copy link
Author

so it happend again:

Image

and i manage to capture it on the video:

bug.zip

in the zip file is the video.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
edit-generation info-needed Issue requires more information from poster
Projects
None yet
Development

No branches or pull requests

4 participants