<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/runtime/autoload/health/provider.vim, branch v0.2.0</title>
<subtitle>Neovim fork with Rahm's personal hacks.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/'/>
<entry>
<title>win: health.vim/check_ruby(): find `gem.cmd` #6608</title>
<updated>2017-04-28T23:57:09+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-04-28T14:41:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=51a2d8dc36b56125c81a085a773eb47671eec7f0'/>
<id>51a2d8dc36b56125c81a085a773eb47671eec7f0</id>
<content type='text'>
gem.cmd is not found by system(['gem', ...]), pass it to cmd.exe.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
gem.cmd is not found by system(['gem', ...]), pass it to cmd.exe.
</pre>
</div>
</content>
</entry>
<entry>
<title>health.vim: syntax/style fixes (#6614)</title>
<updated>2017-04-28T21:18:10+00:00</updated>
<author>
<name>Daniel Hahler</name>
<email>github@thequod.de</email>
</author>
<published>2017-04-28T21:18:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=59be0b42806c39131f76f89c554f0a24e82514a8'/>
<id>59be0b42806c39131f76f89c554f0a24e82514a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>health.vim: 'guicursor' advice #6506</title>
<updated>2017-04-20T20:44:51+00:00</updated>
<author>
<name>TJ DeVries</name>
<email>timothydvrs1234@gmail.com</email>
</author>
<published>2017-04-12T14:37:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=19646a2985e54dfc561a90a70054522afc052a45'/>
<id>19646a2985e54dfc561a90a70054522afc052a45</id>
<content type='text'>
Also:
- Mark provider sections as "(optional)".
- Fix help-link substitution to support single-quoted tags.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also:
- Mark provider sections as "(optional)".
- Fix help-link substitution to support single-quoted tags.
</pre>
</div>
</content>
</entry>
<entry>
<title>health.vim: Set 'iskeyword' to that of ft=help.</title>
<updated>2017-04-19T02:03:08+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-04-17T23:57:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=440133e0d5d576e46bd5ffa555f6a9c534789b48'/>
<id>440133e0d5d576e46bd5ffa555f6a9c534789b48</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>win: health/provider.vim: check with `.exe` extension</title>
<updated>2017-03-27T23:49:36+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-03-27T23:02:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6fbcbebae04af8e2f1b64f51049efbe49f771711'/>
<id>6fbcbebae04af8e2f1b64f51049efbe49f771711</id>
<content type='text'>
Also fix `python_multiple` comparison.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also fix `python_multiple` comparison.
</pre>
</div>
</content>
</entry>
<entry>
<title>providers: Disable if `g:loaded_*` exists.</title>
<updated>2017-02-13T23:02:50+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-02-13T23:00:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2f38ed11c98a35b7abe53405d8f5f41cb1054f8f'/>
<id>2f38ed11c98a35b7abe53405d8f5f41cb1054f8f</id>
<content type='text'>
The exists('g:loaded_foo') convention is rather common, and may be
relied upon in some cases. It's also very unlikely that a user or plugin
has any reason to set g:loaded_foo to zero, so the principle of least
surprise can be brushed aside here.

https://github.com/neovim/neovim/issues/6107#issuecomment-279532143
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The exists('g:loaded_foo') convention is rather common, and may be
relied upon in some cases. It's also very unlikely that a user or plugin
has any reason to set g:loaded_foo to zero, so the principle of least
surprise can be brushed aside here.

https://github.com/neovim/neovim/issues/6107#issuecomment-279532143
</pre>
</div>
</content>
</entry>
<entry>
<title>health.vim: Do not check intentionally disabled providers.</title>
<updated>2017-02-13T21:21:23+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-02-13T20:55:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=9451647d9b9218f679afdf26edddab383b0898a7'/>
<id>9451647d9b9218f679afdf26edddab383b0898a7</id>
<content type='text'>
Closes #6107
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #6107
</pre>
</div>
</content>
</entry>
<entry>
<title>health.vim: ruby provider advice</title>
<updated>2017-02-12T11:51:54+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-02-12T11:51:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f50de5be41a65d44fc1f59c0cb1d4d33afb4da21'/>
<id>f50de5be41a65d44fc1f59c0cb1d4d33afb4da21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>CheckHealth: choose correct $PATH separator</title>
<updated>2017-02-04T10:07:49+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-02-03T01:15:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=611411bf85e05a3bf0b813c4db15c6bb4d0127ba'/>
<id>611411bf85e05a3bf0b813c4db15c6bb4d0127ba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>healthcheck: s:download: do not report curl errors (twice)</title>
<updated>2017-01-08T22:26:47+00:00</updated>
<author>
<name>Daniel Hahler</name>
<email>git@thequod.de</email>
</author>
<published>2017-01-08T15:46:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=35988b93e15a2b852d5a2dec91e992a5af37de7d'/>
<id>35988b93e15a2b852d5a2dec91e992a5af37de7d</id>
<content type='text'>
Since `curl -s` is used, the actual error (e.g. "curl: (6) Could not
resolve host: pypi.python.org") gets not reported anyway, and s:download
returns an error message with `s:shell_error` already.
This changes `s:download` to also include `a:url` in the error message
now.

It removes

&gt; ERROR: Command error (7) curl -sL https://pypi.python.org/pypi/neovim/json:

And changes

&gt; ERROR: HTTP request failed: error: curl error with https://pypi.python.org/pypi/neovim/json: 6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since `curl -s` is used, the actual error (e.g. "curl: (6) Could not
resolve host: pypi.python.org") gets not reported anyway, and s:download
returns an error message with `s:shell_error` already.
This changes `s:download` to also include `a:url` in the error message
now.

It removes

&gt; ERROR: Command error (7) curl -sL https://pypi.python.org/pypi/neovim/json:

And changes

&gt; ERROR: HTTP request failed: error: curl error with https://pypi.python.org/pypi/neovim/json: 6
</pre>
</div>
</content>
</entry>
</feed>
