Peter Tripp
0fe88a88b1
elixir: Bump to v0.1.2 ( #22219 )
...
Includes:
- https://github.com/zed-industries/zed/pull/21666
- https://github.com/zed-industries/zed/pull/20206
Release Notes:
- N/A
2024-12-18 23:22:19 +00:00
João Otávio Biondo
74d7ce2d2b
elixir: Improve ElixirLS LSP autocomplete to show labelDetails information ( #21666 )
...
Closes https://github.com/zed-industries/zed/issues/19688
Release Notes:
- Improved ElixirLS LSP autocomplete to show module, function and struct
field details
![image](https://github.com/user-attachments/assets/2f05183f-8f7f-42c3-ba14-28fc58522488 )
![image](https://github.com/user-attachments/assets/bfdea373-79ec-4dec-a9c7-5d15ad9403ee )
![image](https://github.com/user-attachments/assets/c0fd66d5-0e01-4e1e-a2d5-0a78d38e0b72 )
2024-12-12 16:16:23 -08:00
Marshall Bowers
30e081b3f7
elixir: Bump to v0.1.1 ( #19437 )
...
This PR bumps the Elixir extension to v0.1.1.
Changes:
- https://github.com/zed-industries/zed/pull/19135
Release Notes:
- N/A
2024-10-18 18:31:08 -04:00
Peter Tripp
a4357c429a
elixir: Bump to v0.1.0 ( #19250 )
...
Includes:
- https://github.com/zed-industries/zed/pull/18024
- https://github.com/zed-industries/zed/pull/17488
- https://github.com/zed-industries/zed/pull/16985
2024-10-16 08:42:07 -04:00
Marshall Bowers
1f0b7d45ff
extensions: Upgrade zed_extension_api
to v0.1.0 ( #16955 )
...
This PR updates the `zed_extension_api` to v0.1.0 for the extensions
that live in this repo.
The changes in that version of additive, so none of the extensions need
to change their usage in order to upgrade.
Release Notes:
- N/A
2024-08-27 12:00:43 -04:00
Marshall Bowers
c658ad8380
elixir: Bump to v0.0.9 ( #16879 )
...
This PR bumps the Elixir extension to v0.0.9.
Changes:
- https://github.com/zed-industries/zed/pull/16819
Release Notes:
- N/A
2024-08-26 10:58:49 -04:00
Marshall Bowers
77c08fade5
elixir: Bump to v0.0.8 ( #16495 )
...
This PR bumps the Elixir extension to v0.0.8.
Changes:
- #16382
Release Notes:
- N/A
2024-08-19 19:15:41 -04:00
Marshall Bowers
591b579ccf
elixir: Bump to v0.0.7 ( #15867 )
...
This PR bumps the Elixir extension to v0.0.7.
Changes:
- #14831
Release Notes:
- N/A
2024-08-06 13:07:47 -04:00
Marshall Bowers
1607e4e0e1
elixir: Bump to v0.0.6 ( #14657 )
...
This PR bumps the Elixir extension to v0.0.6.
Changes:
- #14655
Release Notes:
- N/A
2024-07-17 11:14:52 -04:00
Piotr Osiewicz
910f668f4d
php/elixir: Bump extensions versions to 0.0.6 and 0.0.5 ( #12636 )
...
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Includes:
- https://github.com/zed-industries/zed/pull/12526
- https://github.com/zed-industries/zed/pull/11879
- https://github.com/zed-industries/zed/pull/12467
Release Notes:
- N/A
2024-06-04 13:24:31 +02:00
Marshall Bowers
970a5957cc
elixir: Bump to v0.0.4 ( #11446 )
...
This PR bumps the Elixir extension to v0.0.4.
Changes:
- https://github.com/zed-industries/zed/pull/11363
Release Notes:
- N/A
2024-05-06 12:41:50 -04:00
Marshall Bowers
899f7113ba
elixir: Bump to v0.0.3 ( #11358 )
...
This PR bumps the Elixir extension to v0.0.3.
Changes:
- https://github.com/zed-industries/zed/pull/11318
Release Notes:
- N/A
2024-05-03 11:12:35 -04:00
Marshall Bowers
d61c47d2a9
elixir: Bump to v0.0.2 ( #11303 )
...
This PR bumps the Elixir extension to v0.0.2.
Changes:
- https://github.com/zed-industries/zed/pull/11302
Release Notes:
- N/A
2024-05-02 11:26:04 -04:00
Marshall Bowers
544bd490ac
Extract Elixir extension ( #10948 )
...
This PR extracts Elixir support into an extension and removes the
built-in Elixir support from Zed.
As part of this, [Lexical](https://github.com/lexical-lsp/lexical ) has
been added as an available language server for Elixir.
Since the Elixir extension provides three different language servers,
you'll need to use the `language_servers` setting to select the one you
want to use:
#### Elixir LS
```json
{
"languages": {
"Elixir": {
"language_servers": [ "elixir-ls", "!next-ls", "!lexical", "..."]
}
}
}
```
#### Next LS
```json
{
"languages": {
"Elixir": {
"language_servers": [ "next-ls", "!elixir-ls", "!lexical", "..."]
}
}
}
```
#### Lexical
```json
{
"languages": {
"Elixir": {
"language_servers": [ "lexical", "!elixir-ls", "!next-ls", "..."]
}
}
}
```
These can either go in your user settings or your project settings.
Release Notes:
- Removed built-in support for Elixir, in favor of making it available
as an extension.
2024-04-25 13:59:14 -04:00