<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/runtime/autoload, branch v0.1.5</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>remote/host.vim: Avoid "No matching autocommands".</title>
<updated>2016-08-22T02:03:28+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-21T20:15:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=297677ecf42501d2bef45dd4f083002a0963b205'/>
<id>297677ecf42501d2bef45dd4f083002a0963b205</id>
<content type='text'>
:silent does not silence this message, even :redir does not consume it.
But execute() _does_ consume it, which interferes with the current
implementation of health.vim. It's prudent to avoid it in any case, even
if the implementation of health.vim changes in the future.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
:silent does not silence this message, even :redir does not consume it.
But execute() _does_ consume it, which interferes with the current
implementation of health.vim. It's prudent to avoid it in any case, even
if the implementation of health.vim changes in the future.
</pre>
</div>
</content>
</entry>
<entry>
<title>CheckHealth: Remove "disable"/"enable" concept</title>
<updated>2016-08-22T02:03:28+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-20T23:41:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=45cc14d9a5c1d5eadf817c920de5f913bbc4d772'/>
<id>45cc14d9a5c1d5eadf817c920de5f913bbc4d772</id>
<content type='text'>
We can add this later if it is proven necessary, but it should not be
because:

1. User can run a subset of checkers via `:CheckHealth plugin1, ...,`
2. Healthcheck is a very rare operation. Optimizing it is not worth the
   code/API complexity.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can add this later if it is proven necessary, but it should not be
because:

1. User can run a subset of checkers via `:CheckHealth plugin1, ...,`
2. Healthcheck is a very rare operation. Optimizing it is not worth the
   code/API complexity.
</pre>
</div>
</content>
</entry>
<entry>
<title>CheckHealth: Accept [plugin1 [, plugin2 [, ...]]] args.</title>
<updated>2016-08-22T02:03:28+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-20T23:37:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ed49d9d866f8260842ea177fa9ce31dbc398701d'/>
<id>ed49d9d866f8260842ea177fa9ce31dbc398701d</id>
<content type='text'>
To healthcheck the "foo" plugin:
    :CheckHealth foo
To healthcheck the "foo" and "bar" plugins:
    :CheckHealth foo bar
To run all auto-discovered healthchecks:
    :CheckHealth
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To healthcheck the "foo" plugin:
    :CheckHealth foo
To healthcheck the "foo" and "bar" plugins:
    :CheckHealth foo bar
To run all auto-discovered healthchecks:
    :CheckHealth
</pre>
</div>
</content>
</entry>
<entry>
<title>CheckHealth</title>
<updated>2016-08-22T01:25:33+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-07T18:16:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=545e7a416310c9ff700b2afed9eef834c8948c8b'/>
<id>545e7a416310c9ff700b2afed9eef834c8948c8b</id>
<content type='text'>
- Overlay markdown syntax/filetype, don't invent new filetypes/syntaxes.
- migrate s:check_ruby()
- s:indent_after_line1
- Less-verbose output
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Overlay markdown syntax/filetype, don't invent new filetypes/syntaxes.
- migrate s:check_ruby()
- s:indent_after_line1
- Less-verbose output
</pre>
</div>
</content>
</entry>
<entry>
<title>CheckHealth</title>
<updated>2016-08-22T01:25:33+00:00</updated>
<author>
<name>TJ DeVries</name>
<email>devries.timothyj@gmail.com</email>
</author>
<published>2016-06-16T21:01:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2cc523c3afd3c98e80499409182ca96708d996f4'/>
<id>2cc523c3afd3c98e80499409182ca96708d996f4</id>
<content type='text'>
- Use execute() instead of redir
- Fixed logic on suboptimal pyenv/virtualenv checks.
- Move system calls from strings to lists. Fixes #5218
- Add highlighting
- Automatically discover health checkers
- Add tests

Helped-by: Shougo Matsushita &lt;Shougo.Matsu@gmail.com&gt;
Helped-by: Tommy Allen &lt;tommy@esdf.io&gt;

Closes #4932
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use execute() instead of redir
- Fixed logic on suboptimal pyenv/virtualenv checks.
- Move system calls from strings to lists. Fixes #5218
- Add highlighting
- Automatically discover health checkers
- Add tests

Helped-by: Shougo Matsushita &lt;Shougo.Matsu@gmail.com&gt;
Helped-by: Tommy Allen &lt;tommy@esdf.io&gt;

Closes #4932
</pre>
</div>
</content>
</entry>
<entry>
<title>job control: reuse common job code for rpc jobs</title>
<updated>2016-08-20T10:55:35+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2016-05-12T20:25:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2d60a15e25f487eda1ac00a9e6cdf9a6564fb416'/>
<id>2d60a15e25f487eda1ac00a9e6cdf9a6564fb416</id>
<content type='text'>
This makes stderr and exit callbacks work for rpc jobs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes stderr and exit callbacks work for rpc jobs
</pre>
</div>
</content>
</entry>
<entry>
<title>host.vim: s:GetManifestPath(): octal permissions</title>
<updated>2016-08-17T22:30:09+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-17T22:11:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f9aa029a8b5b9dd93b4af56c995337bd853dc5c0'/>
<id>f9aa029a8b5b9dd93b4af56c995337bd853dc5c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>host.vim: s:GetManifestPath(): Create base directory if needed.</title>
<updated>2016-08-17T22:29:45+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-17T21:56:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=acaf480bdcd5f3e8562fd78cd94850f4eb83ec57'/>
<id>acaf480bdcd5f3e8562fd78cd94850f4eb83ec57</id>
<content type='text'>
If the base directory does not exist, let mkdir(...,'p') create it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the base directory does not exist, let mkdir(...,'p') create it.
</pre>
</div>
</content>
</entry>
<entry>
<title>host.vim: s:GetManifestPath(): Remove for-loop.</title>
<updated>2016-08-17T21:43:26+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-17T21:30:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=4b0b391f9f4ecac903b490cdb0834a2f4ab0e310'/>
<id>4b0b391f9f4ecac903b490cdb0834a2f4ab0e310</id>
<content type='text'>
Without the for-loop it is easier to follow, more explicit, and fewer
lines.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Without the for-loop it is easier to follow, more explicit, and fewer
lines.
</pre>
</div>
</content>
</entry>
<entry>
<title>runtime: rplugin manifest written to $XDG_DATA_HOME</title>
<updated>2016-08-17T20:22:15+00:00</updated>
<author>
<name>Tommy Allen</name>
<email>tommy@esdf.io</email>
</author>
<published>2016-07-12T06:17:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=01e33e1c74619fc8d262e2dedbd45a20bdb24245'/>
<id>01e33e1c74619fc8d262e2dedbd45a20bdb24245</id>
<content type='text'>
Uses $NVIM_RPLUGIN_MANIFEST if available
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Uses $NVIM_RPLUGIN_MANIFEST if available
</pre>
</div>
</content>
</entry>
</feed>
