<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/src/nvim/api/private, branch v0.5.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>feat(float): add rounded borders preset</title>
<updated>2021-06-14T09:10:57+00:00</updated>
<author>
<name>Christian Clason</name>
<email>christian.clason@uni-due.de</email>
</author>
<published>2021-06-13T17:54:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=5b6edc852fe9434e0d42602083d113e3b2efc253'/>
<id>5b6edc852fe9434e0d42602083d113e3b2efc253</id>
<content type='text'>
Add `borders = "rounded"` preset for `nvim_open_win`, equivalent to

  border = {"╭", "─", "╮", "│", "╯", "─", "╰", "│"}

Also add undocumented "solid" preset to docs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add `borders = "rounded"` preset for `nvim_open_win`, equivalent to

  border = {"╭", "─", "╮", "│", "╯", "─", "╰", "│"}

Also add undocumented "solid" preset to docs.
</pre>
</div>
</content>
</entry>
<entry>
<title>api(parse_float_config): use api_object_to_bool()</title>
<updated>2021-06-01T02:05:04+00:00</updated>
<author>
<name>Sean Dewar</name>
<email>seandewar@users.noreply.github.com</email>
</author>
<published>2021-05-30T11:46:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=db6523cd130e239eea4cec4d3e60f2323bffe0fc'/>
<id>db6523cd130e239eea4cec4d3e60f2323bffe0fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>api(nvim_open_win): add "noautocmd" option</title>
<updated>2021-06-01T02:05:04+00:00</updated>
<author>
<name>Sean Dewar</name>
<email>seandewar@users.noreply.github.com</email>
</author>
<published>2021-05-27T21:10:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=802f8429d5d908457658e4b9859d8ed110bc0247'/>
<id>802f8429d5d908457658e4b9859d8ed110bc0247</id>
<content type='text'>
This option, when set, stops nvim_open_win() from potentially firing
buffer-related autocmd events
(BufEnter, BufLeave and BufWinEnter in the case of nvim_open_win()).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This option, when set, stops nvim_open_win() from potentially firing
buffer-related autocmd events
(BufEnter, BufLeave and BufWinEnter in the case of nvim_open_win()).
</pre>
</div>
</content>
</entry>
<entry>
<title>lua: use proper conversion of vim.g values</title>
<updated>2021-05-19T17:29:19+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2020-03-31T19:44:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7fbf3bf18ba76832af7668fd85e4bd817bb378f1'/>
<id>7fbf3bf18ba76832af7668fd85e4bd817bb378f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>floats: z-index</title>
<updated>2021-05-15T11:56:27+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2021-05-01T11:29:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=edb5864a29ec0d1049c4674afb75c8279301446c'/>
<id>edb5864a29ec0d1049c4674afb75c8279301446c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>float: add "solid" border style (#14310)</title>
<updated>2021-04-12T18:51:05+00:00</updated>
<author>
<name>Marco Hinz</name>
<email>mh.codebro@gmail.com</email>
</author>
<published>2021-04-12T18:51:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=4a36ec6da029269a8bac3aa0a25fa43ad4b988b2'/>
<id>4a36ec6da029269a8bac3aa0a25fa43ad4b988b2</id>
<content type='text'>
It looks solid with the default `FloatBorder` group.

If you set the bgcolor of FloatBorder to the same color as for FloatNormal, you
effectively get an "1-cell padding".</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It looks solid with the default `FloatBorder` group.

If you set the bgcolor of FloatBorder to the same color as for FloatNormal, you
effectively get an "1-cell padding".</pre>
</div>
</content>
</entry>
<entry>
<title>Border: allow to enable/disable specific border edges</title>
<updated>2021-04-04T16:32:31+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2021-03-25T23:45:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=a4d3804837e865ca11d2fd0701d23f7eda4da4e4'/>
<id>a4d3804837e865ca11d2fd0701d23f7eda4da4e4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>luaref: free decoration providers</title>
<updated>2021-04-03T14:27:58+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2021-03-27T10:21:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=623fe4dc7ede5d292bca66e0a132975b16a7c825'/>
<id>623fe4dc7ede5d292bca66e0a132975b16a7c825</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>floats: add borders (MS-DOS MODE)</title>
<updated>2021-03-22T22:18:40+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2021-02-22T15:08:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=243820ebd0d9df7664311c8bf79d879bf23eb742'/>
<id>243820ebd0d9df7664311c8bf79d879bf23eb742</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wheel: move non-window code out of window.c</title>
<updated>2021-03-22T14:42:26+00:00</updated>
<author>
<name>Björn Linse</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2021-03-10T20:17:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=e5cfc7f3a0257682410cbb6bb433688bccdfd54f'/>
<id>e5cfc7f3a0257682410cbb6bb433688bccdfd54f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
