(no title)
Arwill
|
2 months ago
I had a WTF moment last week, i was writing SQL, and there was no autocomplete at all. Then a chunk of autocomplete code appeared, what looked like an SQL injection attack, with some "drop table" mixed in. The code would have not worked, it was syntactically rubbish, but still looked spooky, should have made a screenshot of it.
xnorswap|2 months ago
Some stuff that used to work well with smart autocomplete / intellisense got worse with AI based autocomplete instead, and there isn't always an easy way to switch back to the old heuristic based stuff.
You can disable it entirely and get dumb autocomplete, or get the "AI powered" rubbish, but they had a very successful heuristic / statistics based approach that worked well without suggesting outright rubbish.
In .NET we've had intellisense for 25 years that would only suggest properties that could exist, and then suddenly I found a while ago that vscode auto-completed properties that don't exist.
It's maddening! The least they could have done is put in a roslyn pass to filter out the impossible.
harvey9|2 months ago
blackadder|2 months ago
cyberax|2 months ago
I found that it makes the AI experience so much better.
tbd23|2 months ago
I’m sure someone on the VS team got a pat on the back for increasing AI usage but it’s infuriating that they broke a feature that worked perfectly for a decade+ without AI. Luckily there was a switch buried in settings to disable the AI integration.
DaiPlusPlus|2 months ago
a_t48|2 months ago
wubrr|2 months ago
I feel like this problem was far less prevalent a few months/weeks ago (before gemini-3?).
Using it for research/learning purposes has been pretty amazing though, while claude code is still best for coding based on my experience.
array_key_first|2 months ago
zoeysmithe|2 months ago
honkostani|2 months ago
[deleted]
mk89|2 months ago
```{{ .default .Values.whatever 10 }}``` instead of the correct ```{{ default 10 .Values.whatever }}```.
Pure garbage which should be solved by now. I don't understand how it can make such a mistake.
throwaway2037|2 months ago
DaiPlusPlus|2 months ago
We get rubbish suggestions from SOTA(tm) LLM models too, y’know.