<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvim-lspconfig/lua/nvim_lsp/bashls.lua, branch docs</title>
<subtitle>[no description]</subtitle>
<id>http://git.sudomsg.com/mirror/nvim-lspconfig/atom?h=docs</id>
<link rel='self' href='http://git.sudomsg.com/mirror/nvim-lspconfig/atom?h=docs'/>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/'/>
<updated>2020-09-06T08:49:21Z</updated>
<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>config: remove unnecessary code comennts and utf8 option</title>
<updated>2020-05-18T11:14:36Z</updated>
<author>
<name>Hirokazu Hata</name>
<email>h.hata.ai.t@gmail.com</email>
</author>
<published>2020-05-18T11:14:36Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=b74099cf2734f75a94cd47cc37cef3f721f3b664'/>
<id>urn:sha1:b74099cf2734f75a94cd47cc37cef3f721f3b664</id>
<content type='text'>
Remove meaningless code comments because they are increased by copy and paste.
Currently, utf8 options are only supported by clangd, so remove them from unnecessary ones.
</content>
</entry>
<entry>
<title>bashls: Change root_dir to pwd</title>
<updated>2020-03-20T22:13:55Z</updated>
<author>
<name>Peter Lithammer</name>
<email>peter.lithammer@gmail.com</email>
</author>
<published>2020-03-20T22:13:55Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=74f643f807a420d6750f56d8dd7cb62b608fe83f'/>
<id>urn:sha1:74f643f807a420d6750f56d8dd7cb62b608fe83f</id>
<content type='text'>
The bash language server (if provided) will try to initialize all shell
files it can find in the `root_dir`. The takes forever and probably
isn't great from a security perspective.

&gt; If the rootPath is provided it will initialize all shell files it can
&gt; find anywhere on that path. This non-exhaustive glob is used to
&gt; preload the parser.

https://github.com/bash-lsp/bash-language-server/blob/790f5a5203af62755d6cec38ef1620e2b2dc0dcd/server/src/analyser.ts#L33-L35
</content>
</entry>
<entry>
<title>window/showMessage: the display level can be set for 'window/showMessage' notification</title>
<updated>2020-02-24T02:22:34Z</updated>
<author>
<name>Hirokazu Hata</name>
<email>h.hata.ai.t@gmail.com</email>
</author>
<published>2020-02-24T01:45:27Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=0852678e3cf1111df83d20a24545414fa0af8f63'/>
<id>urn:sha1:0852678e3cf1111df83d20a24545414fa0af8f63</id>
<content type='text'>
related with #127
</content>
</entry>
<entry>
<title>lua: remove `settings = {}`</title>
<updated>2020-02-16T06:06:17Z</updated>
<author>
<name>Hirokazu Hata</name>
<email>h.hata.ai.t@gmail.com</email>
</author>
<published>2020-02-16T06:02:37Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=fbe5aedad863dfb928ae68739b3f020332f98216'/>
<id>urn:sha1:fbe5aedad863dfb928ae68739b3f020332f98216</id>
<content type='text'>
configs.lua set settings vim.empty_dict() as default
</content>
</entry>
<entry>
<title>rename "skeleton" to "configs" #100</title>
<updated>2020-01-31T08:00:50Z</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2020-01-31T08:00:50Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=b487481e19ab803f2fac1c7acc10c83c743dd39b'/>
<id>urn:sha1:b487481e19ab803f2fac1c7acc10c83c743dd39b</id>
<content type='text'>
`nvim_lsp/skeleton.lua` is not really a skeleton, it's a `configs`
class that provides

1. actual functionality
2. a bunch of configs

Each config is added to the `configs` object (FKA "skeleton") as
a property. Those configs are not "templates", they are "configs". So we
should clean up the wording in various places to say "config" instead of
"skeleton"/"template".

Closes #64</content>
</entry>
<entry>
<title>Change root_dir for single instance servers (#33)</title>
<updated>2019-11-17T21:51:29Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-17T21:51:29Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=5003b82def71e56f9c1bba05c1519b3a0949dbff'/>
<id>urn:sha1:5003b82def71e56f9c1bba05c1519b3a0949dbff</id>
<content type='text'>
* Use os_homedir as root_dir for single instance servers.
</content>
</entry>
<entry>
<title>Fix docs and add util.once (#31)</title>
<updated>2019-11-17T21:06:11Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-17T21:06:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=c1292d313ef81868ad829461bd6403106e80259e'/>
<id>urn:sha1:c1292d313ef81868ad829461bd6403106e80259e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Improve docgen (#27)</title>
<updated>2019-11-17T17:32:11Z</updated>
<author>
<name>Ashkan Kiani</name>
<email>ashkan.k.kiani@gmail.com</email>
</author>
<published>2019-11-17T17:32:11Z</published>
<link rel='alternate' type='text/html' href='http://git.sudomsg.com/mirror/nvim-lspconfig/commit/?id=483b8a2850d61c0fb4f02dcf09b873b4b26c6791'/>
<id>urn:sha1:483b8a2850d61c0fb4f02dcf09b873b4b26c6791</id>
<content type='text'>
- Automatically generate the `Implemented servers` section.
- Remove dependency on `cat`
- Provide scripts/docgen.sh which actually reports errors.</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>
</feed>
