All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 ===============================================================================
2 ALE Dart Integration *ale-dart-options*
5 ===============================================================================
6 analysis_server *ale-dart-analysis_server*
9 -------------------------------------------------------------------------------
12 Install Dart via whatever means. `analysis_server` will be included in the SDK.
14 In case that `dart` is not in your path, try to set the executable option to
15 its absolute path. : >
16 " Set the executable path for dart to the absolute path to it.
17 let g:ale_dart_analysis_server_executable = '/usr/local/bin/dart'
20 -------------------------------------------------------------------------------
22 *ale-options.dart_analysis_server_executable*
23 *g:ale_dart_analysis_server_executable*
24 *b:ale_dart_analysis_server_executable*
25 dart_analysis_server_executable
26 g:ale_dart_analysis_server_executable
30 This variable can be set to change the path of dart.
32 *ale-options.dart_analysis_server_enable_language_server*
33 *g:ale_dart_analysis_server_enable_language_server*
34 *b:ale_dart_analysis_server_enable_language_server*
35 dart_analysis_server_enable_language_server
36 g:ale_dart_analysis_server_enable_language_server
40 When set to `1`, ALE will use the new `dart language-server` command,
41 available from Dart version 2.16.0, to launch the language server. When set
42 to `0`, ALE will instead use the deprecated
43 `./snapshots/analysis_server.dart.snapshot --lsp` command used by older
47 ===============================================================================
48 dart-analyze *ale-dart-analyze*
51 -------------------------------------------------------------------------------
54 Installing Dart should probably ensure that `dart` is in your `$PATH`.
56 In case it is not, try to set the executable option to its absolute path. : >
57 " Set the executable path for dart to the absolute path to it.
58 let g:ale_dart_format_executable = '/usr/lib/dart/bin/dart'
61 Install Dart via whatever means. `dart analyze` will be included in the SDK.
64 -------------------------------------------------------------------------------
66 *ale-options.dart_analyze_executable*
67 *g:ale_dart_analyze_executable*
68 *b:ale_dart_analyze_executable*
69 dart_analyze_executable
70 g:ale_dart_analyze_executable
74 This variable can be set to specify an absolute path to the
75 format executable (or to specify an alternate executable).
78 ===============================================================================
79 dart-format *ale-dart-format*
82 -------------------------------------------------------------------------------
85 Installing Dart should probably ensure that `dart` is in your `$PATH`.
87 In case it is not, try to set the executable option to its absolute path: >
89 " Set the executable path for dart to the absolute path to it.
90 let g:ale_dart_format_executable = '/usr/lib/dart/bin/dart'
93 -------------------------------------------------------------------------------
95 *ale-options.dart_format_executable*
96 *g:ale_dart_format_executable*
97 *b:ale_dart_format_executable*
98 dart_format_executable
99 g:ale_dart_format_executable
103 This variable can be set to specify an absolute path to the
104 format executable (or to specify an alternate executable).
106 *ale-options.dart_format_options*
107 *g:ale_dart_format_options*
108 *b:ale_dart_format_options*
110 g:ale_dart_format_options
114 This variable can be set to pass additional options to the dart format fixer.
117 ===============================================================================
118 dartfmt *ale-dart-dartfmt*
121 -------------------------------------------------------------------------------
124 Installing Dart should probably ensure that `dartfmt` is in your `$PATH`.
126 In case it is not, try to set the executable option to its absolute path: >
128 " Set the executable path for dartfmt to the absolute path to it.
129 let g:ale_dart_dartfmt_executable = '/usr/lib/dart/bin/dartfmt'
132 -------------------------------------------------------------------------------
134 *ale-options.dart_dartfmt_executable*
135 *g:ale_dart_dartfmt_executable*
136 *b:ale_dart_dartfmt_executable*
137 dart_dartfmt_executable
138 g:ale_dart_dartfmt_executable
142 This variable can be set to specify an absolute path to the
143 dartfmt executable (or to specify an alternate executable).
145 *ale-options.dart_dartfmt_options*
146 *g:ale_dart_dartfmt_options*
147 *b:ale_dart_dartfmt_options*
149 g:ale_dart_dartfmt_options
153 This variable can be set to pass additional options to the dartfmt fixer.
156 ===============================================================================
157 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: