<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mason/lua/nvim-lsp-installer/servers/fsautocomplete, branch main</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/mason/atom/lua/nvim-lsp-installer/servers/fsautocomplete?h=main</id>
<link rel='self' href='http://git.sudomsg.com/mirror/mason/atom/lua/nvim-lsp-installer/servers/fsautocomplete?h=main'/>
<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>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>switch majority of installers to async implementation (#574)</title>
<updated>2022-04-05T22:25:50Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-04-05T22:25:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=999476c324b26223aaf409a84497215e18d74499'/>
<id>urn:sha1:999476c324b26223aaf409a84497215e18d74499</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>fix(fsharp): update cmd (#290)</title>
<updated>2021-11-28T13:58:00Z</updated>
<author>
<name>Access</name>
<email>3237126351@qq.com</email>
</author>
<published>2021-11-28T13:58:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=f5734a4a64d0c220e59ee53b80756224e93a0236'/>
<id>urn:sha1:f5734a4a64d0c220e59ee53b80756224e93a0236</id>
<content type='text'>
Fixes #288.</content>
</entry>
<entry>
<title>fsautocomplete: don't use shell as an intermediary (#258)</title>
<updated>2021-11-11T15:17:06Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-11-11T15:17:06Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=c425ab9f384ef643ea6a669b5f546ac186ab2dd1'/>
<id>urn:sha1:c425ab9f384ef643ea6a669b5f546ac186ab2dd1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use c#, f# to be in line with languages defined in the README</title>
<updated>2021-11-11T12:35:18Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-11-11T12:30:00Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=4c566023431f0d1859b6a22538d85e2b7fb64972'/>
<id>urn:sha1:4c566023431f0d1859b6a22538d85e2b7fb64972</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add fsautocomplete LS for F# (#255)</title>
<updated>2021-11-11T12:32:34Z</updated>
<author>
<name>kaashyapan</name>
<email>25821867+kaashyapan@users.noreply.github.com</email>
</author>
<published>2021-11-11T12:32:34Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=c82653a71ba04a01b3497bb276177aab4a3bd611'/>
<id>urn:sha1:c82653a71ba04a01b3497bb276177aab4a3bd611</id>
<content type='text'>
</content>
</entry>
</feed>
