From 932ddac4f7ab008c4ce2deaaf6583be425ec7fee Mon Sep 17 00:00:00 2001 From: RoomWithOutRoof Date: Wed, 15 Apr 2026 10:23:05 +0800 Subject: [PATCH] Add binary and octal support to ValueFormat Extension to support binary and octal formatting options in the ValueFormat type, addressing feature request in issue #599. This allows debug adapters to format values in binary (base-2) and octal (base-8) representations in addition to the existing hex (base-16) support. --- debugAdapterProtocol.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/debugAdapterProtocol.json b/debugAdapterProtocol.json index 814e3b9..3e0e9a1 100644 --- a/debugAdapterProtocol.json +++ b/debugAdapterProtocol.json @@ -4369,6 +4369,14 @@ "hex": { "type": "boolean", "description": "Display the value in hex." + }, + "binary": { + "type": "boolean", + "description": "Display the value in binary." + }, + "octal": { + "type": "boolean", + "description": "Display the value in octal." } } },