TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

GitHub Copilot available for JetBrains and Neovim

540 pointsby orphover 3 years ago

56 comments

mewseover 3 years ago
I’ve never understood the value proposition for Copilot.<p>In terms of difficulty, writing code is maybe on average a two out of ten.<p>On average, maintaining code you wrote recently is probably a three out of ten in terms of difficulty, and maintaining code somebody else wrote or code from a long time ago probably rises to around a five out of ten.<p>Debugging misbehaving code is probably a seven out of ten or higher.<p>GitHub Copilot is optimising the part of the process that was already the easiest, and makes the other parts harder because it moves you from the “I wrote this” path to the “somebody else wrote this” path.<p>Even during the initial write, it changes the writing process from programming (which is easy) to understanding somebody else’s code to ensure that it’s right before accepting the suggestion (which is much less easy). I just don’t understand how this is a net time&#x2F;energy savings?
评论 #29021036 未加载
评论 #29020135 未加载
评论 #29021247 未加载
评论 #29020195 未加载
评论 #29020171 未加载
评论 #29023047 未加载
评论 #29022075 未加载
评论 #29020402 未加载
评论 #29020697 未加载
评论 #29020694 未加载
评论 #29020346 未加载
评论 #29021686 未加载
评论 #29022247 未加载
评论 #29032203 未加载
评论 #29023737 未加载
评论 #29024633 未加载
评论 #29023589 未加载
评论 #29020776 未加载
评论 #29020492 未加载
评论 #29028673 未加载
评论 #29022126 未加载
评论 #29029801 未加载
评论 #29022711 未加载
评论 #29023311 未加载
评论 #29020770 未加载
评论 #29021029 未加载
评论 #29022788 未加载
pugetsover 3 years ago
Copilot is crazy. The other day, I was writing a Python function that would call a Wikipedia API. I pulled from the internet an example of a GET request, and pasted it as a comment in my code.<p><pre><code> # sample call: https:&#x2F;&#x2F;en.wikipedia.org&#x2F;w&#x2F;api.php?action=query&amp;format=json&amp;list=geosearch&amp;gscoord=37.7891838%7C-122.4033522&amp;gsradius=10000&amp;gslimit=100 </code></pre> Then I defined a variable,<p><pre><code> base_url = &quot;https:&#x2F;&#x2F;en.wikipedia.org&#x2F;w&#x2F;api.php?&quot; </code></pre> Then, like magic, Copilot suggested all the remaining keys that would go in the query params. It even knew which params were to be kept as-is, and which ones would come from my previous code:<p><pre><code> action = &quot;query&quot; # action=query format = &quot;json&quot; # or xml lat = str(latitude.value) # 37.7891838 lon = str(longitude.value) # -122.4033522 gscoord = lat + &quot;%7C&quot; + lon ... api_path = base_url + &quot;action=&quot; + action + &quot;&amp;format=&quot; + format + ... + &quot;&amp;gscoord=&quot; + gscoord </code></pre> As a guy who gets easily distracted while programming, Copilot saves me a lot of time and keeps me engaged with my work. I can only imagine what it&#x27;ll look like 10 years from now.
评论 #29021106 未加载
评论 #29019145 未加载
评论 #29018630 未加载
评论 #29020246 未加载
评论 #29020029 未加载
评论 #29021085 未加载
评论 #29022016 未加载
评论 #29020589 未加载
评论 #29019297 未加载
评论 #29019799 未加载
babyover 3 years ago
I’ve been using this for weeks and it blooooows my mind. It comes up with crazy recommendations, just yesterday I wrote this big ass logic to do something, then I wanted to move that code to a function so I wrote the function name and I kid you not copilot suggested a one-liner that worked… the thing is so useful and I’m not writing simple code (writing cryptographic code). And when it’s not doing that at the very least it provides auto-completion to lists where a counter has to increase and things like that. It’s just baffling, I don’t think I’m that directly impacted by AI, or at least this is the first time where I’m like “wow, AI really is changing the world RIGHT NOW”. Half-joking: can’t wait for it to just write my code.<p>Also if this feature would be paid tomorrow, I think I would pay for it. It’s really noticeable when I don’t have copilot enabled now.<p>Oh and, autocompletion doesn’t work with markdown files because of markdown plugins I think? But this is another level of insanity: when I’m writing english it figures a lot of the sentences I want to write. Makes me question if I’m just a deterministic individual with no choice.
评论 #29020642 未加载
评论 #29020178 未加载
评论 #29024028 未加载
neilvover 3 years ago
A lot of the examples people are giving of code Copilot filled in for them sound like what would be called plagiarism, and probably also copyright infringement.<p>Which I think was fairly predictable.<p>What wasn&#x27;t predictable was that someone would ship this Copilot anyway, consequently exposing their company and their users&#x27; companies to liability.<p>Imagine if you hired an intern who was copy&amp;pasting bits of GPL&#x27;d code throughout your system. This would not be a good job, it would be something that needed immediate attention from legal counsel and others, and mean reverting every commit the intern from heck made if you couldn&#x27;t prove convincingly it wasn&#x27;t tainted. Especially if you&#x27;re a startup, who needs to assure investor due diligence in good faith that you actually own the IP.
评论 #29019627 未加载
petepeteover 3 years ago
Wait, they got Tim Pope on the case for the Neovim plugin? Amazing, I&#x27;m positive it&#x27;ll work beautifully.<p>For those who don&#x27;t know, he&#x27;s essentially the godfather of vim plugins - I even have an entire &#x27;tpope section&#x27; in my init.vim
评论 #29019071 未加载
评论 #29020959 未加载
jkelleyrtpover 3 years ago
I actually really like Copilot.<p>There tends to be a lot of repetitive code in the world. I primarily write JS, Py, and Rust. Sometimes, I might declare something like a function table, and Copilot will automatically fill in the class definition with everything I defined.<p>I&#x27;m not using Copilot to write new algorithms or solve library-specific problems, but it sure is next-level in picking up patterns in a file and predicting where you want to go next. Obviously, good code is succinct (not repetitive), but it sure is helpful when in that early prototyping stage. I admire it&#x27;s ability to infer a correct assertion when writing Unit Tests - it made it much easier for me to write tests recently and helped me recognize a few bugs.
评论 #29020319 未加载
lionkorover 3 years ago
Good, I was getting really tired of subtly plagiarizing by hand.
评论 #29018387 未加载
评论 #29017755 未加载
评论 #29019110 未加载
parhamnover 3 years ago
I tried it on IntelliJ recently. The examples I tested blew my mind. Yet, I think there are two things that need to improve to get me to use it regularly (it will get there!):<p>- less than perfect import&#x2F;types&#x2F;var suggestions that LSP in typed languages would&#x27;ve made perfect suggestions for (e.g named import in go would use the package name instead).<p>- latency feels a bit high and my thoughts would get interrupted waiting for a suggestion to come.<p>For the former, I wonder hard feasible it would be to give structured suggestions to the LSPs that it would swap for correct var names and imports and such. Or test each suggestion with the LSP for error counts and offer the least erroring suggestion.
评论 #29019229 未加载
threatofrainover 3 years ago
I&#x27;ve been getting a lot more misses than hits with Github Copilot, even when writing elementary math or utility functions; but despite its error I am nevertheless astonished at its approximation of intent.<p>Very eager to see Github Copilot catchup to some bright line of signal v noise.
评论 #29018272 未加载
评论 #29022346 未加载
ghowardover 3 years ago
I have many thoughts about Copilot, but here are two.<p>First, as much as I don&#x27;t like the idea of Copilot, it seems to be good for boilerplate code. However, the fact that boilerplate code exists is not because of some natural limitation of code; it exists because our programming languages are subpar at making good abstractions.<p>Here&#x27;s an example: in Go, there is a lot of `if err == nil` error-handling boilerplate. Rust decided to make a better abstraction and shortened it to `?`.<p>(I could have gotten details wrong, but I think the point still stands.)<p>So I think a better way to solve the problem that Copilot solves is with <i>better programming languages</i> that help us have better abstractions.<p>Second, I personally think the legal justifications for Copilot are dubious at best and downright deception at worst, to say nothing of the ramifications of it. I wrote a whitepaper about the ramifications and refuting the justifications. [1]<p>(Note: the whitepaper was written quickly, to hit a deadline, so it&#x27;s not the best. Intro blog post at [2].)<p>I&#x27;m also working on licenses to clarify the legal arguments against Copilot. [3]<p>I also hope that one of them [4] is a better license than the AGPL, without the virality and applicable to more cases.<p>Edit: Do NOT use any of those licenses yet! I have not had a lawyer check and fix them. I plan to do so soon.<p>[1]: <a href="https:&#x2F;&#x2F;gavinhoward.com&#x2F;uploads&#x2F;copilot.pdf" rel="nofollow">https:&#x2F;&#x2F;gavinhoward.com&#x2F;uploads&#x2F;copilot.pdf</a><p>[2]: <a href="https:&#x2F;&#x2F;gavinhoward.com&#x2F;2021&#x2F;10&#x2F;my-whitepaper-about-github-copilot&#x2F;" rel="nofollow">https:&#x2F;&#x2F;gavinhoward.com&#x2F;2021&#x2F;10&#x2F;my-whitepaper-about-github-c...</a><p>[3]: <a href="https:&#x2F;&#x2F;yzena.com&#x2F;licenses&#x2F;" rel="nofollow">https:&#x2F;&#x2F;yzena.com&#x2F;licenses&#x2F;</a><p>[4]: <a href="https:&#x2F;&#x2F;yzena.com&#x2F;yzena-network-license&#x2F;" rel="nofollow">https:&#x2F;&#x2F;yzena.com&#x2F;yzena-network-license&#x2F;</a>
评论 #29020484 未加载
评论 #29022337 未加载
Spinnaker_over 3 years ago
How well can copilot write unit tests? This seems like an area where it could be really useful and actually improve software development practices.
评论 #29017426 未加载
评论 #29017543 未加载
评论 #29018656 未加载
评论 #29017350 未加载
评论 #29017596 未加载
unpipableover 3 years ago
Copilot has been super fun! Here is a small website I generated via only comments - in the HTML and JS. The CSS needed a bit more massaging but it also auto generated.<p><a href="https:&#x2F;&#x2F;spencer0.github.io&#x2F;copilot-tests&#x2F;" rel="nofollow">https:&#x2F;&#x2F;spencer0.github.io&#x2F;copilot-tests&#x2F;</a>
评论 #29018027 未加载
ausbahover 3 years ago
the fact that most of Co-Pilot&#x27;s usefulness comes from repeating common snippets of code makes me think there has to be a much simpler way to reduce the boilerplate of &quot;common tasks&quot;
评论 #29019059 未加载
评论 #29019885 未加载
评论 #29019061 未加载
wara23arishover 3 years ago
I have a few questions about copilot. I haven’t gotten a chance to use it yet.<p>Is it irrational that this makes me a little anxious about job security over the longterm? Idk why but this was my initial reaction when learning about this.<p>Given the scenario where copilot and its likes becomes used in a widespread manner. Can it be argued that this might improve productivity but stifle innovation?<p>Im pretty early in my career but the rate things are capable of changing soon doesn’t sit too well with me.
评论 #29019087 未加载
评论 #29019462 未加载
评论 #29019023 未加载
评论 #29019084 未加载
评论 #29030598 未加载
评论 #29019451 未加载
评论 #29019223 未加载
评论 #29020440 未加载
josebaliusover 3 years ago
Here is a demo of it with Neovim &amp; Codespaces: <a href="https:&#x2F;&#x2F;twitter.com&#x2F;josebalius&#x2F;status&#x2F;1453413543232090118" rel="nofollow">https:&#x2F;&#x2F;twitter.com&#x2F;josebalius&#x2F;status&#x2F;1453413543232090118</a>
netcyraxover 3 years ago
Why are people not bothered by privacy concerns in this case?
评论 #29018511 未加载
评论 #29018523 未加载
评论 #29018712 未加载
评论 #29024372 未加载
评论 #29022373 未加载
atonalfreeriderover 3 years ago
The davinci-codex model that copilot uses also has the capability of translating someone else&#x27;s code into plain English. This has a great value potential.<p>Ultimately I&#x27;d like to have a conversation with a machine, where I can describe what I want, and the machine can serve me a possible answer, and then I can respond to clarify the idea.
ipnonover 3 years ago
Can any users give their opinion on how it&#x27;s helping their productivity? What problems are they finding, if any?
评论 #29017333 未加载
评论 #29017048 未加载
评论 #29017587 未加载
评论 #29016942 未加载
评论 #29018300 未加载
评论 #29017659 未加载
评论 #29017382 未加载
评论 #29017245 未加载
评论 #29017254 未加载
评论 #29017140 未加载
评论 #29017104 未加载
评论 #29017609 未加载
评论 #29017347 未加载
评论 #29018438 未加载
评论 #29018296 未加载
评论 #29017555 未加载
snvzzover 3 years ago
Still no way to opt your code out of this.<p>Disgusting.
评论 #29018128 未加载
评论 #29018336 未加载
评论 #29018849 未加载
评论 #29018113 未加载
评论 #29018231 未加载
ahuppover 3 years ago
I&#x27;ve been using Copilot in VS Code and it&#x27;s been surprisingly useful. It makes suggestions pretty rarely, but when it does I accept about 50% of them. Generally these are few-line functions and it just gives me what I would have written after thinking about it a moment.
deorderover 3 years ago
I signed up for the copilot technical preview right after it was announced a few months ago, but I haven&#x27;t gotten an invite yet while all my friends who signed up later did (I feel a bit left out). Is there any way to get an invite sooner? What am I doing wrong?
评论 #29017629 未加载
评论 #29018339 未加载
评论 #29018568 未加载
trulyover 3 years ago
This will lead IMO to an interesting problem, although the technology and the idea is certainly cool.<p>Currently many programmers do not take the time to really understand how&#x2F;why their code works -- programming without understanding 1.0. Essentially make library calls and fuzz around with the arguments until it appears to work. [Not wanting&#x2F;suggesting to go back to the world before libraries&#x2F;code completion, just stating where we are now.]<p>This will enable programming without understanding 2.0 -- not only will you not know how&#x2F;why a particular function call works, you will now fail to understand why you want a sequence of functions in a particular order.
voldemort1968over 3 years ago
Most of the arguments here boil down to the same belabored point, that you shouldn&#x27;t expect Copilot to actually write the code for you at the end of the day.<p>My take is it&#x27;s what you make of it. Copilot is only equivalent to copy-and-pasting from stack overflow if that&#x27;s how you choose to field its suggestions.<p>As an example, I&#x27;ve enjoyed typing &quot;const one_day_in_ms&quot; and letting it finish it out with &quot;1000 * 24 * 60 * 60&quot;. I already knew how to do that, but having GCP finish it for me and verifying on my own didn&#x27;t make me feel stupider, it made me more efficient. I have more interesting problems to tackle.<p>On the other hand, another coder could have not known this calculation and thrown their trust into GCP. That&#x27;s bad practice and it&#x27;s on them, not on the tool.<p>Sometimes GCP gives me code that it learned from bad coding patterns. I know how GCP works and I know to look out for that, so I ignore those suggestions.<p>Of course, sometimes I don&#x27;t know if what looks like a good idea from GCP is actually not. I take that on as my responsibility to trust but verify. If it&#x27;s writing some function to slugify a string for a URL, I check it against what people are discussing online. Does it defeat the purpose of GCP in this case if I have to check it on my own? Probably, but it&#x27;s only in these specific instances when I&#x27;m doing something I&#x27;m not familiar with.
truculentover 3 years ago
The comments are so full of praise that I will have to give this an earnest try. But is <i>writing</i> code really the part of software that people are struggling with?
评论 #29020620 未加载
framecowbirdover 3 years ago
&gt; Login to GitHub Copilot using the device auth flow and authorized GitHub Copilot IntelliJ plugin with your GitHub Account in an external browser.<p>&gt; Read and agree to the GitHub Copilot additional telemetry terms.<p>Can anybody comment on the privacy aspects of this? Is the telemetry reasonable? Why on earth do I need to login: presumably so that they can associate my coding with my account to structure the data they are gathering?
Thorentisover 3 years ago
In my opinion, Copilot is going to become one of those &quot;perceived authorities&quot; that have just enough legitimacy to be blindly trusted by the inexperienced, but not enough to actually be useful to the experts.<p>This is like social media (or even the Internet as a whole) and say, our parents&#x27; generation. Countless times I receive links to Facebook posts or random articles that somebody thinks must be true, simply because The Oracle (i.e. their smartphone) showed it to them. For much of the older generation, smartphones are these all-knowing repositories of wisdom, and anything they come across while using them is likely to be true. This is why I think misinformation has spread so easily.<p>I imagine Copilot going down a similar path. The next generation of programmers who didn&#x27;t grow up with knowing how to sift through API docs or SO answers for the right bit of code, or who&#x27;s attention spans have been fizzled away, will love the idea of Copilot. Instant gratification in the firm of a tool that can seemingly do your work for you. This will be dire consequences for their ability to code and think for themselves.
mooredsover 3 years ago
Note that you have to have a copilot account and GA is still waitlisted.<p>I filed a PR because it was a bit frustrating to go through the entire setup and then find out I needed to be granted access.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot.vim&#x2F;pull&#x2F;2" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot.vim&#x2F;pull&#x2F;2</a>
alexellisukover 3 years ago
So who knows what all that WASM is for in the Neovim plugin? Is there source for it? <a href="https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot.vim&#x2F;tree&#x2F;release&#x2F;copilot&#x2F;dist" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot.vim&#x2F;tree&#x2F;release&#x2F;copilot&#x2F;d...</a>
评论 #29017418 未加载
评论 #29017442 未加载
esjeonover 3 years ago
Copilot thread is always hot. TBH I don&#x27;t mind the plagiarism. They can use my code.<p>The real problem is indeed the code quality, since Copilot does actively provide low-quality codes, and this will bite a lot of people. I guarantee. I don&#x27;t think this massive learning approach can&#x27;t be the solution. We need an extra kick.<p>My shower-thought solution for this garbage-spewing problem is to design a new library with Copilot in mind. Tighten up the interface, and use strict patterns instead of domain-specific hacks.<p>In other words, we can make libraries so <i>lame</i> that Copilot (and newb programmers) simply can&#x27;t produce low-quality code. Just disregard smart programmers with fast hands. They don&#x27;t need any help anyway. Don&#x27;t even try to target them, because it&#x27;s gonna cause more stupid flame wars...
soledadesover 3 years ago
So it looks like for neovim there is not yet the option to cycle through suggestions?<p>Looks like for VSCode the shortcut on Linux is Alt-], see: <a href="https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot-docs&#x2F;blob&#x2F;main&#x2F;docs&#x2F;visualstudiocode&#x2F;gettingstarted.md#alternates" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot-docs&#x2F;blob&#x2F;main&#x2F;docs&#x2F;visual...</a><p>But for neovim, it doesn&#x27;t mention anything about it in the docs: <a href="https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot.vim&#x2F;blob&#x2F;release&#x2F;doc&#x2F;copilot.txt" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;copilot.vim&#x2F;blob&#x2F;release&#x2F;doc&#x2F;copil...</a><p>And, nothing happens when pressing Alt-].
anaganiskover 3 years ago
I wonder how long before Github is forced to include youtube’s content idesque system. So that i can cease and desist even before I even push the code. And oracle, google and ms can charge my Github billing account for violations.
AlexFielderover 3 years ago
In the few short weeks i have used CoPilot inside of VSCode, it&#x27;s been a big* timesaver; I can type out a bare skeleton of a class, and with minimal guidance for things like naming conventions CoPilot let&#x27;s you simply tab+enter through each class property.<p>Maybe I&#x27;m missing something obvious, but I feel like CoPilot should have the ability to allow a user to define a &#x27;class template&#x27; in the form of a block comment and then allow a user to write &quot;make this class&quot; or something.<p>*Big being it&#x27;s probably saved me around two hours of manually typing out &#x27;public property... etc.&#x27;
redleggedfrogover 3 years ago
What this feels like to me, after a nominal amount of time using it, is that I am now in charge of vetting the proposed code, and is it appropriate for my use case, and does it meet our coding standards and does it integrate with my code or further suggestions. Honestly it feels like constantly code reviewing, which is not pleasant nor conducive to productivity.<p>And I do a lot of PR approval, and I shudder to think about PRs stitched together in haste because look how easy it is now to crank out code!<p>And lastely it doesn&#x27;t work well when you have a large legacy codebase that your working within.
评论 #29023627 未加载
monkeydustover 3 years ago
A product perspective:<p>- Co-pilot will not replace software engineers, however ...<p>- I do think it will in some cases help them be more productive as some have expressed in this thread already.<p>- Once they open it up to fine-tuning on your own codebase I suspect it can be used to bring new engineers upto speed faster plus it get will get more trustworthy.<p>- I do have concerns about the legal aspect of selling software built with assistance if co-pilot but a lawyer could probably get me comfortable (or not!)<p>- I have personally found it useful for data science type tasks especially getting familiar with new libraries.
eikenberryover 3 years ago
Any word on if they will ever make Copilot free software? It sounds interesting, but I avoid using proprietary software in my development stack. Plus it looks like it be fun to play with.
Jenssonover 3 years ago
Looking forward to the next generation of programmers who can only program if they have Copilot, and will complain in interviews when they are asked to code without Copilot.
miller_joeover 3 years ago
I&#x27;ve been using TabNine for several years and love it. I&#x27;d be interested in hearing a comparison between TabNine and GH Copilot from anyone who has used both.
shanebrunetteover 3 years ago
Emacs please
评论 #29018631 未加载
aimorover 3 years ago
I&#x27;m very interested in this as a learning tool: instant feedback about what could come next, compared to the status quo of searching the internet or searching the language documentation. A lot of the time I learn <i>a</i> way to do something, then sometime later stumble across a <i>better</i> way to do the same thing. My hope is that Copilot can be a shortcut for that discoverability.
mistrial9over 3 years ago
this has been &quot;inevitable&quot; for three decades now. The difference is, walled gardens making participation non-optional; commercial intent over &quot;fairness&quot;; elevating the trivial for the pleasure of management .. what could go wrong?!<p>overall, a new forms generator with a somewhat terrifying amount of horsepower.. zero trust of microsoft here, basically
dgdosenover 3 years ago
I just tried installing for neovim - but got an error running vim-plug&#x27;s `:PlugInstall`<p>I added an issue. <a href="https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;feedback&#x2F;discussions&#x2F;6847" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;github&#x2F;feedback&#x2F;discussions&#x2F;6847</a><p>Anyone else install in neovim?
评论 #29018639 未加载
giansegatoover 3 years ago
Any idea how to try it out? Seems like the beta is fairly restrictive in giving access out.
blueluover 3 years ago
It say on the github page that &quot;GitHub Copilot will attempt to match your code&#x27;s context and style. You can edit the suggested code as you choose.&quot;. Does this mean that the plugin will transmit my code to github servers?
评论 #29019618 未加载
f38zf5vdtover 3 years ago
I used it for about a week but found I could type faster than it could suggest, even if it suggested the right thing. I have been coding for about 25 years but maybe it will help people new to whatever language they are using.
qanstrover 3 years ago
We should put up a huge amount of Oracle open source code on GitHub, get CoPlagiarizer to quote it and let Oracle deal with the situation.<p>The plebs should also play a little divide and conquer now and then.
synergy20over 3 years ago
I hope it will work for the &#x27;standard&#x27; vim, so far it reports &#x27;vim version too old&#x27;, while I&#x27;m using the newest vim.<p>it&#x27;s said because vim lacks &#x27;virtualtext&#x27; feature.
kesslernover 3 years ago
Is anyone able to install the plugin yet? I&#x27;m not seeing it when I search the plugin marketplace in Rider.
评论 #29018552 未加载
MayeulCover 3 years ago
Does it relies on a Microsoft-provided API? If it&#x27;s not offline, the same gotchas as other SaaS apply.
meijerover 3 years ago
I wonder when it will become generally available. Feels like it has been around for quite a while now.
tdiggityover 3 years ago
Anyone know how long the waitlist is?
评论 #29019056 未加载
syngrog66over 3 years ago
makes it even easier for both the US (via Microsoft) and Russian govs (via JetBrains) to copy, analyze and inject arbitrary code into any codebase (public or &quot;private&quot;) used by this combo of tools
premekover 3 years ago
will the plugin steal my employer&#x27;s code and give it to a competition?
jimmaswellover 3 years ago
How could they support these two random IDEs before Visual Studio proper?
评论 #29018763 未加载
tuananhover 3 years ago
neovim being first class is rather nice :)
marstallover 3 years ago
Any1 get it working WebStorm yet?
luckyorlameover 3 years ago
can it do my cs homework?