|
1 | 1 | # Elixir Language Server (ElixirLS)
|
| 2 | + |
2 | 3 | [](github/actions/workflow/status/elixir-lsp/elixir-ls/ci.yml?branch=master)
|
3 | 4 | [](https://elixir-lang.slack.com/archives/C7D272G6N)
|
4 | 5 |
|
@@ -111,13 +112,12 @@ ElixirLS generally aims to support the last three released versions of Elixir an
|
111 | 112 | | any | <= 1.12 | No | No support for Code.Fragment |
|
112 | 113 | | 22 | 1.12 | Yes | Erlang docs not working (requires EIP 48) |
|
113 | 114 | | 23 | 1.12 - 1.14 | Yes | None |
|
114 |
| -| 24 | 1.12 - 1.15 | Yes | None | |
115 |
| -| 25 | 1.13.4 - 1.15 | Yes | None | |
| 115 | +| 24 | 1.12 - 1.16 | Yes | None | |
| 116 | +| 25 | 1.13.4 - 1.16 | Yes | None | |
116 | 117 | | 26.0.0 - 26.0.1 | any | No | [#886](https://github.com/elixir-lsp/elixir-ls/issues/886) |
|
117 |
| -| >= 26.0.2 | 1.14.5 - 1.15 | *nix only | [#927](https://github.com/elixir-lsp/elixir-ls/issues/927) | |
118 |
| -| >= 26.1.0 | 1.14.5 - 1.15 | Yes | [#1023](https://github.com/elixir-lsp/elixir-ls/issues/1023) | |
119 |
| -| any | 1.15.5 | Yes | Broken formatter [#975](https://github.com/elixir-lsp/elixir-ls/issues/975) | |
120 |
| - |
| 118 | +| 26.0.2 - 26.1.2 | 1.14.5 - 1.16 | *nix only | [#927](https://github.com/elixir-lsp/elixir-ls/issues/927), [#1023](https://github.com/elixir-lsp/elixir-ls/issues/1023) | |
| 119 | +| >= 26.2.0 | 1.14.5 - 1.16 | Yes | None | |
| 120 | +| any | 1.15.5 | Yes | Broken formatter [#975](https://github.com/elixir-lsp/elixir-ls/issues/975) | |
121 | 121 |
|
122 | 122 | ### Version management
|
123 | 123 |
|
@@ -374,13 +374,13 @@ On Fedora Linux, if you only install the Elixir package you will not have a full
|
374 | 374 |
|
375 | 375 | If you are seeing the message "Invalid beam file or no abstract code", you need to make sure that your Mix project is set to use the `elixirc` compiler option `--debug-info`, which can be done by adding the following line to your `mix.exs` `project` section:
|
376 | 376 |
|
377 |
| -``` |
| 377 | +```elixir |
378 | 378 | elixirc_options: [debug_info: Mix.env() == :dev]
|
379 | 379 | ```
|
380 | 380 |
|
381 | 381 | For example:
|
382 | 382 |
|
383 |
| -``` |
| 383 | +```elixir |
384 | 384 | defmodule MyApp.MixProject do
|
385 | 385 | use Mix.Project
|
386 | 386 |
|
|
0 commit comments