惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
罗磊的独立博客
爱范儿
爱范儿
J
Java Code Geeks
博客园 - 司徒正美
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
小众软件
小众软件
Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Jina AI
Jina AI
Y
Y Combinator Blog
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
Vercel News
Vercel News

The Register

Grafana offers AI assistant for free, warns users not to go mad Right to repair champ Framework punts modular 13in laptop with Core Ultra Series 3 France's 'Secure' ID agency probes breach as crooks claim 19M records Scotland Yard can keep using live facial recognition on Londoners, say judges UK tribunal sends £2B claim accusing Microsoft of overcharging for licensing to trial Nation-states want to cause harm, not just steal cash - stop handing your cyber defenses to the cheapest contractor Murder, she wrote: Ex-FBI chief wants some ransomware crims charged with homicide Phone-to-satellite use goes into orbit, growing 25% in 8 months macOS ClickFix attacks deliver AppleScript stealers to snarf credentials, wallets Anthropic bakes memory fixes into Bun 1.1.13 as developers complain of leaks The spaghettified DBMS chart that shows Oracle's crown is slowly slipping Yet another ex-ransomware negotiator admits turning rogue after payoff from crimelords FAA grounds Blue Origin's New Glenn as it probes missed satellite delivery 'mishap' AMD's Ryzen 9 9950X3D2 Dual Edition tested: Gratuitous overkill with a price to match AI-assisted intruders pwned Vercel via OAuth abuse and a pilfered employee account Crook claims to leak 'video surveillance footage' of companies Met police trials snoop tech platform in push to cuff more London shoplifters England's school phone ban gets teeth, just in time to bite no one Adaptavist Group breach spawns imposter emails as ransomware crew claims mega-haul Panasonic creates device-locked QR codes to speed facial biometric capture Iran claims US used backdoors to knock out networking equipment during war NASA Inspector fears new spacesuits won’t be ready for Moon landing Vibe coding upstart Lovable denies data leak, cites 'intentional behavior,' then throws HackerOne under the bus Trump-branded datacenter project fails to make itself great, again World's blandest man steps down from CEO job to spend more time in tastefully appointed home Chase got a spiff of $77 million to create one job with New York datacenter Scot becomes second Scattered Spider-linked crook to plead guilty in US You too can build a nuclear battery from junk you have lying around the house Schmoozebots: study finds flattery will get AI everywhere One of Europe's sovereign cloud picks may not be so-sovereign after all
Visual Studio 18.5 lands with AI debugging at a price
Tim Anderson Tim Anderson · 2026-04-16 · via The Register

Software

Visual Studio 18.5 lands with AI debugging at a price, devs still feeling blue

Latest version points to a shift in how Microsoft thinks about IDEs

Visual Studio 2026 18.5 arrives with two headline changes – a smarter code suggestion system and an AI-powered debugger. Yet developer frustration over color contrast and forced updates continue to overshadow the improvements.

Many developers are familiar with the problem: they are typing in the code editor and multiple assistants intervene with suggested code, causing distraction and confusion. Even within the Microsoft stable there are several of them.

IntelliSense is the older system, based on static analysis without generative AI and providing code completion and help text. AI-driven IntelliCode ranks suggestions and provides context-aware and whole line completions. GitHub Copilot suggests and generates whole blocks of code and is subscription-based but with a free version for limited use.

Until this release, IntelliSense and Copilot suggestions could appear simultaneously, confusing users about what keys like Tab will do and causing cognitive overload.

A solution is to disable Copilot, but for those using multiple code completion assistants, the new Visual Studio release "prioritizes the IntelliSense list and shows only one suggestion at a time."

This small victory for a pre-AI world should not be misread as a retreat from Copilot. 18.5 also features a new debugger agent workflow which, Microsoft said, "represents a fundamental shift in how we think about IDEs."

The new workflow, called agentic bug resolution, starts with an issue link or chat prompt describing the bug. Copilot will inspect the application, generate failure hypotheses, and set conditional breakpoints in the code. Next, the agent runs the application in debug mode, inspects the failure, and, all going well, proposes a fix.

While this sounds like a time-saver, we note that it also converts a standard developer task into something that now costs AI tokens each time it is used, meaning it is only a benefit if the AI fix is quicker to find and equally or more effective than what the human developer would have done without it.

More AI debugging is not a top developer request. Rather, devs still want to bring back the blue theme from Visual Studio 2022. This request is not just based on liking a certain color scheme; it reflects complaints of eye strain and a worse overall experience.

In Visual Studio 2026, the number of color tokens was reduced by around 87 percent as part of a migration to a semantic color system.

"The effect is straightforward: Token reduction → Loss of granular control → Reduced contrast → Lower readability → Reduced productivity. For developers who spend entire working days inside the IDE, this is not an aesthetic complaint. It directly affects cognitive load and output quality," said one developer.

Microsoft closed an issue on this as "out of scope" but has left a similar issue open with a promise to review the complaints and propose "potential next steps."

Another common gripe concerns forced Visual Studio updates, which now seem to afflict this developer tool as well as Windows itself. By default, a dialog appears periodically with the options "Update now" or "postpone," where the default is to update when Visual Studio closes, but a user reports that "after several postpones, Visual Studio finally decided to update by itself."

Microsoft said: "The primary reason for this feature is to help keep your environment secure and ensure you have the latest features, performance improvements, and reliability fixes without delay the next time you open Visual Studio."

Auto-update in Visual Studio is unpopular with some, but tricky to disable

Auto-update in Visual Studio is unpopular with some, but tricky to disable

Many developers consider that they should decide when to update. "I've had this interrupt meetings, instructional lectures, and important sessions where I am running the console in debug mode," said one.

A workaround has been found, and is given in the issue thread referenced above, involving an edit to a configuration file called state.json, with options not available through the settings user interface. ®