<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvim-lspconfig/autoload, branch master</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/nvim-lspconfig/atom/autoload?h=master</id>
<link rel='self' href='http://git.sudomsg.com/mirror/nvim-lspconfig/atom/autoload?h=master'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/'/>
<updated>2022-01-05T19:04:18Z</updated>
<entry>
<title>chore: remove healthcheck (#1636)</title>
<updated>2022-01-05T19:04:18Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2022-01-05T19:04:18Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3'/>
<id>urn:sha1:3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3</id>
<content type='text'>
Previously, lspconfig had a recommended healthcheck. This was mostly
noise as its predominant use was to check if a server was installed.

This check was not accurate as vim.fn.executable is extremely primitive
and does not consider cmd_env (forwarded to uv_spawn) or language servers
that are run via an interpreter.

Furthermore, checking if a language server is executable will no longer
be a useful signal once TCP support (which allows for connecting to
already running or remote servers).

Remove for now.</content>
</entry>
<entry>
<title>chore: clean up imports</title>
<updated>2021-11-26T04:46:21Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2021-11-25T17:40:39Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=97da7ed12e7e0d86e735e38a8170e941d4ed3e9a'/>
<id>urn:sha1:97da7ed12e7e0d86e735e38a8170e941d4ed3e9a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix(checkhealth): rename check_health to check (#1296)</title>
<updated>2021-10-05T23:22:26Z</updated>
<author>
<name>Matthieu Coudron</name>
<email>teto@users.noreply.github.com</email>
</author>
<published>2021-10-05T23:22:26Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=66659884c36dadd1f445f9012fcf4e7600286d3e'/>
<id>urn:sha1:66659884c36dadd1f445f9012fcf4e7600286d3e</id>
<content type='text'>
as mandated by https://github.com/neovim/neovim/pull/15259#issuecomment-934241413</content>
</entry>
<entry>
<title>Rename nvim_lsp to lspconfig</title>
<updated>2020-09-06T08:49:21Z</updated>
<author>
<name>Hirokazu Hata</name>
<email>h.hata.ai.t@gmail.com</email>
</author>
<published>2020-09-06T08:49:21Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de'/>
<id>urn:sha1:ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de</id>
<content type='text'>
</content>
</entry>
<entry>
<title>checkhealth: add checkhealth nvim_lsp command</title>
<updated>2020-02-13T17:08:45Z</updated>
<author>
<name>Matthieu Coudron</name>
<email>mattator@gmail.com</email>
</author>
<published>2020-02-07T00:15:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=6b8093c1f18f10a40121ab60957985cbf8da1987'/>
<id>urn:sha1:6b8093c1f18f10a40121ab60957985cbf8da1987</id>
<content type='text'>
Only check command for now
</content>
</entry>
<entry>
<title>remove Vimscript wrapper nvim_lsp#setup()</title>
<updated>2019-12-08T11:04:13Z</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2019-12-08T06:10:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=56192022b25bf8e71e84e80c6a0936efd88c2f2b'/>
<id>urn:sha1:56192022b25bf8e71e84e80c6a0936efd88c2f2b</id>
<content type='text'>
Lua is easy to use from Vimscript, there is no reason to have multiple
ways to work with nvim-lsp.

- massively clarifies the "story" that users need to comprehend
- reduces surface area, maintenance, tests
- avoids constant "Vim or Lua" dance in the documentation
- simplifies discussions, tutorials, etc.
- avoids confusing situation for users that start with Vimscript but
  later need Lua-only features
</content>
</entry>
<entry>
<title>Redo installation. (#17)</title>
<updated>2019-11-16T01:26:22Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-16T01:26:22Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=5686a90890105e6271307e86b472f729af1cc4f8'/>
<id>urn:sha1:5686a90890105e6271307e86b472f729af1cc4f8</id>
<content type='text'>
* Redo installation.

Servers which want to be auto installed should specify
skeleton[name].install()
and it will be automatically added to the list of installable servers.

- Add :LspInstall and :LspInstallInfo
- Auto generate docs for servers with .install() available.
- Add util.npm_installer
- Refactor utf8 capabilities common config into a single function
- Add contribution notes.
- Also expose util.base_install_dir for other installers potentially
- Fix tsserver's arguments and add javascript filetypes</content>
</entry>
<entry>
<title>Rename to nvim_lsp and nvim-lsp.</title>
<updated>2019-11-14T09:07:09Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-14T09:07:09Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=9666b63a70e28b1eef084489a44ea4b4bb4ae65a'/>
<id>urn:sha1:9666b63a70e28b1eef084489a44ea4b4bb4ae65a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add contributing docs and clangd config.</title>
<updated>2019-11-14T08:50:01Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-14T08:50:01Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=8bb6448e79e94e8d1bca715d8dda3ce6e850bf18'/>
<id>urn:sha1:8bb6448e79e94e8d1bca715d8dda3ce6e850bf18</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bugfix</title>
<updated>2019-11-14T08:19:42Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-14T08:18:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=23ce421f07cb9307f9b6e81301a83848e52639bb'/>
<id>urn:sha1:23ce421f07cb9307f9b6e81301a83848e52639bb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add gopls, path utils, and root_pattern pattern.</title>
<updated>2019-11-14T02:08:33Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-14T02:08:33Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=997366c95e4ad81d1b79543d1cb787f446c021a5'/>
<id>urn:sha1:997366c95e4ad81d1b79543d1cb787f446c021a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add skeleton and refactor texlab.</title>
<updated>2019-11-13T18:45:30Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-13T18:45:30Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=b97bcbeddc3902911c2e9ab5f13b5327a81c745f'/>
<id>urn:sha1:b97bcbeddc3902911c2e9ab5f13b5327a81c745f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add vim function for texlab.</title>
<updated>2019-11-13T18:24:42Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-13T18:24:42Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=3179f20734c5171b4b49ae8f9601bbfe57dfe625'/>
<id>urn:sha1:3179f20734c5171b4b49ae8f9601bbfe57dfe625</id>
<content type='text'>
</content>
</entry>
</feed>
