<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/contrib, branch stable</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>contrib: add clang-tools to nix flake</title>
<updated>2021-04-10T15:28:16+00:00</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2021-04-10T15:28:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f695457f815544d0dc16469569c70556e3165bb6'/>
<id>f695457f815544d0dc16469569c70556e3165bb6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(flake): can now generate vimdoc</title>
<updated>2021-03-04T14:42:05+00:00</updated>
<author>
<name>Matthieu Coudron</name>
<email>mcoudron@hotmail.com</email>
</author>
<published>2021-02-22T20:02:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a167ae6d5d1cfa1fded1252af8224d00c3d9ff16'/>
<id>a167ae6d5d1cfa1fded1252af8224d00c3d9ff16</id>
<content type='text'>
and removed warning about deprecated usage of stdenv.lib

also can run `make pylint shlint`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and removed warning about deprecated usage of stdenv.lib

also can run `make pylint shlint`.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(flake): add  debuginfo to nvim-debug (#13947)</title>
<updated>2021-02-17T17:58:40+00:00</updated>
<author>
<name>Matthieu Coudron</name>
<email>teto@users.noreply.github.com</email>
</author>
<published>2021-02-17T17:58:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2dd383c943ea31abf30ec1e39fbeb5f5971131aa'/>
<id>2dd383c943ea31abf30ec1e39fbeb5f5971131aa</id>
<content type='text'>
nvim-debug was missing symbols.
adding the lock file to remove the flake warning message as well.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
nvim-debug was missing symbols.
adding the lock file to remove the flake warning message as well.</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: update nix flake to use flake-utils (#13685)</title>
<updated>2021-01-05T20:12:21+00:00</updated>
<author>
<name>Michael Lingelbach</name>
<email>m.j.lbach@gmail.com</email>
</author>
<published>2021-01-05T20:12:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=0efc71313638faa6e7d06df2663ab7e1f87ad3ba'/>
<id>0efc71313638faa6e7d06df2663ab7e1f87ad3ba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(flake): enable make functionaltest</title>
<updated>2020-12-30T22:32:40+00:00</updated>
<author>
<name>Matthieu Coudron</name>
<email>mcoudron@hotmail.com</email>
</author>
<published>2020-12-30T21:12:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=61c9d2a213bf4259dfa449c00d93907480accab0'/>
<id>61c9d2a213bf4259dfa449c00d93907480accab0</id>
<content type='text'>
otherwise busted is not provided/found and functionaltests are disabled.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
otherwise busted is not provided/found and functionaltests are disabled.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(nix): add flake.nix (#13487)</title>
<updated>2020-12-09T08:15:37+00:00</updated>
<author>
<name>Matthieu Coudron</name>
<email>teto@users.noreply.github.com</email>
</author>
<published>2020-12-09T08:15:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=3974c4bce371f8039da713016c46535d03aeb673'/>
<id>3974c4bce371f8039da713016c46535d03aeb673</id>
<content type='text'>
`flakes` is a feature available in the unstable version of the `nix` package manager
to ease the distribution of nix expressions see https://www.tweag.io/blog/2020-05-25-flakes/ .

Nix excels at software reproducibility and is available/can be
installed on different distributions (ubuntu/void/debian etc) as well
as macOS.

This flakes contains 3 packages that can be installed via for instance
`nix run 'github:neovim/neovim?dir=contrib#nvim-debug'`
or
`nix run 'github:neovim/neovim?dir=contrib'` for the default version.

you can register an alias
`nix registry add neovim 'github:neovim/neovim?dir=contrib'`
and the previous commands become:
`nix run neovim`</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`flakes` is a feature available in the unstable version of the `nix` package manager
to ease the distribution of nix expressions see https://www.tweag.io/blog/2020-05-25-flakes/ .

Nix excels at software reproducibility and is available/can be
installed on different distributions (ubuntu/void/debian etc) as well
as macOS.

This flakes contains 3 packages that can be installed via for instance
`nix run 'github:neovim/neovim?dir=contrib#nvim-debug'`
or
`nix run 'github:neovim/neovim?dir=contrib'` for the default version.

you can register an alias
`nix registry add neovim 'github:neovim/neovim?dir=contrib'`
and the previous commands become:
`nix run neovim`</pre>
</div>
</content>
</entry>
<entry>
<title>cmake: use LibFindMacros for utf8proc (#11114)</title>
<updated>2019-09-29T02:44:02+00:00</updated>
<author>
<name>Daniel Hahler</name>
<email>git@thequod.de</email>
</author>
<published>2019-09-29T02:44:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=0a2a1e241fee64d8ceeca023dab4aca71b62dfbb'/>
<id>0a2a1e241fee64d8ceeca023dab4aca71b62dfbb</id>
<content type='text'>
Also update doc.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also update doc.</pre>
</div>
</content>
</entry>
<entry>
<title>doc: contrib/local.mk.example: include ENABLE_LTO  (#11097)</title>
<updated>2019-09-26T21:43:49+00:00</updated>
<author>
<name>Daniel Hahler</name>
<email>git@thequod.de</email>
</author>
<published>2019-09-26T21:43:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=fe9d54f418973f59ec88ca05489da6df3609811f'/>
<id>fe9d54f418973f59ec88ca05489da6df3609811f</id>
<content type='text'>
Using it takes 30+ additional seconds for me with a ccache-enabled build
(43s vs. 12s).

While it certainly makes sense to use DEBUG during development,
bisecting etc, it should be made clearer what causes this.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using it takes 30+ additional seconds for me with a ccache-enabled build
(43s vs. 12s).

While it certainly makes sense to use DEBUG during development,
bisecting etc, it should be made clearer what causes this.</pre>
</div>
</content>
</entry>
<entry>
<title>build: clean up / remove X_USE_STATIC (#10713)</title>
<updated>2019-08-07T20:19:55+00:00</updated>
<author>
<name>Daniel Hahler</name>
<email>git@thequod.de</email>
</author>
<published>2019-08-07T20:19:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6ebe476675923cdade0a460148209ee9f01c2fd6'/>
<id>6ebe476675923cdade0a460148209ee9f01c2fd6</id>
<content type='text'>
This was discouraged (as an option) in 5b5d353151 [1], not enabled/used by
default, and not working according to the comment in local.mk.example.

Taken out of https://github.com/neovim/neovim/pull/10395.

1: https://github.com/neovim/neovim/pull/2465</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was discouraged (as an option) in 5b5d353151 [1], not enabled/used by
default, and not working according to the comment in local.mk.example.

Taken out of https://github.com/neovim/neovim/pull/10395.

1: https://github.com/neovim/neovim/pull/2465</pre>
</div>
</content>
</entry>
<entry>
<title>py: flake8 fixes</title>
<updated>2019-07-29T20:14:23+00:00</updated>
<author>
<name>Daniel Hahler</name>
<email>git@thequod.de</email>
</author>
<published>2019-07-29T02:43:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=d7b04ae7a713412ac2882d1c6c2fce70ebb5766e'/>
<id>d7b04ae7a713412ac2882d1c6c2fce70ebb5766e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
