<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mason/lua/nvim-lsp-installer/servers/erlangls, branch feat/socket-integration</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/mason/atom/lua/nvim-lsp-installer/servers/erlangls?h=feat%2Fsocket-integration</id>
<link rel='self' href='http://git.sudomsg.com/mirror/mason/atom/lua/nvim-lsp-installer/servers/erlangls?h=feat%2Fsocket-integration'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/'/>
<updated>2022-07-06T22:39:59Z</updated>
<entry>
<title>mason.nvim</title>
<updated>2022-07-06T22:39:59Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-07-06T17:41:43Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=5f634e0c37e723fc0c33e06b4fd5c2180178db40'/>
<id>urn:sha1:5f634e0c37e723fc0c33e06b4fd5c2180178db40</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(erlangls): follow git tags (#708)</title>
<updated>2022-05-18T22:07:50Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-05-18T22:07:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=ec532c36eeed36ded785696727a85a9a00f71f22'/>
<id>urn:sha1:ec532c36eeed36ded785696727a85a9a00f71f22</id>
<content type='text'>
Closes #683.</content>
</entry>
<entry>
<title>chore: further decouple module structure (#685)</title>
<updated>2022-05-11T14:10:57Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-05-11T14:10:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=5e3385d90668c792919c7e2791620a6c0d569538'/>
<id>urn:sha1:5e3385d90668c792919c7e2791620a6c0d569538</id>
<content type='text'>
</content>
</entry>
<entry>
<title>chore: remove deprecated modules (#682)</title>
<updated>2022-05-10T10:20:22Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-05-10T10:20:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=f60f53d8c2d304e8e6d335215ea0b781f80599f0'/>
<id>urn:sha1:f60f53d8c2d304e8e6d335215ea0b781f80599f0</id>
<content type='text'>
- https://github.com/williamboman/nvim-lsp-installer/wiki/Async-infrastructure-changes-notice
- https://github.com/williamboman/nvim-lsp-installer/discussions/636</content>
</entry>
<entry>
<title>chore: refactor remaining installers to async impl (#616)</title>
<updated>2022-04-21T10:09:59Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-04-21T10:09:59Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=b68fcc6bb2c770495ff8e2508c06dfdd49abcc80'/>
<id>urn:sha1:b68fcc6bb2c770495ff8e2508c06dfdd49abcc80</id>
<content type='text'>
</content>
</entry>
<entry>
<title>write install receipts (#379)</title>
<updated>2022-01-03T14:12:53Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-01-03T14:12:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=e8530f4059279a0d6b5e5f8891d04ffb1ade29a3'/>
<id>urn:sha1:e8530f4059279a0d6b5e5f8891d04ffb1ade29a3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>leverage PATH for locating local executables (#283)</title>
<updated>2022-01-02T16:54:56Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-01-02T16:54:56Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=095ab4eb6a02d5fd3ea4b782a0e868e2c65e4427'/>
<id>urn:sha1:095ab4eb6a02d5fd3ea4b782a0e868e2c65e4427</id>
<content type='text'>
1. This is a breaking change for the following servers, which will have to be
reinstalled:

 - ltex
 - clangd

2. This is a breaking change for users who reach into the default options (for
   example via server:get_default_options()) to access the `cmd` property.
   nvim-lsp-installer no longer provides the `cmd` (except in a few
   instances), but instead provides an amended PATH which allows neovim's LSP
   client to locate the locally installed executable.

   To access the `cmd`, simply access it via lspconfig instead, for example
   like so:

    local default_config = require("lspconfig.server_configurations.rust_analyzer").default_config
    print("I can now access the cmd governed by lspconfig:", default_config.cmd)

3. This is a breaking change for 3rd party use cases that makes use of the
   `executable()` APIs (e.g., `npm.executable(root_dir, "tsserver")`). The
   recommended usage is to instead to use the canonical name of the command
   ("tsserver"), while providing an amended PATH, for example:

    local npm = require("nvim-lsp-installer.installers.npm")
    local server = server.Server:new {
        ...,
        root_dir = root_dir,
        installer = npm.packages { "tsserver" },
        default_options = {
            cmd = { "tsserver" },
            cmd_env = npm.env(root_dir),
        }
    }</content>
</entry>
<entry>
<title>erlangls: use rebar3 cmd consistently</title>
<updated>2021-12-05T22:24:11Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-12-05T22:24:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=167e8ea965a5110f1ed8bd0985eae915de58340b'/>
<id>urn:sha1:167e8ea965a5110f1ed8bd0985eae915de58340b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove {pre,post}_setup functions (#250)</title>
<updated>2021-11-08T14:50:23Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-11-08T14:50:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d'/>
<id>urn:sha1:c9dbc8afc2d56227ed0cba5a3348b8dd170e3a1d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add language aliases to :LspInstall (#232)</title>
<updated>2021-11-06T15:01:31Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-11-06T15:01:31Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=b5059efeaadecbc96b042d0866e47f2fb3e7dff9'/>
<id>urn:sha1:b5059efeaadecbc96b042d0866e47f2fb3e7dff9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>run installations in tmpdir (#199)</title>
<updated>2021-10-30T09:05:50Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-10-30T09:05:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=8e6615916de6f7d2491e47f8a97870eef0ad36d3'/>
<id>urn:sha1:8e6615916de6f7d2491e47f8a97870eef0ad36d3</id>
<content type='text'>
Resolves #154.</content>
</entry>
<entry>
<title>installers/context: rename functions (#170)</title>
<updated>2021-10-17T21:39:47Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-10-17T21:39:47Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=dd4afb08b93db3d53d0d70db749fc20bb487e1c3'/>
<id>urn:sha1:dd4afb08b93db3d53d0d70db749fc20bb487e1c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add-erlangls (#144)</title>
<updated>2021-10-12T21:13:44Z</updated>
<author>
<name>Iván Giovanazzi</name>
<email>43305758+ivano9@users.noreply.github.com</email>
</author>
<published>2021-10-12T21:13:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=cb36bb9837e7ee2b1b1207ecde0c9c3a74a12d71'/>
<id>urn:sha1:cb36bb9837e7ee2b1b1207ecde0c9c3a74a12d71</id>
<content type='text'>
Co-authored-by: William Boman &lt;william@redwill.se&gt;</content>
</entry>
</feed>
