<feed xmlns='http://www.w3.org/2005/Atom'>
<title>r-alacritty.git/alacritty_terminal/src/grid, branch rahm2</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>Fix hint `Select` action for hyperlink escape</title>
<updated>2024-08-14T21:41:13+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-03-12T11:15:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=84a9d7446eba3e912ad3b7efd0000ff8ea5845a7'/>
<id>84a9d7446eba3e912ad3b7efd0000ff8ea5845a7</id>
<content type='text'>
This fixes an issue where the `Select` action for hyperlink escape text
would select the entire line, instead of selecting only the hyperlink
itself.

It also changes the way hyperlinks with the same ID are highlighted,
removing the restriction of being on consecutive lines and instead
highlighting all visible cells that correspond to the matching
hyperlink.

Closes #7766.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes an issue where the `Select` action for hyperlink escape text
would select the entire line, instead of selecting only the hyperlink
itself.

It also changes the way hyperlinks with the same ID are highlighted,
removing the restriction of being on consecutive lines and instead
highlighting all visible cells that correspond to the matching
hyperlink.

Closes #7766.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix regional scrolling leaking into history</title>
<updated>2024-02-14T00:59:56+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-02-14T00:59:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=f1853a031d52f6964bbf368d2975767449fc4814'/>
<id>f1853a031d52f6964bbf368d2975767449fc4814</id>
<content type='text'>
This fixes an issue where a scrolling region that does not start at the
top of the screen would still rotate lines into history when scrolling
the content "upwards".</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes an issue where a scrolling region that does not start at the
top of the screen would still rotate lines into history when scrolling
the content "upwards".</pre>
</div>
</content>
</entry>
<entry>
<title>Fix row indexing with inclusive ranges</title>
<updated>2024-02-11T22:53:57+00:00</updated>
<author>
<name>Alexandru Placinta</name>
<email>placintaalexandru1@gmail.com</email>
</author>
<published>2024-02-11T22:53:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=5c4469ffa7727b7a8d82f3f8261613a30591b4de'/>
<id>5c4469ffa7727b7a8d82f3f8261613a30591b4de</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove `alacritty_config` from alacritty_terminal</title>
<updated>2023-11-10T14:16:22+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2023-11-10T14:16:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=5060f8eeb864e8c304fbad9588bdd882db942356'/>
<id>5060f8eeb864e8c304fbad9588bdd882db942356</id>
<content type='text'>
There's no need to force alacritty's user configuration on
other users of the crate, thus provide the options actually used
by alacritty_terminal itself.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There's no need to force alacritty's user configuration on
other users of the crate, thus provide the options actually used
by alacritty_terminal itself.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos</title>
<updated>2023-10-25T23:20:58+00:00</updated>
<author>
<name>Pavel Roskin</name>
<email>1317472+proski@users.noreply.github.com</email>
</author>
<published>2023-10-25T23:20:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=75eef3be9680dbe3300186b06e19eac7f9dfab4b'/>
<id>75eef3be9680dbe3300186b06e19eac7f9dfab4b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the crash when shrinking scrolled terminal</title>
<updated>2023-06-17T21:55:12+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2023-06-17T21:55:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=ee938243586ae5482cf26ff238ddc99e66e1d1c4'/>
<id>ee938243586ae5482cf26ff238ddc99e66e1d1c4</id>
<content type='text'>
display_offset was adjusted unconditionally, thus it could go
beyound the history limits, so clamp it to history like we do
in grow_colums.

Fixes #6862.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
display_offset was adjusted unconditionally, thus it could go
beyound the history limits, so clamp it to history like we do
in grow_colums.

Fixes #6862.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix clippy warnings</title>
<updated>2022-07-25T03:04:27+00:00</updated>
<author>
<name>Chris Copeland</name>
<email>chris@chrisnc.net</email>
</author>
<published>2022-07-25T03:04:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=766a3b5582fa8ee13506c0f23c9c145ff0012078'/>
<id>766a3b5582fa8ee13506c0f23c9c145ff0012078</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace `map().unwrap_or()` with `map_or()`</title>
<updated>2022-07-20T08:24:27+00:00</updated>
<author>
<name>Chris Copeland</name>
<email>chris@chrisnc.net</email>
</author>
<published>2022-07-20T08:24:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=48454c004700e359c3c496871643913fb20de84f'/>
<id>48454c004700e359c3c496871643913fb20de84f</id>
<content type='text'>
Use a `map_or` instead of a `map().unwrap_or()` chain.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use a `map_or` instead of a `map().unwrap_or()` chain.</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for hyperlink escape sequence</title>
<updated>2022-07-10T17:11:28+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2022-07-10T17:11:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=694a52bcffeffdc9e163818c3b2ac5c39e26f1ef'/>
<id>694a52bcffeffdc9e163818c3b2ac5c39e26f1ef</id>
<content type='text'>
This commit adds support for hyperlink escape sequence
`OSC 8 ; params ; URI ST`. The configuration option responsible for
those is `hints.enabled.hyperlinks`.

Fixes #922.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit adds support for hyperlink escape sequence
`OSC 8 ; params ; URI ST`. The configuration option responsible for
those is `hints.enabled.hyperlinks`.

Fixes #922.</pre>
</div>
</content>
</entry>
<entry>
<title>Use `MaybeUninit&lt;usize&gt;` instead of `usize` in `Storage::swap`</title>
<updated>2022-06-15T20:07:32+00:00</updated>
<author>
<name>nils</name>
<email>48135649+Nilstrieb@users.noreply.github.com</email>
</author>
<published>2022-06-15T20:07:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=ff7f74fd29945ec7913c7b99fd743298164c7888'/>
<id>ff7f74fd29945ec7913c7b99fd743298164c7888</id>
<content type='text'>
`Row` contains pointer bytes, which are not valid for `usize`, therefore
`MaybeUninit&lt;usize&gt;` should be used instead to do an untyped copy.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`Row` contains pointer bytes, which are not valid for `usize`, therefore
`MaybeUninit&lt;usize&gt;` should be used instead to do an untyped copy.</pre>
</div>
</content>
</entry>
</feed>
