<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/src/nvim/testdir, branch v0.1.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>Be more explicit about the lack of X11 integration</title>
<updated>2015-11-11T01:10:55+00:00</updated>
<author>
<name>Michael Reed</name>
<email>m.reed@mykolab.com</email>
</author>
<published>2015-11-10T06:45:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2fbcc9ab769ee5f86a649824f59e0e008e072fb6'/>
<id>2fbcc9ab769ee5f86a649824f59e0e008e072fb6</id>
<content type='text'>
I don't want anyone getting the idea that the `-X` flag they might have
used has anything to do with why the `+` is working for them
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I don't want anyone getting the idea that the `-X` flag they might have
used has anything to do with why the `+` is working for them
</pre>
</div>
</content>
</entry>
<entry>
<title>oldtests: Also set `.` as default directories for old tests</title>
<updated>2015-10-23T14:04:26+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2015-10-23T14:04:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=95979afc47f33ddde158cf699c1112a7be5cfc47'/>
<id>95979afc47f33ddde158cf699c1112a7be5cfc47</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Deprecate &amp;viminfo and :[rw]v, add &amp;shada and :[rw]sh</title>
<updated>2015-10-08T19:00:07+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2015-07-05T23:26:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=8663983cc4c2f66eb0ba58ad8e247ac0686cc79b'/>
<id>8663983cc4c2f66eb0ba58ad8e247ac0686cc79b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>encoding: Update handling of encoding in tests</title>
<updated>2015-09-08T08:54:31+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2015-06-30T09:32:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ffff2c9c47e63f1764ca743810a259d607f75104'/>
<id>ffff2c9c47e63f1764ca743810a259d607f75104</id>
<content type='text'>
Always run tests with encoding=utf-8, regardless of user locale
Don't set &amp;encoding after startup in tests

Helped-By: Michael Reed &lt;m.reed@mykolab.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Always run tests with encoding=utf-8, regardless of user locale
Don't set &amp;encoding after startup in tests

Helped-By: Michael Reed &lt;m.reed@mykolab.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>clipboard: avoid clipboard during :global. #2809</title>
<updated>2015-08-31T03:40:12+00:00</updated>
<author>
<name>Felipe Morales</name>
<email>hel.sheep@gmail.com</email>
</author>
<published>2015-06-08T19:47:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=acdac914d554fae421c4e71c9d1dffc5cea4505b'/>
<id>acdac914d554fae421c4e71c9d1dffc5cea4505b</id>
<content type='text'>
This is equivalent to patches 7.4.396, 7.4.445 and 7.4.598.

vim-patch:7.4.396

Problem:    When 'clipboard' is "unnamed", :g/pat/d is very slow.
(Praful)
Solution:   Only set the clipboard after the last delete. (Christian
Brabandt)

https://github.com/vim/vim/commit/1f285eb49a709e00552f7bef7e74efff5ae79026

vim-patch:7.4.445

Problem:    Clipboard may be cleared on startup.
Solution:   Set clip_did_set_selection to -1 during startup. (Christian
	    Brabandt)

https://github.com/vim/vim/commit/1a19d37d90f037c09183ba68fdddf70ab8ee179a

vim-patch:7.4.598

Problem:    ":tabdo windo echo 'hi'" causes "* register not to be
changed.
	    (Salman Halim)
Solution:   Change how clip_did_set_selection is used and add
	    clipboard_needs_update and global_change_count.  (Christian
	    Brabandt)

https://github.com/vim/vim/commit/af6a579263a688f30bfbbee72b28d08cc7e0f3d4

Co-Author: @bfredl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is equivalent to patches 7.4.396, 7.4.445 and 7.4.598.

vim-patch:7.4.396

Problem:    When 'clipboard' is "unnamed", :g/pat/d is very slow.
(Praful)
Solution:   Only set the clipboard after the last delete. (Christian
Brabandt)

https://github.com/vim/vim/commit/1f285eb49a709e00552f7bef7e74efff5ae79026

vim-patch:7.4.445

Problem:    Clipboard may be cleared on startup.
Solution:   Set clip_did_set_selection to -1 during startup. (Christian
	    Brabandt)

https://github.com/vim/vim/commit/1a19d37d90f037c09183ba68fdddf70ab8ee179a

vim-patch:7.4.598

Problem:    ":tabdo windo echo 'hi'" causes "* register not to be
changed.
	    (Salman Halim)
Solution:   Change how clip_did_set_selection is used and add
	    clipboard_needs_update and global_change_count.  (Christian
	    Brabandt)

https://github.com/vim/vim/commit/af6a579263a688f30bfbbee72b28d08cc7e0f3d4

