<feed xmlns='http://www.w3.org/2005/Atom'>
<title>r-alacritty.git/extra/man, branch old-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>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>Add `window.level` config option</title>
<updated>2024-11-23T19:20:56+00:00</updated>
<author>
<name>David Horner</name>
<email>sites@tecdev.com</email>
</author>
<published>2024-11-23T19:20:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=6e9a19fd8317e9d0d6a33aa535a1f2ea56844626'/>
<id>6e9a19fd8317e9d0d6a33aa535a1f2ea56844626</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix shell manpage example</title>
<updated>2024-10-31T16:36:27+00:00</updated>
<author>
<name>Chris Kaiser</name>
<email>102256828+jchriskaiser@users.noreply.github.com</email>
</author>
<published>2024-10-31T16:36:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=d552c6b251d199b4913754dd25fca330f87651fd'/>
<id>d552c6b251d199b4913754dd25fca330f87651fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add headless mode</title>
<updated>2024-10-15T18:32:50+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-10-15T18:32:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=2a2db5b6fd23adea88906b8c2ee81512cd44cd53'/>
<id>2a2db5b6fd23adea88906b8c2ee81512cd44cd53</id>
<content type='text'>
This patch adds a daemon mode to Alacritty which allows starting the
Alacritty process without spawning an initial window.

While this does not provide any significant advantage over the existing
behavior of always spawning a window, it does integrate nicer with some
setups and is a pretty trivial addition.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds a daemon mode to Alacritty which allows starting the
Alacritty process without spawning an initial window.

While this does not provide any significant advantage over the existing
behavior of always spawning a window, it does integrate nicer with some
setups and is a pretty trivial addition.</pre>
</div>
</content>
</entry>
<entry>
<title>Change ctrl+shift+u to ctrl+shift+o</title>
<updated>2024-10-10T18:01:44+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-10-10T18:01:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=c032c89f1c457c3cf97dcda3f8367115fa5f66ea'/>
<id>c032c89f1c457c3cf97dcda3f8367115fa5f66ea</id>
<content type='text'>
Avoid collisions with IMEs by using ctrl+shift+o. ctrl+shift+u is bound
to open unicode input in a lot of IMEs by default meaning that users
won't ever see the url hints UI.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Avoid collisions with IMEs by using ctrl+shift+o. ctrl+shift+u is bound
to open unicode input in a lot of IMEs by default meaning that users
won't ever see the url hints UI.</pre>
</div>
</content>
</entry>
<entry>
<title>Move root config fields to `[general]` section</title>
<updated>2024-10-02T19:38:07+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-09-21T22:10:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=51089cfeed1adfd741d8dcbe6c9cb9376f88a576'/>
<id>51089cfeed1adfd741d8dcbe6c9cb9376f88a576</id>
<content type='text'>
Some users struggle with TOML, since root options must always be at the
top of the file, since they're otherwise associated with the last table.

To avoid misunderstandings, all root-level fields have been removed. A
new `general` section was added to allow housing configuration options
that do not fit into any more specific groups.

Closes #7906.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some users struggle with TOML, since root options must always be at the
top of the file, since they're otherwise associated with the last table.

To avoid misunderstandings, all root-level fields have been removed. A
new `general` section was added to allow housing configuration options
that do not fit into any more specific groups.

Closes #7906.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make alacritty(1) config paths resemble alacritty(5)</title>
<updated>2024-09-10T14:13:37+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-09-10T14:13:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=8dfd2e56ad7aaeaf09aaf9f680420cc5988155b0'/>
<id>8dfd2e56ad7aaeaf09aaf9f680420cc5988155b0</id>
<content type='text'>
This also fixes the escaping in alacritty(5) page.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also fixes the escaping in alacritty(5) page.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix description in alacritty-bindings(5)</title>
<updated>2024-08-11T14:56:52+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-08-11T14:56:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=102b89a8d9ee6543f15f248c15383da7a4684c42'/>
<id>102b89a8d9ee6543f15f248c15383da7a4684c42</id>
<content type='text'>
Man pages use the man page name as the first word in description. This
also aligns with other man pages we have.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Man pages use the man page name as the first word in description. This
also aligns with other man pages we have.</pre>
</div>
</content>
</entry>
<entry>
<title>Document options which are not working everywhere yet</title>
<updated>2024-07-18T18:52:18+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-07-18T18:52:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=c3075f189c2d8148c70a82f176565ea8e420b49f'/>
<id>c3075f189c2d8148c70a82f176565ea8e420b49f</id>
<content type='text'>
This includes `window.position` and `window.resize_increments`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This includes `window.position` and `window.resize_increments`.</pre>
</div>
</content>
</entry>
<entry>
<title>Support relative imports in config file</title>
<updated>2024-07-02T19:14:25+00:00</updated>
<author>
<name>Joshua Cao</name>
<email>cao.joshua@yahoo.com</email>
</author>
<published>2024-07-02T19:14:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=5e6b92db85b3ea7ffd06a7a5ae0d2d62ad5946a6'/>
<id>5e6b92db85b3ea7ffd06a7a5ae0d2d62ad5946a6</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>
</feed>
