You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration/vscode/ada/package.json
+36-16
Original file line number
Diff line number
Diff line change
@@ -559,6 +559,26 @@
559
559
"default": null,
560
560
"markdownDescription": "Controls whether or not the Ada Language Server should emit diagnostics related to alire into the VS Code Problems view.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
561
561
},
562
+
"ada.sourceInfoDiagnostics": {
563
+
"scope": "window",
564
+
"enum": [
565
+
true,
566
+
false,
567
+
null
568
+
],
569
+
"enumItemLabels": [
570
+
null,
571
+
null,
572
+
"Provided by .als.json (default: true)"
573
+
],
574
+
"markdownEnumDescriptions": [
575
+
"true",
576
+
"false",
577
+
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
578
+
],
579
+
"default": null,
580
+
"markdownDescription": "Controls whether or not the Ada Language Server should emit source information diagnostics (e.g: for opened files that do not belong to the loaded project tree).\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
Copy file name to clipboardExpand all lines: integration/vscode/ada/schemas/als-settings-schema.json
+5
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,11 @@
85
85
"default": "usage_and_abstract_only",
86
86
"description": "Controls the policy for displaying overriding and overridden subprograms on navigation requests such as 'Go To Definition' or 'Go To Implementations'."
87
87
},
88
+
"sourceInfoDiagnostics": {
89
+
"type": "boolean",
90
+
"default": true,
91
+
"description": "Controls whether or not the Ada Language Server should emit source information diagnostics for opened Ada files."
0 commit comments