<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/src, branch v0.1.5</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>ex_cmds: Factor pieces of functionality out of do_sub</title>
<updated>2016-08-21T03:55:26+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2016-08-20T01:42:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=c317fc20b01e77b22b4b1f2a3b0eceb7ed4f8eba'/>
<id>c317fc20b01e77b22b4b1f2a3b0eceb7ed4f8eba</id>
<content type='text'>
* sub_joining_lines: Optimization for :%s/\n//
* sub_grow_buf: Allocation of buffer to contain replacement text
* sub_parse_flags: Parse {flags} from :s command into subflags_T

Although this doesn't reduce do_sub's size enough to satisfy lint, it
covers the more straightforward pieces.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* sub_joining_lines: Optimization for :%s/\n//
* sub_grow_buf: Allocation of buffer to contain replacement text
* sub_parse_flags: Parse {flags} from :s command into subflags_T

Although this doesn't reduce do_sub's size enough to satisfy lint, it
covers the more straightforward pieces.
</pre>
</div>
</content>
</entry>
<entry>
<title>lint</title>
<updated>2016-08-21T03:55:26+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2016-08-18T03:04:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d9ab9160b8b306ca36cb52b57fc95a1c922a42d5'/>
<id>d9ab9160b8b306ca36cb52b57fc95a1c922a42d5</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.2219</title>
<updated>2016-08-21T03:55:11+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2016-08-16T20:07:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=c7e6b58012cc5cad8f1cb02876883cad7fcbbdeb'/>
<id>c7e6b58012cc5cad8f1cb02876883cad7fcbbdeb</id>
<content type='text'>
Problem:    Recursive call to substitute gets stuck in sandbox. (Nikolai
            Pavlov)
Solution:   Handle the recursive call. (Christian Brabandt, closes vim/vim#950)
            Add a test.

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

Closes #5118
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Recursive call to substitute gets stuck in sandbox. (Nikolai
            Pavlov)
Solution:   Handle the recursive call. (Christian Brabandt, closes vim/vim#950)
            Add a test.

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

Closes #5118
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:7.4.1700</title>
<updated>2016-08-21T03:54:43+00:00</updated>
<author>
<name>James McCoy</name>
<email>jamessan@jamessan.com</email>
</author>
<published>2016-08-17T01:47:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=35ddcc5bb484d461e6381d9ddbdf0438446f1299'/>
<id>35ddcc5bb484d461e6381d9ddbdf0438446f1299</id>
<content type='text'>
Problem:    Equivalence classes are not properly tested.
Solution:   Add tests for multi-byte and latin1. Fix an error. (Owen Leibman)

https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27

src/regexp.c changes weren't applied because they're specific to EBCDIC
handling, which has been dropped from nvim.

The latin1-specific tests were also removed since neovim intends to
remove the ability to have 'encoding' set to anything other than utf8.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Equivalence classes are not properly tested.
Solution:   Add tests for multi-byte and latin1. Fix an error. (Owen Leibman)

https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27

src/regexp.c changes weren't applied because they're specific to EBCDIC
handling, which has been dropped from nvim.

The latin1-specific tests were also removed since neovim intends to
remove the ability to have 'encoding' set to anything other than utf8.
</pre>
</div>
</content>
</entry>
<entry>
<title>job control: reuse common job code for rpc jobs</title>
<updated>2016-08-20T10:55:35+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2016-05-12T20:25:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2d60a15e25f487eda1ac00a9e6cdf9a6564fb416'/>
<id>2d60a15e25f487eda1ac00a9e6cdf9a6564fb416</id>
<content type='text'>
This makes stderr and exit callbacks work for rpc jobs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes stderr and exit callbacks work for rpc jobs
</pre>
</div>
</content>
</entry>
<entry>
<title>stream: set data together with callback</title>
<updated>2016-08-20T08:25:33+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2016-05-12T11:18:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=215922120c43163f4e1cc00851bd1b86890d3a28'/>
<id>215922120c43163f4e1cc00851bd1b86890d3a28</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: initialize variable (#5194)</title>
<updated>2016-08-19T21:41:42+00:00</updated>
<author>
<name>Matt Fowles Kulukundis</name>
<email>matt.fowles@gmail.com</email>
</author>
<published>2016-08-19T21:41:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=12b5c846ba6a0e349e689afaad8610b80444e1a0'/>
<id>12b5c846ba6a0e349e689afaad8610b80444e1a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge #5198 from equalsraf/windows-path-is-absolute</title>
<updated>2016-08-18T22:53:03+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2016-08-18T22:53:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6f0f8e7f4abd7a238250b71f8de208ff81e78d9c'/>
<id>6f0f8e7f4abd7a238250b71f8de208ff81e78d9c</id>
<content type='text'>
Windows: path_is_absolute()</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Windows: path_is_absolute()</pre>
</div>
</content>
</entry>
<entry>
<title>path.c: Avoid code duplication for path separator checks</title>
<updated>2016-08-18T08:41:09+00:00</updated>
<author>
<name>Rui Abreu Ferreira</name>
<email>raf-ep@gmx.com</email>
</author>
<published>2016-08-14T14:18:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ccb6af064fe879dc8e213a582f7f938ad1972ae3'/>
<id>ccb6af064fe879dc8e213a582f7f938ad1972ae3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Windows: Check drive letter in absolute paths</title>
<updated>2016-08-18T08:41:09+00:00</updated>
<author>
<name>Rui Abreu Ferreira</name>
<email>raf-ep@gmx.com</email>
</author>
<published>2016-08-14T10:20:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6b94d4d14f701b76b61a2c45862dff98d011f447'/>
<id>6b94d4d14f701b76b61a2c45862dff98d011f447</id>
<content type='text'>
Check if drive letter is alphabetic character in
path_is_absolute_path().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Check if drive letter is alphabetic character in
path_is_absolute_path().
</pre>
</div>
</content>
</entry>
</feed>
