<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/test/functional/terminal, branch v0.3.7</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>:terminal : set topline based on window height #8325</title>
<updated>2019-02-06T03:12:14+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2019-02-06T03:12:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=12044218887264a885fdf4c7469e68d980c5d738'/>
<id>12044218887264a885fdf4c7469e68d980c5d738</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: win/TUI builtin terminfos</title>
<updated>2018-12-28T00:46:25+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-12-28T00:46:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=e85b911f026cc0826bb2bd35accc5e1a40546a5b'/>
<id>e85b911f026cc0826bb2bd35accc5e1a40546a5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>highlight: Fix missing .rgb_sp_color in initializers (#9287)</title>
<updated>2018-11-30T20:13:01+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-11-30T20:13:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=32a30d90b460048a43490a16d2e006d0e39b0e38'/>
<id>32a30d90b460048a43490a16d2e006d0e39b0e38</id>
<content type='text'>
terminal_get_line_attributes() had this bug for a long time, though it
likely had no effect visible to users.

ref #9028
ref 60f845ca55a1</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
terminal_get_line_attributes() had this bug for a long time, though it
likely had no effect visible to users.

ref #9028
ref 60f845ca55a1</pre>
</div>
</content>
</entry>
<entry>
<title>defaults: background=dark #2894 (#9205)</title>
<updated>2018-11-20T09:52:49+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-11-20T09:52:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=deb18a050ef522791c48c7c8c549a2c4b2043be0'/>
<id>deb18a050ef522791c48c7c8c549a2c4b2043be0</id>
<content type='text'>
By historical accident, Nvim defaults to background=light. So on a dark
background, `:colorscheme default` looks completely wrong.

The "smart" logic that Vim uses is confusing for anyone who uses Vim on
multiple platforms, so rather than mimic that, pick the (hopefully) most
common default.

- Since Neovim is dark-powered, we assume most users have dark backgrounds.
- Most of the GUIs tend to have a dark background by default.

ref #6289</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By historical accident, Nvim defaults to background=light. So on a dark
background, `:colorscheme default` looks completely wrong.

The "smart" logic that Vim uses is confusing for anyone who uses Vim on
multiple platforms, so rather than mimic that, pick the (hopefully) most
common default.

- Since Neovim is dark-powered, we assume most users have dark backgrounds.
- Most of the GUIs tend to have a dark background by default.

ref #6289</pre>
</div>
</content>
</entry>
<entry>
<title>test: adjust time-sensitive tests (#9220)</title>
<updated>2018-11-10T10:12:04+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-11-10T10:12:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f8639dc99cb085432b14da086af316176152bc1f'/>
<id>f8639dc99cb085432b14da086af316176152bc1f</id>
<content type='text'>
- window_split_tab_spec.lua: Put cursor at bottom of :terminal buffer so
  that it follows output.
- inccommand_spec.lua: Increase timeout to allow 2nd retry.
- Timer tests are less reliable on Travis CI macOS 10.12/10.13.
  ref #6829
  ref e39dade80b02
  ref de13113dc16e
  ref https://github.com/neovim/neovim/pull/9095#issuecomment-429603452
  &gt; We don't guarantee that a X ms timer is triggered during Y ms sleep
  &gt; for any X&lt;Y, though I would expect the load to be really bad for this
  &gt; to happen with X=10ms, Y=40ms.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- window_split_tab_spec.lua: Put cursor at bottom of :terminal buffer so
  that it follows output.
- inccommand_spec.lua: Increase timeout to allow 2nd retry.
- Timer tests are less reliable on Travis CI macOS 10.12/10.13.
  ref #6829
  ref e39dade80b02
  ref de13113dc16e
  ref https://github.com/neovim/neovim/pull/9095#issuecomment-429603452
  &gt; We don't guarantee that a X ms timer is triggered during Y ms sleep
  &gt; for any X&lt;Y, though I would expect the load to be really bad for this
  &gt; to happen with X=10ms, Y=40ms.</pre>
</div>
</content>
</entry>
<entry>
<title>test/win: window_split_tab_spec: fix retry()</title>
<updated>2018-11-05T06:59:14+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-11-05T06:59:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6fe740c7abfda7ce84aadbb363b293d8715667be'/>
<id>6fe740c7abfda7ce84aadbb363b293d8715667be</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test/win: window_split_tab_spec: increase retry() time</title>
<updated>2018-11-05T02:25:36+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-11-05T02:25:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=10ef903648a5230758ba8a6e70d1f7402f677eec'/>
<id>10ef903648a5230758ba8a6e70d1f7402f677eec</id>
<content type='text'>
The default timeout of 10s only allows 1 retry.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The default timeout of 10s only allows 1 retry.
</pre>
</div>
</content>
</entry>
<entry>
<title>test/win: retry unreliable SIGWINCH test</title>
<updated>2018-11-04T13:24:05+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-11-04T12:09:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=697176fc3ea968e5914eda0d0a606ade7e6c285e'/>
<id>697176fc3ea968e5914eda0d0a606ade7e6c285e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>win: test: SIGWINCH is noisy #7506</title>
<updated>2018-11-01T16:17:07+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-10-31T23:11:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f5671c8614c2e0b75114fe31057efc387847fca7'/>
<id>f5671c8614c2e0b75114fe31057efc387847fca7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: fix/speedup scrollback_spec</title>
<updated>2018-10-21T23:30:28+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>janedmundlazo@hotmail.com</email>
</author>
<published>2018-10-21T04:56:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=db6521a560d2ed16d1d47e0ecadbd843ad1ceec3'/>
<id>db6521a560d2ed16d1d47e0ecadbd843ad1ceec3</id>
<content type='text'>
- fix: Use "set PROMPT=$" trick to satisfy screen:expect{any='%$'}
- speedup: Use cmd.exe instead of powershell.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fix: Use "set PROMPT=$" trick to satisfy screen:expect{any='%$'}
- speedup: Use cmd.exe instead of powershell.
</pre>
</div>
</content>
</entry>
</feed>
