<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/config, branch v0.1.0</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 useless FEAT_BROWSE ifdef</title>
<updated>2015-11-01T19:36:23+00:00</updated>
<author>
<name>Michael Reed</name>
<email>m.reed@mykolab.com</email>
</author>
<published>2015-11-01T19:32:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=0c54dc55284ec3f9ad914db3da484464161e9c09'/>
<id>0c54dc55284ec3f9ad914db3da484464161e9c09</id>
<content type='text'>
The only thing this affected was the return value of
has('browsefilter').
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The only thing this affected was the return value of
has('browsefilter').
</pre>
</div>
</content>
</entry>
<entry>
<title>version: Prepare for releases.</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:17:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a83020922d0dcdde4ca29394342901ea4bc71e8f'/>
<id>a83020922d0dcdde4ca29394342901ea4bc71e8f</id>
<content type='text'>
* Hide commit information from --version if we can't find any (e.g. when
  building from tarball).

To define a release in CMake, set NVIM_VERSION_PRERELEASE to "".
This will modify --version output to:

    * Show annotated Git tag instead of commit hash (NVIM_VERSION_COMMIT).
    * Hide commit date (NVIM_VERSION_BUILD).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Hide commit information from --version if we can't find any (e.g. when
  building from tarball).

To define a release in CMake, set NVIM_VERSION_PRERELEASE to "".
This will modify --version output to:

    * Show annotated Git tag instead of commit hash (NVIM_VERSION_COMMIT).
    * Hide commit date (NVIM_VERSION_BUILD).
</pre>
</div>
</content>
</entry>
<entry>
<title>config: Check order and endianess even when cross-compiling</title>
<updated>2015-10-08T19:00:45+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2015-08-15T14:41:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d1830e143342a1714fa66af727a2cc5c4084b6fe'/>
<id>d1830e143342a1714fa66af727a2cc5c4084b6fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>shada,config: Use CMake to determine endianess and be64toh existence</title>
<updated>2015-10-08T19:00:44+00:00</updated>
<author>
<name>ZyX</name>
<email>kp-pav@yandex.ru</email>
</author>
<published>2015-08-15T13:16:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=0d15b35d49fdc9872fb28b31c9ef521ef8ab044d'/>
<id>0d15b35d49fdc9872fb28b31c9ef521ef8ab044d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: remove USEMAN_S</title>
<updated>2015-09-23T04:05:32+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2015-09-19T18:26:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=481049e0c91995dd48b7cc10f8fbb157258a5e26'/>
<id>481049e0c91995dd48b7cc10f8fbb157258a5e26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>os/os_defs.h cleanup: Remaining signal stuff</title>
<updated>2015-08-27T20:56:05+00:00</updated>
<author>
<name>Michael Reed</name>
<email>m.reed@mykolab.com</email>
</author>
<published>2015-08-26T17:27:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2d50a956011cfdd70efc3ebb60e9d27bd97ffdb6'/>
<id>2d50a956011cfdd70efc3ebb60e9d27bd97ffdb6</id>
<content type='text'>
RETSIGTYPE, SIGRETURN, and SIGDEFARG are always defined the same, so
inline them for simplicity; SIGDUMMYARG, however, is unused, so remove
it.

Even if these things don't work on windows, the signal handler in
if_cscope.c is already wrapped with '#idef UNIX', as is its only call
site.

Reviewed-by: Justin M. Keyes &lt;justinkz@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RETSIGTYPE, SIGRETURN, and SIGDEFARG are always defined the same, so
inline them for simplicity; SIGDUMMYARG, however, is unused, so remove
it.

Even if these things don't work on windows, the signal handler in
if_cscope.c is already wrapped with '#idef UNIX', as is its only call
site.

Reviewed-by: Justin M. Keyes &lt;justinkz@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Small cleanup after #3227</title>
<updated>2015-08-26T01:38:15+00:00</updated>
<author>
<name>Michael Reed</name>
<email>m.reed@mykolab.com</email>
</author>
<published>2015-08-26T01:36:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a4856694e1239cd55326ad220c4a2a92202e7620'/>
<id>a4856694e1239cd55326ad220c4a2a92202e7620</id>
<content type='text'>
HAVE_SYS_TIME_H isn't being used by anything, remove it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
HAVE_SYS_TIME_H isn't being used by anything, remove it.
</pre>
</div>
</content>
</entry>
<entry>
<title>remove references to &lt;sys/time.h&gt;</title>
<updated>2015-08-24T04:27:30+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2015-08-24T04:26:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7280e8c365af585400ad9f5da56dcd2f9d043982'/>
<id>7280e8c365af585400ad9f5da56dcd2f9d043982</id>
<content type='text'>
Since gettimeofday() was replaced by os_time in
fb5a786bdb5b7b52b9c36b3eb8b6d2cc002aa8f3 we do not need sys/time.h.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since gettimeofday() was replaced by os_time in
fb5a786bdb5b7b52b9c36b3eb8b6d2cc002aa8f3 we do not need sys/time.h.
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: Fix helptags generation when prefix is not /usr. #2741</title>
<updated>2015-06-09T05:12:08+00:00</updated>
<author>
<name>Thomas Anderson</name>
<email>tanderson@caltech.edu</email>
</author>
<published>2015-05-25T11:04:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=9995f15a98e8e1c75458a455b1a3ced8c155e634'/>
<id>9995f15a98e8e1c75458a455b1a3ced8c155e634</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cmake: Remove unneeded platform checks</title>
<updated>2015-05-21T22:16:40+00:00</updated>
<author>
<name>Rui Abreu Ferreira</name>
<email>raf-ep@gmx.com</email>
</author>
<published>2015-05-20T20:24:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=99aacb142909c8a3d57e9ebe4c3c1fc9e203e210'/>
<id>99aacb142909c8a3d57e9ebe4c3c1fc9e203e210</id>
<content type='text'>
Removed unneeded platform checks from config/config.h.in and
config/CMakeLists.txt

- HAVE_OSPEED and HAVE_UP_BC_PC were used by the old UI, and are
  no longer needed.
- sigvec() was used as part of the signal handling code in os_unix.c, but it is
  no longer used in Neovim.
- The function lstat() is no longer used, replaced with libuv.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removed unneeded platform checks from config/config.h.in and
config/CMakeLists.txt

- HAVE_OSPEED and HAVE_UP_BC_PC were used by the old UI, and are
  no longer needed.
- sigvec() was used as part of the signal handling code in os_unix.c, but it is
  no longer used in Neovim.
- The function lstat() is no longer used, replaced with libuv.
</pre>
</div>
</content>
</entry>
</feed>
