Replies: 16 comments 14 replies
-
Hi @efreibe Did you solve this bug? |
Beta Was this translation helpful? Give feedback.
-
Actually I'm using version v1.77.9225
…On Tue, Mar 7, 2023 at 2:57 AM Çağrı Aldemir ***@***.***> wrote:
In which version was it resolved? I am using the latest version but still
this problem is happening.
—
Reply to this email directly, view it on GitHub
<#45269 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAIDCBWB6DNJN5RCA764GJDW23E4JANCNFSM6AAAAAAUFR5E6I>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Same here: macOS 11.7.4 |
Beta Was this translation helpful? Give feedback.
-
This is still not fixed for me. It seems to happen shortly after creating a new file - i.e. pressing Ctrl+N, writing a class, then saving it. Soon after the "Untitled-1" will appear. I've testing with extensions disabled and it still occurs so it's not related to that. GitHub Copilot v1.89.156 Is there somewhere to actually report bugs in Copilot? |
Beta Was this translation helpful? Give feedback.
-
Same issue:
This workaround reliably fixes it (until the next update 😕), modify the copilot extension bundle (linux: return this.getTextDocumentWithValidation(t).then(n=>{
- if(n.status==="valid")
+ if(n.status==="valid" && n.document.uri.scheme !== "untitled") automatically patch via a command: sed -i --regexp-extended 's/if\((\w+)\.status==="valid"\)/if(\1.status==="valid" \&\& \1.document.uri.scheme !== "untitled")/' ~/.vscode/extensions/github.copilot-*/dist/extension.js |
Beta Was this translation helpful? Give feedback.
-
Shouldn’t it be a case of updating the |
Beta Was this translation helpful? Give feedback.
-
Did @j4k0xb's suggestion solve your problem or does the problem still exist? I'm asking to be sure if the problem is with the copilot extension. |
Beta Was this translation helpful? Give feedback.
-
This problem is 100% because of Copilot extension. Disabling extension solves the issue. Copilot randomly creates Untitled files for me. This issue exists for a very long time. |
Beta Was this translation helpful? Give feedback.
-
I would suggest setting |
Beta Was this translation helpful? Give feedback.
-
Duplicate of https://github.com/orgs/community/discussions/73722 |
Beta Was this translation helpful? Give feedback.
-
I'm encountering this issue still, the only difference is the |
Beta Was this translation helpful? Give feedback.
-
I have the same problem. |
Beta Was this translation helpful? Give feedback.
-
I don't have the copilot extension installed, but I'm having this problem. |
Beta Was this translation helpful? Give feedback.
-
I too am having this issue, except I get two untitled docs. If i close them, they immediately open back up. |
Beta Was this translation helpful? Give feedback.
-
In my case, the problem was solved by using this configuration:
|
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Bug
Body
How to reproduce the issue:
Disabling copilot does not trigger that behavior.
copilot-disabled.mov
copilot-enabled.mov
Beta Was this translation helpful? Give feedback.
All reactions