<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/test/functional, branch v0.1.2</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>Merge pull request #4175 from watiko/vim-7.4.700</title>
<updated>2016-02-07T06:33:01+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-07T06:33:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=827e267800417b8fdd1340d54f5dc5fa9d81bb92'/>
<id>827e267800417b8fdd1340d54f5dc5fa9d81bb92</id>
<content type='text'>
vim-patch:7.4.700</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.700</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4157 from watiko/vim-7.4.694</title>
<updated>2016-02-05T15:02:38+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-05T15:02:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d9cada146fbb476fc2239cc2235deeff2ab8c1dd'/>
<id>d9cada146fbb476fc2239cc2235deeff2ab8c1dd</id>
<content type='text'>
vim-patch:7.4.{662,694}</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.{662,694}</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Add test case for legacy test 45</title>
<updated>2016-02-05T05:09:03+00:00</updated>
<author>
<name>watiko</name>
<email>service@mail.watiko.net</email>
</author>
<published>2016-02-05T05:09:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3cf8ad6f48da3239619e95a52017b1a191789c2a'/>
<id>3cf8ad6f48da3239619e95a52017b1a191789c2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Migrate legacy test 45.</title>
<updated>2016-02-05T04:55:27+00:00</updated>
<author>
<name>Lucas Hoffmann</name>
<email>l-m-h@web.de</email>
</author>
<published>2015-05-15T17:03:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=86c5696c274577ceec1dfabe6e92cf480250f865'/>
<id>86c5696c274577ceec1dfabe6e92cf480250f865</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: Migrate legacy test textobjects</title>
<updated>2016-02-03T12:56:22+00:00</updated>
<author>
<name>watiko</name>
<email>service@mail.watiko.net</email>
</author>
<published>2016-02-03T12:52:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=4cbe52b3a3651047f51bd30801d8d9c26e0fce13'/>
<id>4cbe52b3a3651047f51bd30801d8d9c26e0fce13</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ui: revert "gui_running" hack</title>
<updated>2016-02-03T06:21:59+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-03T05:49:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=79a6983c0c40c5f4ad62550c0b43ed100e862a2e'/>
<id>79a6983c0c40c5f4ad62550c0b43ed100e862a2e</id>
<content type='text'>
Plugins (YCM, dispatch.vim) use gui_running to decide behavior; so do
some colorschemes. Up to now, nvim lied about gui_running for the
benefit of colorschemes and the detriment of all _other_ plugins that
check this condition. That's counterproductive: a user employs at most
_one_ colorscheme but may use many other plugins which expect the Vim
legacy semantics of gui_running.

Moreover, colorschemes usually don't _need_ to check gui_running: they
can instead set cterm{fg,bg} and gui{fg,bg} in the same :highlight call.

It is reasonable for users who want "true color" to modify their
colorscheme once (or request upstream to do so) in order to avoid
running into quirks in any other plugins.

Closes #2782
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Plugins (YCM, dispatch.vim) use gui_running to decide behavior; so do
some colorschemes. Up to now, nvim lied about gui_running for the
benefit of colorschemes and the detriment of all _other_ plugins that
check this condition. That's counterproductive: a user employs at most
_one_ colorscheme but may use many other plugins which expect the Vim
legacy semantics of gui_running.

Moreover, colorschemes usually don't _need_ to check gui_running: they
can instead set cterm{fg,bg} and gui{fg,bg} in the same :highlight call.

It is reasonable for users who want "true color" to modify their
colorscheme once (or request upstream to do so) in order to avoid
running into quirks in any other plugins.

Closes #2782
</pre>
</div>
</content>
</entry>
<entry>
<title>Tests: fix according to lualint</title>
<updated>2016-02-02T19:23:12+00:00</updated>
<author>
<name>Marco Hinz</name>
<email>mh.codebro@gmail.com</email>
</author>
<published>2016-02-02T19:23:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3d15cab29d2dc2448066e6b839a04d88859ab0db'/>
<id>3d15cab29d2dc2448066e6b839a04d88859ab0db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>eval: Add +tablineat feature</title>
<updated>2016-02-01T18:40:46+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2015-12-25T21:44:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ad5cb87d7af772711579ad825e32a7cbddcd5170'/>
<id>ad5cb87d7af772711579ad825e32a7cbddcd5170</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>functests: Improve tabline click tests</title>
<updated>2016-02-01T18:40:46+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2015-12-20T06:51:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3f314d40beb63c24234348a33f3bf812b8d02ad9'/>
<id>3f314d40beb63c24234348a33f3bf812b8d02ad9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4129 from jbradaric/vim-7.4.745</title>
<updated>2016-02-01T07:49:27+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-02-01T07:49:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=be1d5a61be3e75d4d2b15b76b2bb027605c70ff8'/>
<id>be1d5a61be3e75d4d2b15b76b2bb027605c70ff8</id>
<content type='text'>
vim-patch:7.4.{745,746,747,748}</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.{745,746,747,748}</pre>
</div>
</content>
</entry>
</feed>
