<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mason/lua/nvim-lsp-installer/servers/angularls/init.lua, branch feat/socket-integration</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/mason/atom/lua/nvim-lsp-installer/servers/angularls/init.lua?h=feat%2Fsocket-integration</id>
<link rel='self' href='http://git.sudomsg.com/mirror/mason/atom/lua/nvim-lsp-installer/servers/angularls/init.lua?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>chore(functional): restructure and extend functional modules (#703)</title>
<updated>2022-05-17T11:49:18Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-05-17T11:49:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=9fa0bb2822af391db96687ad6ddb66ddb3529c58'/>
<id>urn:sha1:9fa0bb2822af391db96687ad6ddb66ddb3529c58</id>
<content type='text'>
</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>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>fix(angularls): prepend cmd with 'cmd.exe /C' on Windows (#420)</title>
<updated>2022-01-12T16:10:53Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2022-01-12T16:10:53Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=1ddcaa2f07a16925260e565390e015be474a7da1'/>
<id>urn:sha1:1ddcaa2f07a16925260e565390e015be474a7da1</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(angularls): fix --ngProbeLocation (#323)</title>
<updated>2021-12-08T06:15:33Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-12-08T06:15:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=a1ff6f451340dff56a70ada03daf6362f0f829a1'/>
<id>urn:sha1:a1ff6f451340dff56a70ada03daf6362f0f829a1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(angularls): also provide `cmd` property</title>
<updated>2021-12-05T16:43:48Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-12-05T03:07:57Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=4f5de77fab742ab2ca5512e7f3c9881cacdaf8eb'/>
<id>urn:sha1:4f5de77fab742ab2ca5512e7f3c9881cacdaf8eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(angularls): also use new_root_dir for probe locations (#302)</title>
<updated>2021-12-03T14:47:24Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-12-03T14:47:24Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=4df84d7d3e8bcc9b98a1436b6b4155b3a727d41d'/>
<id>urn:sha1:4df84d7d3e8bcc9b98a1436b6b4155b3a727d41d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>angularls: overload on_new_config with new probe locations (#269)</title>
<updated>2021-11-19T04:40:13Z</updated>
<author>
<name>Lucas Viana</name>
<email>oviana@outlook.com</email>
</author>
<published>2021-11-19T04:40:13Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=c3e6083b58d1f8c6f5988a63c2ade696f71a8644'/>
<id>urn:sha1:c3e6083b58d1f8c6f5988a63c2ade696f71a8644</id>
<content type='text'>
</content>
</entry>
<entry>
<title>angularls: use server root dir for probe locations (#266)</title>
<updated>2021-11-18T14:13:40Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-11-18T14:13:40Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=5be3cf6e91898ee375e5bf4dd59a4598a6aeb6dc'/>
<id>urn:sha1:5be3cf6e91898ee375e5bf4dd59a4598a6aeb6dc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>angularls: Add typescript dependency (#261)</title>
<updated>2021-11-18T09:56:15Z</updated>
<author>
<name>ilyas akın</name>
<email>ashnwor@gmail.com</email>
</author>
<published>2021-11-18T09:56:15Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=8f9048abe1d41cb81a60b67dfee354e04889b7e7'/>
<id>urn:sha1:8f9048abe1d41cb81a60b67dfee354e04889b7e7</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>feat: autogen metadata table(s) (#159)</title>
<updated>2021-10-18T12:04:54Z</updated>
<author>
<name>kylo252</name>
<email>59826753+kylo252@users.noreply.github.com</email>
</author>
<published>2021-10-18T12:04:54Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=c87e2fec9f54a438ddfd50642426a2dd628de180'/>
<id>urn:sha1:c87e2fec9f54a438ddfd50642426a2dd628de180</id>
<content type='text'>
Co-authored-by: William Boman &lt;william@redwill.se&gt;</content>
</entry>
<entry>
<title>add keybindings to UI window (#140)</title>
<updated>2021-10-10T17:20:16Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-10-10T17:20:16Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=5f54148153a878cc9cbe370adccda0f706251d89'/>
<id>urn:sha1:5f54148153a878cc9cbe370adccda0f706251d89</id>
<content type='text'>
- Allows for expanding servers to view more information about it.
- Allows for installing/reinstalling/uninstalling servers.

The default keybindings is an attempt to mimic vim-fugitive's :Git
maps, and these can be overriden.

The keybinding implementation in display.lua is a bit hacky, but it
works and the "public" API is at least manageable. This will also
open up for adding more metadata in the future, such as filetype
information, currently installed version, latest available version,
etc.

Also there's Cowth Vader.</content>
</entry>
<entry>
<title>optimize io (70%+ startup speedups) (#93)</title>
<updated>2021-09-17T14:05:20Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-09-17T14:05:20Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=9551bbc1e207ea9a9d436f1bf02a22afc33f6aa6'/>
<id>urn:sha1:9551bbc1e207ea9a9d436f1bf02a22afc33f6aa6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>stylua</title>
<updated>2021-08-14T22:47:15Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-08-14T21:19:23Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=d8f4f30463fcfc4b8b60811dbe195aba86917966'/>
<id>urn:sha1:d8f4f30463fcfc4b8b60811dbe195aba86917966</id>
<content type='text'>
</content>
</entry>
<entry>
<title>npm, pip3: add executable(root_dir, executable) util function</title>
<updated>2021-07-10T14:02:44Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-07-10T14:02:44Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=156478b14cf4ce19262253b044aca27f5f448bc5'/>
<id>urn:sha1:156478b14cf4ce19262253b044aca27f5f448bc5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>angularls: fix rootpath</title>
<updated>2021-07-04T17:53:17Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-07-04T17:53:17Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=1d8d286013d8777d6e1976a42ef9fffbbc652782'/>
<id>urn:sha1:1d8d286013d8777d6e1976a42ef9fffbbc652782</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add angularls (#27)</title>
<updated>2021-07-04T17:37:29Z</updated>
<author>
<name>William Boman</name>
<email>william@redwill.se</email>
</author>
<published>2021-07-04T17:37:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/mason/commit/?id=afe108bda0fceb3ed4f56f8b708b4004c4557656'/>
<id>urn:sha1:afe108bda0fceb3ed4f56f8b708b4004c4557656</id>
<content type='text'>
</content>
</entry>
</feed>
