<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/runtime/autoload/health, branch usermarks</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>refactor(checkhealth): convert "nvim" check to Lua</title>
<updated>2022-10-30T14:50:59+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2022-10-30T03:47:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3213bc36c5d0cddf8f81498a1ac590bc6d81d743'/>
<id>3213bc36c5d0cddf8f81498a1ac590bc6d81d743</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(health): correct tmux rgb verification (#20868)</title>
<updated>2022-10-29T23:37:47+00:00</updated>
<author>
<name>Barrett Ruth</name>
<email>62671086+barrett-ruth@users.noreply.github.com</email>
</author>
<published>2022-10-29T23:37:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2817411b7de3c85348e613ce97acff1f1cc5b781'/>
<id>2817411b7de3c85348e613ce97acff1f1cc5b781</id>
<content type='text'>
Current RGB verification parses `tmux server-info`. Despite it being a tmux default alias to `tmux show-messages -JT`, it may be unavailable. Use `tmux show-messages -JT` directly instead.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Current RGB verification parses `tmux server-info`. Despite it being a tmux default alias to `tmux show-messages -JT`, it may be unavailable. Use `tmux show-messages -JT` directly instead.</pre>
</div>
</content>
</entry>
<entry>
<title>feat(node): add pnpm support #19461</title>
<updated>2022-08-01T14:21:54+00:00</updated>
<author>
<name>Percy Ma</name>
<email>kecrily@gmail.com</email>
</author>
<published>2022-08-01T14:21:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=c6181a672a2fdb2cb89ddf85b5d6ab15b10a0996'/>
<id>c6181a672a2fdb2cb89ddf85b5d6ab15b10a0996</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(provider): use list comprehension #19027</title>
<updated>2022-06-20T13:17:00+00:00</updated>
<author>
<name>Zaz Brown</name>
<email>zazbrown@zazbrown.com</email>
</author>
<published>2022-06-20T13:17:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=99ef06d8467968ac262b875ef840fd0f5415e402'/>
<id>99ef06d8467968ac262b875ef840fd0f5415e402</id>
<content type='text'>
- list(filter(lambda x: x != "", sys.path))
+ [p for p in sys.path if p != ""]</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- list(filter(lambda x: x != "", sys.path))
+ [p for p in sys.path if p != ""]</pre>
</div>
</content>
</entry>
<entry>
<title>fix(health): correct shada file path #18603</title>
<updated>2022-05-17T12:43:35+00:00</updated>
<author>
<name>zeertzjq</name>
<email>zeertzjq@outlook.com</email>
</author>
<published>2022-05-17T12:43:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=bbfc4567dfabc8d4378ad26a2d1020e3b2565107'/>
<id>bbfc4567dfabc8d4378ad26a2d1020e3b2565107</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(checkhealth): check for slow shell #17829</title>
<updated>2022-04-27T03:55:57+00:00</updated>
<author>
<name>Philip Linell</name>
<email>linell@hey.com</email>
</author>
<published>2022-04-27T03:55:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d98e5357af1cd64b3e21196bc8e2408c724c0625'/>
<id>d98e5357af1cd64b3e21196bc8e2408c724c0625</id>
<content type='text'>
Problem:
I had some issues where multiple plugins (vim-fzf and fugitive) was slow
because of my `.zshenv`.

Solution:
Check shell performance in :checkhealth.

Co-authored-by: Justin M. Keyes &lt;justinkz@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:
I had some issues where multiple plugins (vim-fzf and fugitive) was slow
because of my `.zshenv`.

Solution:
Check shell performance in :checkhealth.

Co-authored-by: Justin M. Keyes &lt;justinkz@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>chore: fix typos (#17755)</title>
<updated>2022-03-25T18:57:59+00:00</updated>
<author>
<name>dundargoc</name>
<email>33953936+dundargoc@users.noreply.github.com</email>
</author>
<published>2022-03-25T18:57:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=61205c1defb64ac5466496b5451e4a7f3171e21e'/>
<id>61205c1defb64ac5466496b5451e4a7f3171e21e</id>
<content type='text'>
Co-authored-by: Jordan Haine &lt;jhaine@securitycompass.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Jordan Haine &lt;jhaine@securitycompass.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(checkhealth/provider): style fixes (#17738)</title>
<updated>2022-03-16T09:46:14+00:00</updated>
<author>
<name>Sean Dewar</name>
<email>seandewar@users.noreply.github.com</email>
</author>
<published>2022-03-16T09:46:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=fa79a016bc894d3f89eddc7744868d2dd5458d51'/>
<id>fa79a016bc894d3f89eddc7744868d2dd5458d51</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(checkhealth): make provider checkhealth output more consistent (#17722)</title>
<updated>2022-03-16T08:36:26+00:00</updated>
<author>
<name>dundargoc</name>
<email>33953936+dundargoc@users.noreply.github.com</email>
</author>
<published>2022-03-16T08:36:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=33ada232c7566bd303579683dd5b769fe705462b'/>
<id>33ada232c7566bd303579683dd5b769fe705462b</id>
<content type='text'>
Change missing provider plugins from errors to warnings for python and
perl. Also give proper advice under the ADVICE section instead of just
the errors.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change missing provider plugins from errors to warnings for python and
perl. Also give proper advice under the ADVICE section instead of just
the errors.</pre>
</div>
</content>
</entry>
<entry>
<title>fix(health): do not run external processes in a shell</title>
<updated>2022-02-03T10:38:37+00:00</updated>
<author>
<name>zeertzjq</name>
<email>zeertzjq@outlook.com</email>
</author>
<published>2022-02-03T09:19:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a87ecf5d086c9a93be4c5f331a684301b2c1bc12'/>
<id>a87ecf5d086c9a93be4c5f331a684301b2c1bc12</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
