<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/test/functional/provider, branch v0.5.1</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>Tests(clipboard): Add test for block paste</title>
<updated>2021-07-01T09:01:01+00:00</updated>
<author>
<name>shadmansaleh</name>
<email>shadmansaleh3@gmail.com</email>
</author>
<published>2021-06-18T12:17:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=47a08ec72ed27ef0ba2519865ebcedf9f62abe8e'/>
<id>47a08ec72ed27ef0ba2519865ebcedf9f62abe8e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test, provider/define_spec.lua: fix few tests fail</title>
<updated>2021-01-01T09:30:55+00:00</updated>
<author>
<name>erw7</name>
<email>erw7.github@gmail.com</email>
</author>
<published>2020-10-16T00:43:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a66d63f36e76ba882ccf9c7c5f5d94691449b81e'/>
<id>a66d63f36e76ba882ccf9c7c5f5d94691449b81e</id>
<content type='text'>
fbd6a86 changes the behavior of :command-range and no longer allows
arbitrary numbers. Adjust tests to reflect this behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fbd6a86 changes the behavior of :command-range and no longer allows
arbitrary numbers. Adjust tests to reflect this behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:8.1.2212: cannot see the selection type in :reg output</title>
<updated>2020-12-25T15:17:00+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>jan.lazo@mail.utoronto.ca</email>
</author>
<published>2020-12-25T04:00:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=8cf4a02bf23af9eaafba3f0dbc1c613aa1b91575'/>
<id>8cf4a02bf23af9eaafba3f0dbc1c613aa1b91575</id>
<content type='text'>
Problem:    Cannot see the selection type in :reg output. (Ayberk Aydın)
Solution:   Add c/l/b. (Christian Brabandt, closes vim/vim#5110, closes vim/vim#4546)
https://github.com/vim/vim/commit/3691f1ee72b68a47e6dcc75927bfa46565cf3614

Patch v8.1.0999 is not ported so ":registers" does not omit register 1.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Cannot see the selection type in :reg output. (Ayberk Aydın)
Solution:   Add c/l/b. (Christian Brabandt, closes vim/vim#5110, closes vim/vim#4546)
https://github.com/vim/vim/commit/3691f1ee72b68a47e6dcc75927bfa46565cf3614

Patch v8.1.0999 is not ported so ":registers" does not omit register 1.
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:8.1.1056: no eval function for Ruby</title>
<updated>2020-10-21T17:20:21+00:00</updated>
<author>
<name>Alex Genco</name>
<email>alexgenco@gmail.com</email>
</author>
<published>2020-10-17T14:36:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ed0a70087a15621e7f45567feef1900f348c0916'/>
<id>ed0a70087a15621e7f45567feef1900f348c0916</id>
<content type='text'>
Problem:    No eval function for Ruby.
Solution:   Add rubyeval(). (Ozaki Kiichi, closes vim/vim#4152)
https://github.com/vim/vim/commit/e99be0e6d28fad96efd2b2be23fa38e7559e80e1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    No eval function for Ruby.
Solution:   Add rubyeval(). (Ozaki Kiichi, closes vim/vim#4152)
https://github.com/vim/vim/commit/e99be0e6d28fad96efd2b2be23fa38e7559e80e1
</pre>
</div>
</content>
</entry>
<entry>
<title>Support for :perl, :perlfile, :perldo and perleval() (#12809)</title>
<updated>2020-09-05T20:55:06+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2020-09-05T20:55:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=858c056133ed50af8dc31fdeee1638cb69ea2c69'/>
<id>858c056133ed50af8dc31fdeee1638cb69ea2c69</id>
<content type='text'>
* support for :perl, :perlfile, :perldo and perleval()

* document that the perl provider doesn't currently work on Windows

* document that the perl legacy interface is now also supported

* added perleval() documentation

* import legacy perl interface tests

* only perl 5.22+ is supported

* healtcheck: use g:perl_host_prog if its set instead

using just 'perl' isn't correct as it may not be the version requested.
ditto for 'cpanm', rather go through 'App::cpanminus' to find the latest
perl version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* support for :perl, :perlfile, :perldo and perleval()

* document that the perl provider doesn't currently work on Windows

* document that the perl legacy interface is now also supported

* added perleval() documentation

* import legacy perl interface tests

* only perl 5.22+ is supported

* healtcheck: use g:perl_host_prog if its set instead

using just 'perl' isn't correct as it may not be the version requested.
ditto for 'cpanm', rather go through 'App::cpanminus' to find the latest
perl version</pre>
</div>
</content>
</entry>
<entry>
<title>g:clipboard: allow command given as a list #12775</title>
<updated>2020-09-01T07:27:38+00:00</updated>
<author>
<name>DDoSolitary</name>
<email>DDoSolitary@gmail.com</email>
</author>
<published>2020-09-01T07:27:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=c14a9f6fcc0e74294e98913699c8a4a79f1f7321'/>
<id>c14a9f6fcc0e74294e98913699c8a4a79f1f7321</id>
<content type='text'>
fixes #12768</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #12768</pre>
</div>
</content>
</entry>
<entry>
<title>support for :perl, :perlfile, :perldo and perleval()</title>
<updated>2020-08-30T16:19:05+00:00</updated>
<author>
<name>Jacques Germishuys</name>
<email>jacquesg@striata.com</email>
</author>
<published>2020-08-29T21:12:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=9bef25314e47c6c624c129ab8e7c0c21ec68b2cf'/>
<id>9bef25314e47c6c624c129ab8e7c0c21ec68b2cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: rewrite to multiple arguments</title>
<updated>2020-05-31T15:10:17+00:00</updated>
<author>
<name>kuuote</name>
<email>znmxodq1@gmail.com</email>
</author>
<published>2020-05-31T15:10:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=89123017b8148569bafb34d03304358cf1411a7f'/>
<id>89123017b8148569bafb34d03304358cf1411a7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>runtime: fix remote plugin command fails at some case</title>
<updated>2020-05-31T11:21:58+00:00</updated>
<author>
<name>kuuote</name>
<email>znmxodq1@gmail.com</email>
</author>
<published>2020-05-31T11:21:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7124c0e5acde38957af7621afd1d92fb2b6d1d58'/>
<id>7124c0e5acde38957af7621afd1d92fb2b6d1d58</id>
<content type='text'>
fixes #12410
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #12410
</pre>
</div>
</content>
</entry>
<entry>
<title>provider/perl: test older versions</title>
<updated>2020-01-21T00:44:00+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>jan.lazo@mail.utoronto.ca</email>
</author>
<published>2020-01-20T03:50:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7853b6178612f471fb0c580538294fda41555614'/>
<id>7853b6178612f471fb0c580538294fda41555614</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
