<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/contrib, branch v0.1.1</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>Remove all invalid nvimrc and ngvimrc references</title>
<updated>2015-11-11T21:50:14+00:00</updated>
<author>
<name>Marco Hinz</name>
<email>mh.codebro@gmail.com</email>
</author>
<published>2015-11-11T00:00:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=85b1052c3ceeaeae7da907707d7bbdce8d71f642'/>
<id>85b1052c3ceeaeae7da907707d7bbdce8d71f642</id>
<content type='text'>
"vimrc" refers to all files that are used to configure Neovim. The main
configuration file is init.vim nowadays.

All nvimrc references that are left refer to a local ".nvimrc" which is read
if 'exrc' is set. ".ngvimrc" references were completely wiped.

Closes #3552.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"vimrc" refers to all files that are used to configure Neovim. The main
configuration file is init.vim nowadays.

All nvimrc references that are left refer to a local ".nvimrc" which is read
if 'exrc' is set. ".ngvimrc" references were completely wiped.

Closes #3552.
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: Clarify the intention of the YCM configuration</title>
<updated>2015-11-05T22:47:25+00:00</updated>
<author>
<name>Chris Snow</name>
<email>chsnow123@gmail.com</email>
</author>
<published>2015-11-05T18:13:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=95fbfee201a78cb8842ff122961e66372eec1f72'/>
<id>95fbfee201a78cb8842ff122961e66372eec1f72</id>
<content type='text'>
This setup is only meant for developers, not all users of YCM.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This setup is only meant for developers, not all users of YCM.
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: Add custom Dev build type.</title>
<updated>2015-11-01T14:41:36+00:00</updated>
<author>
<name>Florian Walch</name>
<email>florian@fwalch.com</email>
</author>
<published>2015-09-28T10:14:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=87e5a4131666e44354f280538cbc6bbe52225092'/>
<id>87e5a4131666e44354f280538cbc6bbe52225092</id>
<content type='text'>
Introduce new build type Dev that replaces RelWithDebInfo for development
builds off master and has optimizations, debug info, and logging enabled.
Keep assertions enabled for RelWithDebInfo.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduce new build type Dev that replaces RelWithDebInfo for development
builds off master and has optimizations, debug info, and logging enabled.
Keep assertions enabled for RelWithDebInfo.
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/local.mk.example: Mention ENABLE_JEMALLOC</title>
<updated>2015-10-29T20:19:34+00:00</updated>
<author>
<name>Michael Reed</name>
<email>m.reed@mykolab.com</email>
</author>
<published>2015-10-29T20:16:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=8ef2bb53661e24d78506185ccfa167f1b742b9be'/>
<id>8ef2bb53661e24d78506185ccfa167f1b742b9be</id>
<content type='text'>
This doesn't prevent compilation of jemalloc, but the important thing is
that it prevents it being used in nvim.

refs 6cd20177df9d675c4c8de9ae27ce8c0ea2a94cca
refs 95707bf336794c7ec8991917f184c02ae873dd8c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This doesn't prevent compilation of jemalloc, but the important thing is
that it prevents it being used in nvim.

refs 6cd20177df9d675c4c8de9ae27ce8c0ea2a94cca
refs 95707bf336794c7ec8991917f184c02ae873dd8c
</pre>
</div>
</content>
</entry>
<entry>
<title>viminfo: First version of ShaDa file dumping</title>
<updated>2015-10-08T18:59:51+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2015-04-25T15:47:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=244dbe3a77bf548f73d8781da7327f30e818b08a'/>
<id>244dbe3a77bf548f73d8781da7327f30e818b08a</id>
<content type='text'>
What works:

1. ShaDa file dumping: header, registers, jump list, history, search patterns,
   substitute strings, variables.
2. ShaDa file reading: registers, global marks, variables.

Most was not tested.

TODO:

