<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/runtime/autoload/provider, branch v0.3.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>node/provider: support g:node_host_prog #8135</title>
<updated>2018-03-15T03:55:48+00:00</updated>
<author>
<name>chemzqm</name>
<email>chemzqm@gmail.com</email>
</author>
<published>2018-03-14T08:32:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=338664e96c9b0fd00cfe2c1312fa40219301379d'/>
<id>338664e96c9b0fd00cfe2c1312fa40219301379d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add provider#Poll() to handle starting and polling the provider</title>
<updated>2018-02-16T19:08:12+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2018-02-16T18:53:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3af3515e74c925c783ad5321589830ed3d54b24a'/>
<id>3af3515e74c925c783ad5321589830ed3d54b24a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>provider: Safely access job.stderr in #Require</title>
<updated>2018-02-16T18:33:23+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2018-02-16T18:33:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6fbb8d6739b353752dc405452fb41f9cdf20a0b9'/>
<id>6fbb8d6739b353752dc405452fb41f9cdf20a0b9</id>
<content type='text'>
If `jobstart()` fails, then the subsequent `rpcrequest()` will throw due
to an invalid channel id.  This causes `job.stderr` not to exist, so we
throw another exception when trying to dump the job's stderr.

    Error detected while processing function remote#define#AutocmdBootstrap[1]..remote#host#Require[10]..provider#pythonx#Require:
    line 22:
    E716: Key not present in Dictionary: stderr

This obfuscates the actual problem.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If `jobstart()` fails, then the subsequent `rpcrequest()` will throw due
to an invalid channel id.  This causes `job.stderr` not to exist, so we
throw another exception when trying to dump the job's stderr.

    Error detected while processing function remote#define#AutocmdBootstrap[1]..remote#host#Require[10]..provider#pythonx#Require:
    line 22:
    E716: Key not present in Dictionary: stderr

This obfuscates the actual problem.
</pre>
</div>
</content>
</entry>
<entry>
<title>provider: ruby: Use stderr_buffered to collect stderr</title>
<updated>2018-02-16T18:33:07+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2018-02-16T18:33:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=48dc1f3f90c6bbebcaa93ecf3348648f45c45239'/>
<id>48dc1f3f90c6bbebcaa93ecf3348648f45c45239</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>macOS: Use `pbpaste` to detect a working clipboard (#7983)</title>
<updated>2018-02-07T23:27:54+00:00</updated>
<author>
<name>Marco Hinz</name>
<email>mh.codebro+github@gmail.com</email>
</author>
<published>2018-02-07T23:27:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=dc536295875640ef5d7b28d8135d0ef72d782d5e'/>
<id>dc536295875640ef5d7b28d8135d0ef72d782d5e</id>
<content type='text'>
`pbcopy` writes to the clipboard, it should not be used to sanity-check the clipboard.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`pbcopy` writes to the clipboard, it should not be used to sanity-check the clipboard.</pre>
</div>
</content>
</entry>
<entry>
<title>clipboard: macOS: fallback to tmux if pbcopy is broken #7940</title>
<updated>2018-01-31T10:37:05+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-01-30T21:35:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6452831cf985bd31d16eb5a04b345038f45d203f'/>
<id>6452831cf985bd31d16eb5a04b345038f45d203f</id>
<content type='text'>
On some versions of macOS, pbcopy doesn't work in tmux &lt;2.6
https://superuser.com/q/231130
Fallback to tmux in that case.

Add a healthcheck for this scenario.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On some versions of macOS, pbcopy doesn't work in tmux &lt;2.6
https://superuser.com/q/231130
Fallback to tmux in that case.

Add a healthcheck for this scenario.
</pre>
</div>
</content>
</entry>
<entry>
<title>health.vim: remove :CheckHealth command</title>
<updated>2017-12-27T12:00:58+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-12-27T12:00:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=341102fe9f26e3f4207f14e097348d3bd6831b0d'/>
<id>341102fe9f26e3f4207f14e097348d3bd6831b0d</id>
<content type='text'>
For back-compat, :CheckHealth runs :checkhealth. But don't define
:CheckHealth explicitly, it adds noise to wildmenu completion.

Completion of healthchecks doesn't yet work with :checkhealth, this is
a regression but it needs to be implemented for :checkhealth rather than
keeping :CheckHealth around.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For back-compat, :CheckHealth runs :checkhealth. But don't define
:CheckHealth explicitly, it adds noise to wildmenu completion.

Completion of healthchecks doesn't yet work with :checkhealth, this is
a regression but it needs to be implemented for :checkhealth rather than
keeping :CheckHealth around.
</pre>
</div>
</content>
</entry>
<entry>
<title>provider: delete vimL stderr collector, now that it exists builtin</title>
<updated>2017-12-23T13:32:25+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2017-11-25T09:37:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=61ba3c5e31bf5bf491046098e4d9922dd6c3c082'/>
<id>61ba3c5e31bf5bf491046098e4d9922dd6c3c082</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>provider/nodejs: more robust version-check (#7738)</title>
<updated>2017-12-18T00:48:30+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-12-18T00:48:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=cca6d4b2674304d544b3880a616fd2ca7df2b891'/>
<id>cca6d4b2674304d544b3880a616fd2ca7df2b891</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>provider/nodejs: check version in Detect()</title>
<updated>2017-12-17T15:09:18+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2017-12-17T14:53:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=103ff26c0ae76491c73a6c078b52f2e56af16fb8'/>
<id>103ff26c0ae76491c73a6c078b52f2e56af16fb8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
