From e7419f41bfee99bad2a9c0b114665ea3d38776c1 Mon Sep 17 00:00:00 2001 From: Panagiotis Christopoulos Charitos Date: Fri, 31 Oct 2025 09:58:13 +0100 Subject: [PATCH] Add the missing 'StructuredBuffer' keyword in the HLSL syntax highlighting --- extensions/hlsl/syntaxes/hlsl.tmLanguage.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/hlsl/syntaxes/hlsl.tmLanguage.json b/extensions/hlsl/syntaxes/hlsl.tmLanguage.json index 5398a76291cbb..3152bce78aca4 100644 --- a/extensions/hlsl/syntaxes/hlsl.tmLanguage.json +++ b/extensions/hlsl/syntaxes/hlsl.tmLanguage.json @@ -104,7 +104,7 @@ }, { "name": "support.type.object.hlsl", - "match": "\\b(AppendStructuredBuffer|Buffer|ByteAddressBuffer|ConstantBuffer|ConsumeStructuredBuffer|InputPatch|OutputPatch)\\b" + "match": "\\b(AppendStructuredBuffer|Buffer|ByteAddressBuffer|StructuredBuffer|ConstantBuffer|ConsumeStructuredBuffer|InputPatch|OutputPatch)\\b" }, { "name": "support.type.object.rasterizerordered.hlsl", @@ -214,4 +214,4 @@ ] } ] -} \ No newline at end of file +}