Copilot response to source code comments #184008
Replies: 2 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
After I changed the declaration of b from int to float, Copilot did suggest b = sqrt(a); |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Product Feedback
What GitHub Actions topic or product is this about?
General
Discussion Details
GitHub Copilot in Visual Studio is a very useful aid to software development. Here is my suggestion to improve it. I noticed that Copilot pays attention to comments I'm writing in the code and makes suggestions for completion of a comment. However, it does not work the other way, in the sense of suggesting code to implement the wording of a comment that begins a new line. This code snippet is an example of what Copilot does.
int a, b;
a = 5;
// Make b equal to the square root of a.
Here Copilot suggests "b = a * a;"
Beta Was this translation helpful? Give feedback.
All reactions