<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/test/functional/clipboard, branch v0.1.6</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>Mark some functional tests as pending in Windows</title>
<updated>2016-08-26T07:21:41+00:00</updated>
<author>
<name>Rui Abreu Ferreira</name>
<email>raf-ep@gmx.com</email>
</author>
<published>2016-08-15T23:42:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=39c628d031b89e9048340f6c95b9c3a97c2a0089'/>
<id>39c628d031b89e9048340f6c95b9c3a97c2a0089</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>clipboard: fix v:register when clipboard=unnamed,unnamedplus</title>
<updated>2016-07-12T20:30:51+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2016-07-11T13:59:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6ea2bde065016d4cb2600aa2252daa83f66f09c4'/>
<id>6ea2bde065016d4cb2600aa2252daa83f66f09c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>functests: Check logs in lua code</title>
<updated>2016-06-10T18:50:49+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2016-04-23T23:53:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ff470bb853397fcb25bfa5dd952ebb32307b7875'/>
<id>ff470bb853397fcb25bfa5dd952ebb32307b7875</id>
<content type='text'>
It is otherwise impossible to determine which test failed sanitizer/valgrind
check. test/functional/helpers.lua module return was changed so that tests which
do not provide after_each function to get new check will automatically fail.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is otherwise impossible to determine which test failed sanitizer/valgrind
check. test/functional/helpers.lua module return was changed so that tests which
do not provide after_each function to get new check will automatically fail.
</pre>
</div>
</content>
</entry>
<entry>
<title>test/functional: clean up according to luacheck (part 2)</title>
<updated>2015-11-23T12:57:21+00:00</updated>
<author>
<name>Marco Hinz</name>
<email>mh.codebro@gmail.com</email>
</author>
<published>2015-11-17T22:31:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d9fbc1865bf5237235e96ae8822326faa84ff9fc'/>
<id>d9fbc1865bf5237235e96ae8822326faa84ff9fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>test: Make sure ENTER prompt is exited in clipboard_provider_spec</title>
<updated>2015-08-13T10:41:04+00:00</updated>
<author>
<name>Thiago de Arruda</name>
<email>tpadilha84@gmail.com</email>
</author>
<published>2015-07-24T15:22:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=0d713540580b43bc61669f0c7c89ecf0ecabe941'/>
<id>0d713540580b43bc61669f0c7c89ecf0ecabe941</id>
<content type='text'>
The test may hang without this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The test may hang without this.
</pre>
</div>
</content>
</entry>
<entry>
<title>clipboard: support clipboard=unnamedplus,unnamed</title>
<updated>2015-08-07T11:06:13+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2015-08-05T13:57:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d4ebbaa91aea81a9942f44afda628fbe21000897'/>
<id>d4ebbaa91aea81a9942f44afda628fbe21000897</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>clipboard: add tests for error fallback and middleclick paste</title>
<updated>2015-07-21T00:24:28+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2015-07-15T16:06:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=8047570b708c27b68e9a3a50c11de932c3eeab41'/>
<id>8047570b708c27b68e9a3a50c11de932c3eeab41</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>clipboard: don't overwrite before pasting in visual mode. #2945</title>
<updated>2015-07-04T16:17:30+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2015-07-03T14:02:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=e9c9d44f6531b4d648c55c235ecf5753a50adf6f'/>
<id>e9c9d44f6531b4d648c55c235ecf5753a50adf6f</id>
<content type='text'>
This occured when clipboard=unnamedplus and doing "+p in visual mode.
Fixes #2942.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This occured when clipboard=unnamedplus and doing "+p in visual mode.
Fixes #2942.
</pre>
</div>
</content>
</entry>
<entry>
<title>clipboard: cleanup `valid_yank_reg` and use it for `:redir`</title>
<updated>2015-04-17T14:12:32+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2015-04-12T20:13:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=26fedb133d817274a9f4bf54f97d3e5adfba67b4'/>
<id>26fedb133d817274a9f4bf54f97d3e5adfba67b4</id>
<content type='text'>
This fixes missing clipboard support for `:redir`

Helped-By: Michael Reed &lt;m.reed@mykolab.com&gt;
Helped-By: Scott Prager &lt;splinterofchaos@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes missing clipboard support for `:redir`

Helped-By: Michael Reed &lt;m.reed@mykolab.com&gt;
Helped-By: Scott Prager &lt;splinterofchaos@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
