|
30 | 30 | "dart.analyzerAdditionalArgs": { |
31 | 31 | "type": "array", |
32 | 32 | "default": [], |
33 | | - "description": "Additional arguments to pass to the Dart analysis server.", |
| 33 | + "description": "Additional arguments to pass to the Dart Analysis Server.", |
34 | 34 | "scope": 3, |
35 | 35 | "items": { |
36 | 36 | "type": "string" |
|
51 | 51 | "string" |
52 | 52 | ], |
53 | 53 | "default": null, |
54 | | - "description": "The path to a custom Dart analysis server.", |
| 54 | + "description": "The path to a custom Dart Analysis Server. This setting is intended for use by Dart Analysis Server developers.", |
55 | 55 | "scope": 6 |
56 | 56 | }, |
57 | 57 | "dart.analyzerSshHost": { |
|
60 | 60 | "string" |
61 | 61 | ], |
62 | 62 | "default": null, |
63 | | - "description": "An SSH host to run the analysis server.\nThis can be useful when modifying code on a remote machine using SSHFS.", |
| 63 | + "description": "An SSH host to run the Analysis Server.\nThis can be useful when modifying code on a remote machine using SSHFS.", |
64 | 64 | "scope": 3 |
65 | 65 | }, |
66 | 66 | "dart.analyzerVmServicePort": { |
|
69 | 69 | "number" |
70 | 70 | ], |
71 | 71 | "default": null, |
72 | | - "description": "The port number to be used for the Dart analysis server VM service.", |
| 72 | + "description": "The port number to be used for the Dart Analysis Server VM service. This setting is intended for use by Dart Analysis Server developers.", |
73 | 73 | "scope": 3 |
74 | 74 | }, |
75 | 75 | "dart.notifyAnalyzerErrors": { |
76 | 76 | "type": "boolean", |
77 | 77 | "default": true, |
78 | | - "description": "Whether to show a notification the first few times an analysis server exception occurs.", |
| 78 | + "description": "Whether to show a notification the first few times an Analysis Server exception occurs.", |
79 | 79 | "scope": 3 |
80 | 80 | }, |
81 | 81 | "dart.onlyAnalyzeProjectsWithOpenFiles": { |
|
186 | 186 | "default": true, |
187 | 187 | "markdownDescription": "Whether to show notifications for widget errors that offer Inspect Widget links. This requires that the `#dart.shareDevToolsWithFlutter#` setting is also enabled.", |
188 | 188 | "scope": 3 |
| 189 | + }, |
| 190 | + "dart.customDevToolsUri": { |
| 191 | + "type": [ |
| 192 | + "null", |
| 193 | + "string" |
| 194 | + ], |
| 195 | + "default": null, |
| 196 | + "description": "A custom URI to use for launching DevTools. This setting is intended for use by Dart DevTools developers.", |
| 197 | + "scope": 6 |
189 | 198 | } |
190 | 199 | } |
191 | 200 | }, |
|
196 | 205 | "dart.analysisServerFolding": { |
197 | 206 | "type": "boolean", |
198 | 207 | "default": true, |
199 | | - "description": "Whether to use folding data from the Dart analysis server instead of the built-in VS Code indent-based folding.", |
| 208 | + "description": "Whether to use folding data from the Dart Analysis Server instead of the built-in VS Code indent-based folding.", |
200 | 209 | "scope": 3 |
201 | 210 | }, |
202 | 211 | "dart.autoImportCompletions": { |
|
588 | 597 | "string" |
589 | 598 | ], |
590 | 599 | "default": null, |
591 | | - "description": "The path to a log file for very detailed logging in the Dart analysis server that may be useful when trying to diagnose analysis server issues.", |
| 600 | + "description": "The path to a log file for very detailed logging in the Dart Analysis Server that may be useful when trying to diagnose Analysis Server issues.", |
592 | 601 | "scope": 6 |
593 | 602 | }, |
594 | 603 | "dart.analyzerLogFile": { |
|
597 | 606 | "string" |
598 | 607 | ], |
599 | 608 | "default": null, |
600 | | - "description": "The path to a log file for communication between Dart Code and the analysis server.", |
| 609 | + "description": "The path to a log file for communication between Dart Code and the Analysis Server.", |
601 | 610 | "scope": 6 |
602 | 611 | }, |
603 | 612 | "dart.dapLogFile": { |
|
780 | 789 | "description": "The protocol to use for the Dart Debug Extension backend service and injected client. Using WebSockets can improve performance but may fail when connecting through some proxy servers.", |
781 | 790 | "scope": 3 |
782 | 791 | }, |
| 792 | + "dart.debugSdkLibraries": { |
| 793 | + "type": "boolean", |
| 794 | + "default": false, |
| 795 | + "markdownDescription": "Whether to mark Dart SDK libraries (`dart:*`) as debuggable, enabling stepping into them while debugging.", |
| 796 | + "scope": 3 |
| 797 | + }, |
783 | 798 | "dart.debugExternalPackageLibraries": { |
784 | 799 | "type": "boolean", |
785 | 800 | "default": false, |
|
870 | 885 | "items": { |
871 | 886 | "type": "string" |
872 | 887 | } |
| 888 | + }, |
| 889 | + "dart.customDartDapPath": { |
| 890 | + "type": [ |
| 891 | + "null", |
| 892 | + "string" |
| 893 | + ], |
| 894 | + "default": null, |
| 895 | + "description": "The path to a custom Dart Debug Adapter. This setting is intended for use by Dart Debug Adapter developers.", |
| 896 | + "scope": 6 |
| 897 | + }, |
| 898 | + "dart.customFlutterDapPath": { |
| 899 | + "type": [ |
| 900 | + "null", |
| 901 | + "string" |
| 902 | + ], |
| 903 | + "default": null, |
| 904 | + "description": "The path to a custom Flutter Debug Adapter. This setting is intended for use by Dart Debug Adapter developers.", |
| 905 | + "scope": 6 |
873 | 906 | } |
874 | 907 | } |
875 | 908 | }, |
|
901 | 934 | }, |
902 | 935 | "scope": 6 |
903 | 936 | }, |
904 | | - "dart.debugSdkLibraries": { |
905 | | - "type": "boolean", |
906 | | - "default": false, |
907 | | - "markdownDescription": "Whether to mark Dart SDK libraries (`dart:*`) as debuggable, enabling stepping into them while debugging.", |
908 | | - "scope": 3 |
909 | | - }, |
910 | 937 | "dart.flutterSdkPath": { |
911 | 938 | "type": [ |
912 | 939 | "null", |
|
996 | 1023 | "dart.previewBazelWorkspaceCustomScripts": { |
997 | 1024 | "type": "boolean", |
998 | 1025 | "default": false, |
999 | | - "markdownDescription": "EXPERIMENTAL: Whether to look for custom script definitions at `dart/config/intellij-plugins/flutter.json` in Bazel workspaces. Currently supported for macOS and Linux only.", |
| 1026 | + "markdownDescription": "EXPERIMENTAL: Whether to look for custom script definitions at `dart/config/ide/flutter.json` in Bazel workspaces. Currently supported for macOS and Linux only.", |
1000 | 1027 | "scope": 3 |
1001 | 1028 | }, |
| 1029 | + "dart.daemonPort": { |
| 1030 | + "type": "number", |
| 1031 | + "default": false, |
| 1032 | + "markdownDescription": "EXPERIMENTAL: The port where flutter daemon can be accessed if daemon is run remotely. This setting is intended for use by Google developers.", |
| 1033 | + "scope": 4 |
| 1034 | + }, |
1002 | 1035 | "dart.previewCommitCharacters": { |
1003 | 1036 | "type": "boolean", |
1004 | 1037 | "default": false, |
|
0 commit comments