<feed xmlns='http://www.w3.org/2005/Atom'>
<title>r-alacritty.git/alacritty/src/input, 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>Have alacritty pass through X1Mouse and X2Mouse to Vim. (Forward and Backward buttons)</title>
<updated>2025-02-06T19:20:33+00:00</updated>
<author>
<name>Josh Rahm</name>
<email>rahm@google.com</email>
</author>
<published>2025-02-06T19:20:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=e87f73cf3c8865d97263d578d8b108b1fe3ef4fb'/>
<id>e87f73cf3c8865d97263d578d8b108b1fe3ef4fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add option to drain PTY on shutdown</title>
<updated>2025-01-16T15:04:21+00:00</updated>
<author>
<name>Andrew Borg (Kashin)</name>
<email>1192958+aborg-dev@users.noreply.github.com</email>
</author>
<published>2025-01-16T15:04:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=5e78d20c709cb1ab8d44ca7a8702cc26d779227c'/>
<id>5e78d20c709cb1ab8d44ca7a8702cc26d779227c</id>
<content type='text'>
This patch removes the `hold` option on `alacritty_terminal` in favor of
a `drain_on_exit` option, which will drain the PTY before shutdown. The
hold logic is instead handled in `alacritty`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch removes the `hold` option on `alacritty_terminal` in favor of
a `drain_on_exit` option, which will drain the PTY before shutdown. The
hold logic is instead handled in `alacritty`.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix report of Enter/Tab/Backspace in kitty keyboard</title>
<updated>2025-01-04T05:40:17+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2025-01-04T05:40:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=7bda13b8aa59ed7bc3efe6d5b0bdb09b8e75f8a3'/>
<id>7bda13b8aa59ed7bc3efe6d5b0bdb09b8e75f8a3</id>
<content type='text'>
The behavior changed and now it actually makes sense.

Fix #8385.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The behavior changed and now it actually makes sense.

Fix #8385.</pre>
</div>
</content>
</entry>
<entry>
<title>Don't switch semantic/line selection when control is pressed</title>
<updated>2024-12-28T21:47:47+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-12-28T21:47:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=7bd3b8991ce290e981d39d608a91bdc174b26f5d'/>
<id>7bd3b8991ce290e981d39d608a91bdc174b26f5d</id>
<content type='text'>
Changing block selection to regular semantic one doesn't feel intuitive,
thus don't switch to it when user has control pressed.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changing block selection to regular semantic one doesn't feel intuitive,
thus don't switch to it when user has control pressed.</pre>
</div>
</content>
</entry>
<entry>
<title>Always explicitly emit `1` without modifiers in kitty encoding</title>
<updated>2024-12-20T00:51:36+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-12-20T00:51:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=8591a9421d0a100af16cd50b4610bc55506fb14f'/>
<id>8591a9421d0a100af16cd50b4610bc55506fb14f</id>
<content type='text'>
While this doesn't change much with how parsers are implemented, it
improves consistency with how key release is handled.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While this doesn't change much with how parsers are implemented, it
improves consistency with how key release is handled.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix racing condition in hint triggering</title>
<updated>2024-11-02T20:05:51+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-11-02T20:05:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=fd745a9f4cb3ba81623167c9d1117747353db33a'/>
<id>fd745a9f4cb3ba81623167c9d1117747353db33a</id>
<content type='text'>
This fixes an issue with hints where it was possible that the terminal
content of highlighted hints changed between the highlighted hint update
and the activation of the hint.

This patch always validates the hint's text content against the hint
itself to ensure that the content is still valid for the original hint
which triggered the highlight.

Closes #8277.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes an issue with hints where it was possible that the terminal
content of highlighted hints changed between the highlighted hint update
and the activation of the hint.

This patch always validates the hint's text content against the hint
itself to ensure that the content is still valid for the original hint
which triggered the highlight.

Closes #8277.</pre>
</div>
</content>
</entry>
<entry>
<title>Add IME support to inline search</title>
<updated>2024-10-15T14:06:59+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-10-15T14:06:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=6ba69f8dd469e1a9aff0b48b3ae10ce4510ca1e3'/>
<id>6ba69f8dd469e1a9aff0b48b3ae10ce4510ca1e3</id>
<content type='text'>
This changes the behavior of inline search from only accepting direct
key inputs, to also accepting IME and paste. The additional characters
are still being discarded, matching the existing behavior.

This also fixes an issue where inline search wouldn't work for
characters requiring modifiers, since the modifier press was interpreted
as the search target instead.

Closes #8208.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes the behavior of inline search from only accepting direct
key inputs, to also accepting IME and paste. The additional characters
are still being discarded, matching the existing behavior.

This also fixes an issue where inline search wouldn't work for
characters requiring modifiers, since the modifier press was interpreted
as the search target instead.

Closes #8208.</pre>
</div>
</content>
</entry>
<entry>
<title>Unify string formatting</title>
<updated>2024-07-24T01:37:35+00:00</updated>
<author>
<name>Hamir Mahal</name>
<email>hamirmahal@gmail.com</email>
</author>
<published>2024-07-24T01:37:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=d021a7b6f871f4078073848cf8744881561eb254'/>
<id>d021a7b6f871f4078073848cf8744881561eb254</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump dependencies</title>
<updated>2024-07-17T08:02:31+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-07-17T01:47:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=f5e02862ffdcc579264ce85f11aed96732b257ff'/>
<id>f5e02862ffdcc579264ce85f11aed96732b257ff</id>
<content type='text'>
Update winit and clap to latest versions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update winit and clap to latest versions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix spelling errors</title>
<updated>2024-05-24T17:32:11+00:00</updated>
<author>
<name>Josh Soref</name>
<email>2119212+jsoref@users.noreply.github.com</email>
</author>
<published>2024-05-24T17:32:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=cacdb5bb3b72bad2c729227537979d95af75978f'/>
<id>cacdb5bb3b72bad2c729227537979d95af75978f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
