Replies: 342 comments 435 replies
-
After recent feedback, the chat window seems broken, the first few questions are answered, but then the later questions simply disappear as if sent to the bot, but no change (scrolling window with answer) is seen, so for each question, one has to start a new chat. Apart from that overall very convenient and useful to have the copilot right there, next to the work code |
Beta Was this translation helpful? Give feedback.
-
In the new update, I've been having issues with the chat. The first question gets answered, but the following one stops working; it doesn't respond at all, nor does the new question appear. Additionally, if I work with two IntelliJ windows, after the first question, when I click to send, the chat from the other window I have open pops up. |
Beta Was this translation helpful? Give feedback.
-
Issues while upgrading Github Copilot from 1.4.0.4986 -->> 1.5.0.5148 (IntelliJ IDEA 2024.1 Beta on Windows OS). Environment:
Note: it seems that Avast antivirus is blocking it: |
Beta Was this translation helpful? Give feedback.
-
It keeps failing after a few messages. Using Rider |
Beta Was this translation helpful? Give feedback.
-
I have a business license, I am an admin. I've enabled Github Copilot for IDEs, and it works in VSCode. Why am I still seeing this message in Rubymine? |
Beta Was this translation helpful? Give feedback.
-
Currently, the plugin neither automatically retries nor warns the user when it runs into a network issue ? When a network issue happens, including temporary hiccups, the plugin will simply show "Responding..." indefinitely on each and every question asked from that point until restarting the whole IDE. Cancelling reply or deleting current conversation won't resolve the issue. Environment:
Example of the network issue:
|
Beta Was this translation helpful? Give feedback.
-
How can I map key binding for the chat window ? |
Beta Was this translation helpful? Give feedback.
-
They claim it uses GPT4, but when asked the same copilot chat says it uses GPT3 and isn't aware of GPT4 in IntelliJ. VSCode mentions about GPT-4 |
Beta Was this translation helpful? Give feedback.
-
When using the /docs command, the reply will include the full function body. Can you consider just replying with the docstring and to skip the function itself. The function code is just a copy of what is in file, is irrelevant for the docstring and just adds noise to the answer. |
Beta Was this translation helpful? Give feedback.
-
i can't write new questions after the previous, chat only answer on one questions, then if i try to make more request, nothing happen |
Beta Was this translation helpful? Give feedback.
-
Any plans for implementing "Inline chat" functionality, similarly to VS Code, which allows Copilot to make edits directly to code files? |
Beta Was this translation helpful? Give feedback.
-
My organization just enabled the chat feature and after updating the plugin I just get an error. |
Beta Was this translation helpful? Give feedback.
-
Is there a way to have copilot generate commit messages based on the files in the changelist? |
Beta Was this translation helpful? Give feedback.
-
With the new update (1.5.0.5148) I can't deploy to vercel if Copilot is enabled on Webstorm (2023.3.4) + Windows (11) That error is gone if I disable copilot or close webstorm. |
Beta Was this translation helpful? Give feedback.
-
I see that there's currently no support to set up a keyboard shortcut for "explain this" (as well as any other other function from the right-click context menu of the copilot) functions(s) in pycharm. any workaround/plans on implementing this soonishly? |
Beta Was this translation helpful? Give feedback.
-
The only use of copilot is auto completion. For literally anything else you better use any of the llms out there. |
Beta Was this translation helpful? Give feedback.
-
@Akash1134 any ETA for the Claude then (this page is mostly about it)? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Such a shame that this integration isn't perfect, where can I switch model? |
Beta Was this translation helpful? Give feedback.
-
too behind VS copilot version. I need model sweerch, workspaces and so so on. |
Beta Was this translation helpful? Give feedback.
-
Maybe somebody has already mentioned this, but it would be nice if copilot recognized that I have multiple IDE panes open for a reason. Usually that means that in one pane I'm implementing something related to what's in another pane. Practical use case is writing tests for a component. Copilot is a bit lost at first when you are working on a new file. |
Beta Was this translation helpful? Give feedback.
-
Control + Enter for new line! Please. Now I can’t create new line in text field |
Beta Was this translation helpful? Give feedback.
-
I see you removed the checkbox in the chat allowing to discuss without the project context. I found that quite useful if I ever wanted to ask a general question and not have the answer "polluted" by my open project |
Beta Was this translation helpful? Give feedback.
-
Yes copilot is availlable, but not accessible, as a lot of other things in the jetbrains ides. Are you proud of that, you who claims to be interested in accessibility? |
Beta Was this translation helpful? Give feedback.
-
Ever since the update to PhpStorm 2024.3 SHIFT+Enter no longer gives a new line in the chat. This appears to be a problem that has cropped over the last year in many of the intellij IDEs as they get updated to the new keybind system, which makes keybinds globally available, even from within a plugin window (hence you can now CTRL+ALT+S to open settings even though you are in a text box within a plugin etc.) A simple solution would be to add a key listener to the chat input box that prevents those inputs from escaping to the IDE and triggering keybinds from other plugins etc. Basic code example: import javax.swing.*;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
public class MyChatWindow {
private JPanel myChatWindowContent;
private JTextArea myTextArea;
public MyChatWindow() {
myTextArea.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent e) {
// Check for SHIFT+ENTER key combination
if ((e.getKeyCode() == KeyEvent.VK_ENTER) && ((e.getModifiersEx() & KeyEvent.SHIFT_DOWN_MASK) != 0)) {
// Insert a newline character
myTextArea.append("\n");
// Consume the event to prevent it from propagating
e.consume();
}
}
});
}
public JPanel getContent() {
return myChatWindowContent;
}
} |
Beta Was this translation helpful? Give feedback.
-
Too much RAM is being consumed on my IntelliJ remote development environment in a Rocky Linux image.
Copilot plugin version:
IntelliJ version:
See also: [Copilot in intellij uses an absurd amount of memory #84695] (https://github.com/orgs/community/discussions/84695) [Copilot memory leak + cpu spinning #28571] (https://github.com/orgs/community/discussions/28571) I will need to remove the plugin for now. After removing the Copilot plugin, I am back to a normal scenario:
|
Beta Was this translation helpful? Give feedback.
-
Ridiculously stupid chat, code suggestions are still good, but the chat - OMG what is this, why is this so stupid.... it does more harm than help, and I end up using just chat GPT instead. It was helpful at the start and then became absolutely useless. |
Beta Was this translation helpful? Give feedback.
-
My feelings seem to reflect what others are saying. The autofill suggestions are useful, especially in how it appears to pay attention to what you are doing at the moment such as creating basic accessor code and greatly speeds up what you are working on. But the chat is more harm than good whenever it encounters a topic that is apparently outside of whatever data/libraries/information it has scraped. It presents answers as though they are fact when they appear to be completely made up. It will spit back walls of code and text when only one line, or in many cases abso-f'kin-lutely nothing in your code is changed in the example code it spits back. Instead of saying "I don't know" or "I need more specific information" or even "this is a random guess" it presents answers in ways that make it appear it authoritatively knows it will work. You wind up mangling your code taking it's advice, you spit back the error from it's suggestions and it takes you further down the rabbit hole further mangling your code when it eventually becomes obvious it has no fekkin clue what it's talking about. It will also get stuck in 'loops' where it makes a suggestion, you post the error, it gives another suggestion, you give it another error and it goes back to it's first suggestion and so on. If this is the future of AI, be afraid - be very afraid! |
Beta Was this translation helpful? Give feedback.
-
Please, add switching the AI model button !!!!!!!!! |
Beta Was this translation helpful? Give feedback.
-
Please add switching the AI model feature and please add Claude Sonnet 3.5! |
Beta Was this translation helpful? Give feedback.
-
The purpose of this discussion is to collect feedback from our Copilot Chat users in JetBrains IDEs.
Following our Private Beta, we are thrilled to announce Copilot Chat in JetBrains IDEs is now generally available (GA) 🎉
Driven by GPT-4, GitHub Copilot Chat provides instant guidance directly within various JetBrains IDEs, such as PyCharm, IntelliJ IDEA, WebStorm, Rider, and more. This contextually-aware tool tailors suggestions to your specific coding tasks and even allows explicitly adding files for reference. It empowers developers to innovate efficiently by assisting with complex concepts, code explanations, unit testing, and many more use cases, all while effortlessly adjusting to your preferred language style.
How to get started?
Beta Was this translation helpful? Give feedback.
All reactions