Co-Author: @bfredl
</pre>
</div>
</content>
</entry>
<entry>
<title>test59: Delete oldtests 58 and 59</title>
<updated>2015-08-26T08:31:08+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2015-07-26T20:07:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=df9d7489ca4a3fcfa977b0e7df9ec3afa0e77f8c'/>
<id>df9d7489ca4a3fcfa977b0e7df9ec3afa0e77f8c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>defaults: set 'listchars' to "tab:&gt; ,trail:-,nbsp:+". #2872</title>
<updated>2015-08-22T17:48:48+00:00</updated>
<author>
<name>Felipe Morales</name>
<email>hel.sheep@gmail.com</email>
</author>
<published>2015-06-20T20:16:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=be29de1fa2b2dde54f4e43bc12d8bb7a46845308'/>
<id>be29de1fa2b2dde54f4e43bc12d8bb7a46845308</id>
<content type='text'>
Re: https://github.com/neovim/neovim/issues/2676
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Re: https://github.com/neovim/neovim/issues/2676
</pre>
</div>
</content>
</entry>
<entry>
<title>7.4.813</title>
<updated>2015-08-20T14:32:25+00:00</updated>
<author>
<name>James McCoy</name>
<email>vega.james@gmail.com</email>
</author>
<published>2015-08-20T01:53:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f6f28c18e5824b13f4a20a481a9f350f0e652e9b'/>
<id>f6f28c18e5824b13f4a20a481a9f350f0e652e9b</id>
<content type='text'>
patch 7.4.813
Problem: It is not possible to save and restore character search state.
Solution: Add getcharsearch() and setcharsearch().  (James McCoy)

https://github.com/vim/vim/releases/tag/v7.4.813
https://github.com/vim/vim/releases/tag/v7.4.826

Signed-off-by: James McCoy &lt;vega.james@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
patch 7.4.813
Problem: It is not possible to save and restore character search state.
Solution: Add getcharsearch() and setcharsearch().  (James McCoy)

https://github.com/vim/vim/releases/tag/v7.4.813
https://github.com/vim/vim/releases/tag/v7.4.826

Signed-off-by: James McCoy &lt;vega.james@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Delete test86 and 87 #3074</title>
<updated>2015-07-22T19:31:27+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2015-07-22T00:02:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=0e65caa40ed9dbd1e06d023cd7eadce16f444f30'/>
<id>0e65caa40ed9dbd1e06d023cd7eadce16f444f30</id>
<content type='text'>
The python-client has it's own test suite, and this isn't even run: see
the has('nvim') call.

Taken from
https://github.com/bfredl/neovim/commit/1acf4ace5224cf12472d2b086f55a74714491d6f
with minor modifications.

"Now that you've done the necessary cleanup, why not go ahead and merge
this." @bfredl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The python-client has it's own test suite, and this isn't even run: see
the has('nvim') call.

Taken from
https://github.com/bfredl/neovim/commit/1acf4ace5224cf12472d2b086f55a74714491d6f
with minor modifications.

"Now that you've done the necessary cleanup, why not go ahead and merge
this." @bfredl
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Migrate legacy test 80. #2989</title>
<updated>2015-07-21T23:56:15+00:00</updated>
<author>
<name>Lucas Hoffmann</name>
<email>l-m-h@web.de</email>
</author>
<published>2015-07-10T10:12:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6571c84d54a93e186bccf298bf4a3d0a45ddf28c'/>
<id>6571c84d54a93e186bccf298bf4a3d0a45ddf28c</id>
<content type='text'>
The test is also split in several blocks and heavily modernized.  This was
done to prevent the following quoting and escaping problems during migration:
- the vim command `put =...` treats double quotes as the start of a comment so
  they have to be escaped with a backslash
- when inserting control characters on the command line they have to be
  escaped with &lt;C-V&gt;

The parts one and two of the test are functional identical so they are wrapped
in a local function. The only difference was which letters where used to test
the same feature.

Part six did test a flag in 'cpoptions' that has been removed in neovim.  It
has therefore been removed as well.

Reviewed-by: Michael Reed &lt;Pyrohh@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The test is also split in several blocks and heavily modernized.  This was
done to prevent the following quoting and escaping problems during migration:
- the vim command `put =...` treats double quotes as the start of a comment so
  they have to be escaped with a backslash
- when inserting control characters on the command line they have to be
  escaped with &lt;C-V&gt;

The parts one and two of the test are functional identical so they are wrapped
in a local function. The only difference was which letters where used to test
the same feature.

Part six did test a flag in 'cpoptions' that has been removed in neovim.  It
has therefore been removed as well.

Reviewed-by: Michael Reed &lt;Pyrohh@users.noreply.github.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
