<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/test, branch v0.1.4</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/ui: screen tests for completion popupmenu</title>
<updated>2016-04-24T13:17:39+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2016-04-13T21:54:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3c4544c532b027416d6409449bb88fad8513e546'/>
<id>3c4544c532b027416d6409449bb88fad8513e546</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 #4367 from jbradaric/vim-7.4.1107</title>
<updated>2016-04-22T08:11:45+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-04-22T08:11:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3d7a6e4d54cbb6cb3cd7e35b604b956de9f0c950'/>
<id>3d7a6e4d54cbb6cb3cd7e35b604b956de9f0c950</id>
<content type='text'>
vim-patch:7.4.{1107,1114,1116,1117,1120}</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.{1107,1114,1116,1117,1120}</pre>
</div>
</content>
</entry>
<entry>
<title>Merge #3229 ':tcd'</title>
<updated>2016-04-21T07:15:52+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-04-21T07:15:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=5ebffaae4e6c08630b705b5994a509a08cbecce6'/>
<id>5ebffaae4e6c08630b705b5994a509a08cbecce6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>eval: let getreg() return valid list for an undefined register</title>
<updated>2016-04-21T16:11:06+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2016-04-20T11:44:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ce17d031805ab548f26f5b2d519fb8e3bf1bbff1'/>
<id>ce17d031805ab548f26f5b2d519fb8e3bf1bbff1</id>
<content type='text'>
vim-patch:7.4.1755
this prevents a crash when the list is used in setreg() later
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
vim-patch:7.4.1755
this prevents a crash when the list is used in setreg() later
</pre>
</div>
</content>
</entry>
<entry>
<title>tcd: doc, error messages</title>
<updated>2016-04-21T07:15:08+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-04-21T07:04:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=89e6973fe2b57316817877f64f0be5ebc5a25b7f'/>
<id>89e6973fe2b57316817877f64f0be5ebc5a25b7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement tab-local working directory feature.</title>
<updated>2016-04-20T10:52:31+00:00</updated>
<author>
<name>HiPhish</name>
<email>hiphish@Aleksandars-iMac.local</email>
</author>
<published>2015-08-24T10:58:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ec71d87b8140ae097158f7e219b26701aed8158e'/>
<id>ec71d87b8140ae097158f7e219b26701aed8158e</id>
<content type='text'>
New ex commands: 'tcd', 'tchdir'
Changed Vimscript functions: 'haslocaldir', 'getcwd'

The ex-commands ':tcd' and ':tchdir' are the tab-local equivalents of
':lcd' and ':lchdir'. There are no new Vimscript functions introduced,
instead the functions 'haslocaldir' and 'getcwd' take in optional
arguments. See the documentation for details

Since there is now different levels of local directory a simple boolean
at source level is no longer sufficient; a new enumeration type is used
for the scope-level from now on.

The documentation has been accommodated for these new commands and
functional tests have been written to test the feature.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
New ex commands: 'tcd', 'tchdir'
Changed Vimscript functions: 'haslocaldir', 'getcwd'

The ex-commands ':tcd' and ':tchdir' are the tab-local equivalents of
':lcd' and ':lchdir'. There are no new Vimscript functions introduced,
instead the functions 'haslocaldir' and 'getcwd' take in optional
arguments. See the documentation for details

Since there is now different levels of local directory a simple boolean
at source level is no longer sufficient; a new enumeration type is used
for the scope-level from now on.

The documentation has been accommodated for these new commands and
functional tests have been written to test the feature.
</pre>
</div>
</content>
</entry>
<entry>
<title>delete_spec: Fix linter errors.</title>
<updated>2016-04-20T06:25:51+00:00</updated>
<author>
<name>Jurica Bradaric</name>
<email>jbradaric@gmail.com</email>
</author>
<published>2016-02-29T19:27:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=5734e218738e7b76cef1e2acfdc79a17dad650ad'/>
<id>5734e218738e7b76cef1e2acfdc79a17dad650ad</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge tempfile.c back into fileio.c</title>
<updated>2016-04-20T06:25:51+00:00</updated>
<author>
<name>Jurica Bradaric</name>
<email>jbradaric@gmail.com</email>
</author>
<published>2016-02-29T19:23:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2dfc8de1cf59a2db2b873837946549f631d06d71'/>
<id>2dfc8de1cf59a2db2b873837946549f631d06d71</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:7.4.1120</title>
<updated>2016-04-20T06:25:51+00:00</updated>
<author>
<name>Jurica Bradaric</name>
<email>jbradaric@gmail.com</email>
</author>
<published>2016-02-28T12:26:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=425fcdb5b4bc6dec05dafe2e2675c8a7cfe37187'/>
<id>425fcdb5b4bc6dec05dafe2e2675c8a7cfe37187</id>
<content type='text'>
Problem:    delete(x, 'rf') fails if a directory is empty. (Lcd)
Solution:   Ignore not finding matches in an empty directory.

https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    delete(x, 'rf') fails if a directory is empty. (Lcd)
Solution:   Ignore not finding matches in an empty directory.

https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:7.4.1114</title>
<updated>2016-04-20T06:25:51+00:00</updated>
<author>
<name>Jurica Bradaric</name>
<email>jbradaric@gmail.com</email>
</author>
<published>2016-02-28T11:44:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=88a735166b7ee1eadaf6d46be11804dc0e1a251a'/>
<id>88a735166b7ee1eadaf6d46be11804dc0e1a251a</id>
<content type='text'>
Problem:    delete() does not work well with symbolic links.
Solution:   Recognize symbolik links.

https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    delete() does not work well with symbolic links.
Solution:   Recognize symbolik links.

https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
</pre>
</div>
</content>
</entry>
</feed>
