<feed xmlns='http://www.w3.org/2005/Atom'>
<title>r-alacritty.git/extra, branch rahm</title>
<subtitle>My custom-patched version of alacritty.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/'/>
<entry>
<title>Remove undefined logo SVG gradient</title>
<updated>2025-10-20T05:54:11+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2025-10-20T05:54:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=52deae45bc2891f26070684fe3fda94c26dd37c1'/>
<id>52deae45bc2891f26070684fe3fda94c26dd37c1</id>
<content type='text'>
This removes a gradient that apparently doesn't exist, which causes
issues with some SVG rasterizers.

Closes #8706.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This removes a gradient that apparently doesn't exist, which causes
issues with some SVG rasterizers.

Closes #8706.</pre>
</div>
</content>
</entry>
<entry>
<title>Bump development version to 0.17.0-dev</title>
<updated>2025-08-30T04:37:53+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2025-08-30T04:37:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=8e0327b3fb747289f47c327b9fcf8b4fd110f9a1'/>
<id>8e0327b3fb747289f47c327b9fcf8b4fd110f9a1</id>
<content type='text'>
This is only an update to the development version and does not represent
a stable release.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is only an update to the development version and does not represent
a stable release.</pre>
</div>
</content>
</entry>
<entry>
<title>Add global config fallback</title>
<updated>2025-07-07T21:44:55+00:00</updated>
<author>
<name>mBornand</name>
<email>dev.mbornand@systemb.ch</email>
</author>
<published>2025-07-07T21:44:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=f440cd4d6d503f0e2ac619b2e1b129254857955b'/>
<id>f440cd4d6d503f0e2ac619b2e1b129254857955b</id>
<content type='text'>
Co-authored-by: Christian Duerr &lt;contact@christianduerr.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Christian Duerr &lt;contact@christianduerr.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Add yank to EOL vi mode binding</title>
<updated>2025-07-07T19:37:09+00:00</updated>
<author>
<name>prime-run</name>
<email>prime0run@gmail.com</email>
</author>
<published>2025-07-07T19:37:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=fad5360bf0740f6e2f01e22472a9eb161cda7069'/>
<id>fad5360bf0740f6e2f01e22472a9eb161cda7069</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update alacritty-msg(1) for msg get-config entry</title>
<updated>2025-05-30T13:40:19+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2025-05-30T13:40:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=4ad5ba3630ee278c293ce64c777c658cb78a6808'/>
<id>4ad5ba3630ee278c293ce64c777c658cb78a6808</id>
<content type='text'>
Follow up to a63c770be.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Follow up to a63c770be.</pre>
</div>
</content>
</entry>
<entry>
<title>Add IPC config retrieval subcommand</title>
<updated>2025-05-29T18:55:34+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2025-05-29T18:55:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=a63c770befd3aa8be916ef9cfadd7e541f5377f0'/>
<id>a63c770befd3aa8be916ef9cfadd7e541f5377f0</id>
<content type='text'>
This patch adds a new `alacritty msg get-config` subcommand which can
retrieve the current config from any Alacritty window using the IPC
socket.

The command will always print the full configuration file in JSON,
without the ability to filter which values are returned, leaning on
tools like `jq` instead of adding this complexity to Alacritty.

Contrary to deserialization, this relies heavily on the default
serialization implementations to reduce the necessary changes. Key and
Mouse bindings are omitted entirely since their structure is very
complex and they tend to just bloat the message size without having an
obvious usecase.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds a new `alacritty msg get-config` subcommand which can
retrieve the current config from any Alacritty window using the IPC
socket.

The command will always print the full configuration file in JSON,
without the ability to filter which values are returned, leaning on
tools like `jq` instead of adding this complexity to Alacritty.

Contrary to deserialization, this relies heavily on the default
serialization implementations to reduce the necessary changes. Key and
Mouse bindings are omitted entirely since their structure is very
complex and they tend to just bloat the message size without having an
obvious usecase.</pre>
</div>
</content>
</entry>
<entry>
<title>Bump all dependencies</title>
<updated>2025-05-28T05:16:36+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2025-05-26T11:17:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=9eb68039dcb3edf9c87d253532a3ddd6c3cb8c4e'/>
<id>9eb68039dcb3edf9c87d253532a3ddd6c3cb8c4e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add * # { } vi motions</title>
<updated>2025-05-20T23:53:03+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2025-05-20T23:53:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=71feeeeccc422d8092bda56b0d38693290f7585f'/>
<id>71feeeeccc422d8092bda56b0d38693290f7585f</id>
<content type='text'>
This patch adds Vi's semantic search and paragraph motion.

The semantic search uses either the selection or the semantic word under
the cursor and jumps to the next match in the desired direction.

Paragraph motion jumps to just above or below the current paragraph.

Closes #7961.

Co-authored-by: Fletcher Gornick &lt;fletcher@gornick.dev&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds Vi's semantic search and paragraph motion.

The semantic search uses either the selection or the semantic word under
the cursor and jumps to the next match in the desired direction.

Paragraph motion jumps to just above or below the current paragraph.

Closes #7961.

Co-authored-by: Fletcher Gornick &lt;fletcher@gornick.dev&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Add backslash to invalid characters for URL regex</title>
<updated>2025-01-29T01:29:22+00:00</updated>
<author>
<name>Kaylem Brown-Malone</name>
<email>kaylem20201@gmail.com</email>
</author>
<published>2025-01-29T01:29:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=5b189bca684c046a43be7f1c168c3bc37109fc5b'/>
<id>5b189bca684c046a43be7f1c168c3bc37109fc5b</id>
<content type='text'>
This adds the `\` character to the list of characters which will
terminate matches in Alacritty's default hint for URL recognition.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the `\` character to the list of characters which will
terminate matches in Alacritty's default hint for URL recognition.</pre>
</div>
</content>
</entry>
<entry>
<title>Bump development version to 0.16.0-dev</title>
<updated>2025-01-06T05:34:20+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2025-01-06T04:23:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=a26174890e2184fa29b68fde7b72de5a566ad711'/>
<id>a26174890e2184fa29b68fde7b72de5a566ad711</id>
<content type='text'>
This is only an update to the development version and does not represent
a stable release.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is only an update to the development version and does not represent
a stable release.
</pre>
</div>
</content>
</entry>
</feed>
