@@ -20,6 +20,8 @@ public class InitializeRequestArguments
2020
2121 public bool LinesStartAt1 { get ; set ; }
2222
23+ public bool ColumnsStartAt1 { get ; set ; }
24+
2325 public string PathFormat { get ; set ; }
2426
2527 public bool SourceMaps { get ; set ; }
@@ -30,31 +32,31 @@ public class InitializeRequestArguments
3032 public class InitializeResponseBody
3133 {
3234 /// <summary>
33- /// Gets or sets a boolean value that determines whether the debug adapter
35+ /// Gets or sets a boolean value that determines whether the debug adapter
3436 /// supports the configurationDoneRequest.
3537 /// </summary>
3638 public bool SupportsConfigurationDoneRequest { get ; set ; }
3739
3840 /// <summary>
39- /// Gets or sets a boolean value that determines whether the debug adapter
41+ /// Gets or sets a boolean value that determines whether the debug adapter
4042 /// supports functionBreakpoints.
4143 /// </summary>
4244 public bool SupportsFunctionBreakpoints { get ; set ; }
4345
4446 /// <summary>
45- /// Gets or sets a boolean value that determines whether the debug adapter
47+ /// Gets or sets a boolean value that determines whether the debug adapter
4648 /// supports conditionalBreakpoints.
4749 /// </summary>
4850 public bool SupportsConditionalBreakpoints { get ; set ; }
4951
5052 /// <summary>
51- /// Gets or sets a boolean value that determines whether the debug adapter
53+ /// Gets or sets a boolean value that determines whether the debug adapter
5254 /// supports breakpoints that break execution after a specified number of hits.
5355 /// </summary>
5456 public bool SupportsHitConditionalBreakpoints { get ; set ; }
5557
5658 /// <summary>
57- /// Gets or sets a boolean value that determines whether the debug adapter
59+ /// Gets or sets a boolean value that determines whether the debug adapter
5860 /// supports a (side effect free) evaluate request for data hovers.
5961 /// </summary>
6062 public bool SupportsEvaluateForHovers { get ; set ; }
0 commit comments