mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-07 14:29:04 +01:00
Suppress extension diagnostics in code blocks (#207754)
May re-enable in the future. Also we can't simply disable the markers feature as this also turns off a number of useful markers for stuff like go to def
This commit is contained in:
@@ -12,7 +12,7 @@ import { Schemas } from 'vs/base/common/network';
|
||||
import { URI } from 'vs/base/common/uri';
|
||||
import { IMarker, IMarkerData, IMarkerService, IResourceMarker, MarkerSeverity, MarkerStatistics } from './markers';
|
||||
|
||||
export const unsupportedSchemas = new Set([Schemas.inMemory, Schemas.vscodeSourceControl, Schemas.walkThrough, Schemas.walkThroughSnippet]);
|
||||
export const unsupportedSchemas = new Set([Schemas.inMemory, Schemas.vscodeSourceControl, Schemas.walkThrough, Schemas.walkThroughSnippet, Schemas.vscodeChatCodeBlock]);
|
||||
|
||||
class DoubleResourceMap<V> {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user