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
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -371,6 +371,26 @@
371
371
],
372
372
"default": null,
373
373
"markdownDescription": "If the VS Code `editor.formatOnType` setting is enabled, the Ada Language Server will format Ada code while it is being typed in the editor, in particular when a new line is typed.\n\nThis setting controls whether formatting should only perform the indentation of the new line (true) or also format the previous line (false).\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`."
374
+
},
375
+
"ada.rangeFormattingFallback": {
376
+
"scope": "window",
377
+
"enum": [
378
+
true,
379
+
false,
380
+
null
381
+
],
382
+
"enumItemLabels": [
383
+
null,
384
+
null,
385
+
"Provided by .als.json (default: true)"
386
+
],
387
+
"markdownEnumDescriptions": [
388
+
"true",
389
+
"false",
390
+
"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`."
391
+
],
392
+
"default": null,
393
+
"markdownDescription": "Enable fallback indenter in case the file is not syntactically correct.\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`."
0 commit comments