From cd6d41ce7573968003e9e586190759e1402c0647 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Fri, 12 Feb 2016 16:01:14 +0100 Subject: [PATCH] upgrade to latest debug protocol --- src/vs/workbench/parts/debug/common/debugProtocol.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts index b6bab8ed0df..77604f7ddbd 100644 --- a/src/vs/workbench/parts/debug/common/debugProtocol.d.ts +++ b/src/vs/workbench/parts/debug/common/debugProtocol.d.ts @@ -149,6 +149,8 @@ declare module DebugProtocol { export interface InitializeRequestArguments { /** The ID of the debugger adapter. Used to select or verify debugger adapter. */ adapterID: string; + /** The locale to use for all user visible information returned by this debug adapter. If no locale is specified, the default locale of the OS will be used. */ + locale?: string; /** If true all line numbers are 1-based (default). */ linesStartAt1?: boolean; /** If true all column numbers are 1-based (default). */ -- GitLab