<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/test, branch 20230125_mix</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>Merge branch 'aucmd_textputpost' into 20230125_mix</title>
<updated>2023-02-02T19:02:58+00:00</updated>
<author>
<name>Josh Rahm</name>
<email>joshuarahm@gmail.com</email>
</author>
<published>2023-02-02T19:02:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=b255fa570d8b041e4c81e3454d51e06100c2fa4f'/>
<id>b255fa570d8b041e4c81e3454d51e06100c2fa4f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #21331 from LiadOz/LiadOz/prompt-insert-extmark</title>
<updated>2023-02-02T14:23:09+00:00</updated>
<author>
<name>bfredl</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2023-02-02T14:23:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=cbf9199d65325c1167d7eeb02a34c85d243e781c'/>
<id>cbf9199d65325c1167d7eeb02a34c85d243e781c</id>
<content type='text'>
fix(extmarks): adjust extmarks when inserting prompt prefix</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix(extmarks): adjust extmarks when inserting prompt prefix</pre>
</div>
</content>
</entry>
<entry>
<title>fix(column): estimate 'statuscolumn' width appropriately</title>
<updated>2023-02-02T09:35:51+00:00</updated>
<author>
<name>luukvbaal</name>
<email>31730729+luukvbaal@users.noreply.github.com</email>
</author>
<published>2023-02-02T09:35:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=64fa75a86a9e2e301e884e21911d71688fc8f122'/>
<id>64fa75a86a9e2e301e884e21911d71688fc8f122</id>
<content type='text'>
Problem:    The 'statuscolumn' width is being estimated without the
            proper context. In particular, this resulted in the fact
            that a custom fold column could be included in the estimated
            `number_width()`, and doubly added when actually drawing the
            statuscolumn due to `win_col_off()` also adding the
            `'foldcolumn'` width. Resulting in a status column that is
            `'foldcolumn'` cells wider than necessary.
Solution:   Estimate 'statuscolumn' width in `get_statuscol_str()` when
            a buffer's line count has changed.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    The 'statuscolumn' width is being estimated without the
            proper context. In particular, this resulted in the fact
            that a custom fold column could be included in the estimated
            `number_width()`, and doubly added when actually drawing the
            statuscolumn due to `win_col_off()` also adding the
            `'foldcolumn'` width. Resulting in a status column that is
            `'foldcolumn'` cells wider than necessary.
Solution:   Estimate 'statuscolumn' width in `get_statuscol_str()` when
            a buffer's line count has changed.</pre>
</div>
</content>
</entry>
<entry>
<title>fix(exit): skip unnecessary steps in TUI preserve_exit() (#21897)</title>
<updated>2023-02-02T02:05:03+00:00</updated>
<author>
<name>zeertzjq</name>
<email>zeertzjq@outlook.com</email>
</author>
<published>2023-02-02T02:05:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=2c5906b55bb6092121f4d3b032d5449da7675c2b'/>
<id>2c5906b55bb6092121f4d3b032d5449da7675c2b</id>
<content type='text'>
This prevents the TUI from doing unexpected things when receiving a
deadly signal or running out of memory.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This prevents the TUI from doing unexpected things when receiving a
deadly signal or running out of memory.</pre>
</div>
</content>
</entry>
<entry>
<title>fix(man): use italics for `&lt;bs&gt;_` (#22086)</title>
<updated>2023-02-01T17:21:42+00:00</updated>
<author>
<name>Lewis Russell</name>
<email>lewis6991@gmail.com</email>
</author>
<published>2023-02-01T17:21:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=9ce44a750c2a65082962effe6ce4d185b7698d73'/>
<id>9ce44a750c2a65082962effe6ce4d185b7698d73</id>
<content type='text'>
fix(man): use italics for &lt;bs&gt;_

Even though underline is strictly what this should be. &lt;bs&gt;_ was used by
nroff to indicate italics which wasn't possible on old typewriters so
underline was used. Modern terminals now support italics so lets use
that now.

See:
- https://unix.stackexchange.com/questions/274658/purpose-of-ascii-text-with-overstriking-file-format/274795#274795
- https://cmd.inp.nsk.su/old/cmd2/manuals/unix/UNIX_Unleashed/ch08.htm</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix(man): use italics for &lt;bs&gt;_

Even though underline is strictly what this should be. &lt;bs&gt;_ was used by
nroff to indicate italics which wasn't possible on old typewriters so
underline was used. Modern terminals now support italics so lets use
that now.

See:
- https://unix.stackexchange.com/questions/274658/purpose-of-ascii-text-with-overstriking-file-format/274795#274795
- https://cmd.inp.nsk.su/old/cmd2/manuals/unix/UNIX_Unleashed/ch08.htm</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #17537 from bfredl/neolua</title>
<updated>2023-01-31T18:58:33+00:00</updated>
<author>
<name>bfredl</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2023-01-31T18:58:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=8376486e8ff1722a0760443fc4a402bdea632dda'/>
<id>8376486e8ff1722a0760443fc4a402bdea632dda</id>
<content type='text'>
refactor(tests): run unittests using main nvim binary - delete separate nvim-test build</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
refactor(tests): run unittests using main nvim binary - delete separate nvim-test build</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(tests): run unittests using main nvim binary in interpreter mode</title>
<updated>2023-01-31T18:28:26+00:00</updated>
<author>
<name>bfredl</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2023-01-30T19:36:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=13aa23b62af4df3e7f10687b76fe8c04efa2a598'/>
<id>13aa23b62af4df3e7f10687b76fe8c04efa2a598</id>
<content type='text'>
This allows us to get rid of the separate "nvim-test" target
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows us to get rid of the separate "nvim-test" target
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(test): fix issues detected by running unittests in ASAN/UBSAN</title>
<updated>2023-01-31T17:28:29+00:00</updated>
<author>
<name>bfredl</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2023-01-30T13:46:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=42999a8d645ccf880222f0192671b8ce01bde361'/>
<id>42999a8d645ccf880222f0192671b8ce01bde361</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #22005 from clason/sanitize-lang</title>
<updated>2023-01-31T16:28:32+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-01-31T16:28:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=8b11cf5092e0dfe45ee0f9cf0b72ce4ddeb8740c'/>
<id>8b11cf5092e0dfe45ee0f9cf0b72ce4ddeb8740c</id>
<content type='text'>
fix(treesitter): validate language name</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix(treesitter): validate language name</pre>
</div>
</content>
</entry>
<entry>
<title>fix(tests): use -l mode for lsp tests</title>
<updated>2023-01-31T12:15:23+00:00</updated>
<author>
<name>bfredl</name>
<email>bjorn.linse@gmail.com</email>
</author>
<published>2023-01-31T12:08:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=50b256d51528fef068e07871e18aa3e324b7e2d8'/>
<id>50b256d51528fef068e07871e18aa3e324b7e2d8</id>
<content type='text'>
This fixes "fake server" from leaking memory, which makes ASAN very
upset, except on current ASAN CI for some reason.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes "fake server" from leaking memory, which makes ASAN very
upset, except on current ASAN CI for some reason.
</pre>
</div>
</content>
</entry>
</feed>