1. Merging.
2. Reading history, local marks, jump and buffer lists.
3. Documentation update.
4. Converting some data from &amp;encoding.
5. Safer variant of dumping viminfo (dump to temporary file then rename).
6. Removing old viminfo code (currently masked with `#if 0` in a ShaDa file for
   reference).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
What works:

1. ShaDa file dumping: header, registers, jump list, history, search patterns,
   substitute strings, variables.
2. ShaDa file reading: registers, global marks, variables.

Most was not tested.

TODO:

1. Merging.
2. Reading history, local marks, jump and buffer lists.
3. Documentation update.
4. Converting some data from &amp;encoding.
5. Safer variant of dumping viminfo (dump to temporary file then rename).
6. Removing old viminfo code (currently masked with `#if 0` in a ShaDa file for
   reference).
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: Implement gdb pretty printer for UGrid</title>
<updated>2015-09-06T12:18:52+00:00</updated>
<author>
<name>Thiago de Arruda</name>
<email>tpadilha84@gmail.com</email>
</author>
<published>2015-08-26T12:08:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=5bb4139e6c98539564431de105dc9e0d06e207ac'/>
<id>5bb4139e6c98539564431de105dc9e0d06e207ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: Update local.mk</title>
<updated>2015-05-13T21:37:19+00:00</updated>
<author>
<name>Michael Reed</name>
<email>m.reed@mykolab.com</email>
</author>
<published>2015-05-12T02:50:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=1e72b2e6bd7a2b79483ec0a9ef25c56b6fb462d4'/>
<id>1e72b2e6bd7a2b79483ec0a9ef25c56b6fb462d4</id>
<content type='text'>
DUSE_JEMALLOC was removed in 8130eb1191aece52d8b2790302abf1bd09aaf90f

Helped-by: Florian Walch &lt;florian@fwalch.com&gt;
Helped-by: John Szakmeister &lt;john@szakmeister.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DUSE_JEMALLOC was removed in 8130eb1191aece52d8b2790302abf1bd09aaf90f

Helped-by: Florian Walch &lt;florian@fwalch.com&gt;
Helped-by: John Szakmeister &lt;john@szakmeister.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Change neovim.org references to neovim.io</title>
<updated>2015-04-19T20:17:45+00:00</updated>
<author>
<name>Thiago de Arruda</name>
<email>tpadilha84@gmail.com</email>
</author>
<published>2015-04-19T20:17:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=84891f2802a0db1a257580f341d70a5fdb0f6c75'/>
<id>84891f2802a0db1a257580f341d70a5fdb0f6c75</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/local.mk.example: Misc. improvements</title>
<updated>2015-04-17T00:22:05+00:00</updated>
<author>
<name>Michael Reed</name>
<email>m.reed@mykolab.com</email>
</author>
<published>2015-04-14T22:29:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7c0904df4a6cef62b97a919d9da3e843204890ea'/>
<id>7c0904df4a6cef62b97a919d9da3e843204890ea</id>
<content type='text'>
- Mention how to disable jemalloc during compilation
- Mention using additional CFLAGS during compilation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Mention how to disable jemalloc during compilation
- Mention using additional CFLAGS during compilation
</pre>
</div>
</content>
</entry>
<entry>
<title>runtime: Add vimexpect library and example gdb plugin</title>
<updated>2015-04-02T14:33:48+00:00</updated>
<author>
<name>Thiago de Arruda</name>
<email>tpadilha84@gmail.com</email>
</author>
<published>2015-04-02T14:28:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=617878f7473a9f2980df2627601c38fd9f5029ca'/>
<id>617878f7473a9f2980df2627601c38fd9f5029ca</id>
<content type='text'>
This library makes it easier to script communication with interactive programs.
It is similar to what the "expect" tcl extension does, but uses an object
oriented API and is designed to integrate nicely with Neovim job control.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This library makes it easier to script communication with interactive programs.
It is similar to what the "expect" tcl extension does, but uses an object
oriented API and is designed to integrate nicely with Neovim job control.
</pre>
</div>
</content>
</entry>
</feed>
