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

推荐订阅源

雷峰网
雷峰网
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园_首页
J
Java Code Geeks
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
B
Blog
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI

The Register

Shadow IT has given way to shadow AI. Enter AI-BOMs Zed team releases version 1.0 of Rust-built editor: Traditional editor and AI tool Microsoft boss tells investors the company is working to 'win back fans' What type of 'C2 on a sleep cycle' do they leave behind? Novel Chinese spy group found in critical networks in Poland, Asia NASA boss: Make Pluto A Planet Again GitHub says sorry and vows to do better as uptime slips and devs complain Age checks could turn internet into an ID checkpoint, complains Proton CEO Microsoft gives your Word documents an AI co-author you didn’t ask for Datadog digs down into GPU efficiency as AI costs soar If malware via monitor cables is a matter of national security, this might be the gadget for you Thunderbird in hand worth 2 Outlooks as fresh FOSS fave and Firefox arrive 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
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. ®