<feed xmlns='http://www.w3.org/2005/Atom'>
<title>r-alacritty.git/docs, branch experimental</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>Implementation of the XTSMGRAPHICS sequence.</title>
<updated>2021-08-17T13:46:40+00:00</updated>
<author>
<name>Ayose</name>
<email>ayosec@gmail.com</email>
</author>
<published>2021-04-01T23:54:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=14b0d9067e2ccb47fb84459d0d4ec0fb6bcc493a'/>
<id>14b0d9067e2ccb47fb84459d0d4ec0fb6bcc493a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Sixel support</title>
<updated>2021-08-17T13:44:40+00:00</updated>
<author>
<name>Ayose</name>
<email>ayosec@gmail.com</email>
</author>
<published>2021-03-10T20:21:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=0fd3793a963015e8f91021e35dbb2169d15c3211'/>
<id>0fd3793a963015e8f91021e35dbb2169d15c3211</id>
<content type='text'>
Fixes #910
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #910
</pre>
</div>
</content>
</entry>
<entry>
<title>Add vi/mouse hint highlighting support</title>
<updated>2021-04-13T03:24:42+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2021-04-13T03:24:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=96fc9ecc9a62c8a766da745d05fbe60e6c2e1efe'/>
<id>96fc9ecc9a62c8a766da745d05fbe60e6c2e1efe</id>
<content type='text'>
This patch removes the old url highlighting code and replaces it with a
new implementation making use of hints as sources for finding matches in
the terminal.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch removes the old url highlighting code and replaces it with a
new implementation making use of hints as sources for finding matches in
the terminal.</pre>
</div>
</content>
</entry>
<entry>
<title>Add copy/paste/select hint actions</title>
<updated>2021-04-03T23:52:44+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2021-04-03T23:52:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=cbcc12944006603131119b73c2ad72ebccf4562d'/>
<id>cbcc12944006603131119b73c2ad72ebccf4562d</id>
<content type='text'>
This adds some built-in actions for handling hint selections without
having to spawn external applications.

The new actions are `Copy`, `Select` and `Paste`.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds some built-in actions for handling hint selections without
having to spawn external applications.

The new actions are `Copy`, `Select` and `Paste`.</pre>
</div>
</content>
</entry>
<entry>
<title>Add regex terminal hints</title>
<updated>2021-03-01T19:50:39+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2021-03-01T19:50:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=a954e076ca0b1ee9c1f272c2b119c67df3935fd4'/>
<id>a954e076ca0b1ee9c1f272c2b119c67df3935fd4</id>
<content type='text'>
This adds support for hints, which allow opening parts of the visual
buffer with external programs if they match a certain regex.

This is done using a visual overlay triggered on a specified key
binding, which then instructs the user which keys they need to press to
pass the text to the application.

In the future it should be possible to supply some built-in actions for
Copy/Pasting the action and using this to launch text when clicking on
it with the mouse. But the current implementation should already be
useful as-is.

Fixes #2792.
Fixes #2536.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds support for hints, which allow opening parts of the visual
buffer with external programs if they match a certain regex.

This is done using a visual overlay triggered on a specified key
binding, which then instructs the user which keys they need to press to
pass the text to the application.

In the future it should be possible to supply some built-in actions for
Copy/Pasting the action and using this to launch text when clicking on
it with the mouse. But the current implementation should already be
useful as-is.

Fixes #2792.
Fixes #2536.</pre>
</div>
</content>
</entry>
<entry>
<title>Add sync update terminfo and docs</title>
<updated>2021-02-24T18:20:47+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2021-02-24T18:20:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=9999bd53e148c692cc16cd74b6ff4a9f143fe22f'/>
<id>9999bd53e148c692cc16cd74b6ff4a9f143fe22f</id>
<content type='text'>
This adds documentation stating that Alacritty supports the synchronized
update escape, which was implemented in 9575aed.

Since tmux does check terminfo for this feature, the `Sync` capability
has also been added. Tmux's implementation can be found here:

https://github.com/tmux/tmux/blob/f5b7ebc540fe3db5c3a5fe97d01de44551e76058/tty-features.c#L185</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds documentation stating that Alacritty supports the synchronized
update escape, which was implemented in 9575aed.

Since tmux does check terminfo for this feature, the `Sync` capability
has also been added. Tmux's implementation can be found here:

https://github.com/tmux/tmux/blob/f5b7ebc540fe3db5c3a5fe97d01de44551e76058/tty-features.c#L185</pre>
</div>
</content>
</entry>
<entry>
<title>Add blinking cursor support</title>
<updated>2020-11-23T23:11:03+00:00</updated>
<author>
<name>Dettorer</name>
<email>Dettorer@users.noreply.github.com</email>
</author>
<published>2020-11-23T23:11:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=2fd2db4afa232ebd15dbfff88160224badeaa669'/>
<id>2fd2db4afa232ebd15dbfff88160224badeaa669</id>
<content type='text'>
This adds support for blinking the terminal cursor. This can be
controlled either using the configuration file, or using escape
sequences.

The supported control sequences for changing the blinking state are
`CSI Ps SP q` and private mode 12.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds support for blinking the terminal cursor. This can be
controlled either using the configuration file, or using escape
sequences.

The supported control sequences for changing the blinking state are
`CSI Ps SP q` and private mode 12.</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for urgency hints CSI</title>
<updated>2020-10-10T21:24:40+00:00</updated>
<author>
<name>Taylor Blau</name>
<email>ttaylorr@github.com</email>
</author>
<published>2020-10-10T21:24:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=56e0f5bb05cab709f815ef9cce027b379ce964b8'/>
<id>56e0f5bb05cab709f815ef9cce027b379ce964b8</id>
<content type='text'>
Teach Alacritty to stop setting the window as urgent upon a bell by
emulating xterm's 'bellIsUrgent' resource and relevant CSI. When this
resource is enabled (with 'CSI ? 1042 h'), a bell event causes the
window to be marked as urgent. When the resource is disabled (with 'CSI
? 1042 l'), the window is not marked urgent in the event of a bell.

There are two wrinkles worth noting here:

  - The 'TermMode::URGENCY_HINTS' does _not_ affect the terminal's
    configured bell command, since we only want to control whether or
    not the window is marked as urgent, not anything else.

  - In xterm, the 'bellIsUrgent' resource is _disabled_ by default.
    Since bouncing the dock icon has been the default in Alacritty on
    macOS thus far, do not make an effort to change that in this patch.

This allows users to emit "\e[?1042l" and disable bouncing the dock
icon.

Fixes #2950.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Teach Alacritty to stop setting the window as urgent upon a bell by
emulating xterm's 'bellIsUrgent' resource and relevant CSI. When this
resource is enabled (with 'CSI ? 1042 h'), a bell event causes the
window to be marked as urgent. When the resource is disabled (with 'CSI
? 1042 l'), the window is not marked urgent in the event of a bell.

There are two wrinkles worth noting here:

  - The 'TermMode::URGENCY_HINTS' does _not_ affect the terminal's
    configured bell command, since we only want to control whether or
    not the window is marked as urgent, not anything else.

  - In xterm, the 'bellIsUrgent' resource is _disabled_ by default.
    Since bouncing the dock icon has been the default in Alacritty on
    macOS thus far, do not make an effort to change that in this patch.

This allows users to emit "\e[?1042l" and disable bouncing the dock
icon.

Fixes #2950.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for colon separated SGR parameters</title>
<updated>2020-08-07T22:37:23+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-08-07T22:37:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=576252294d09c1f52ec73bde03652349bdf5a529'/>
<id>576252294d09c1f52ec73bde03652349bdf5a529</id>
<content type='text'>
This implements the colon separated form of SGR 38 and 48.

Fixes #1485.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This implements the colon separated form of SGR 38 and 48.

Fixes #1485.</pre>
</div>
</content>
</entry>
<entry>
<title>Document rejected window ops escapes</title>
<updated>2020-07-26T14:51:15+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-07-26T14:51:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=86c978694ad2078a99a90f10cb12424f42a2b271'/>
<id>86c978694ad2078a99a90f10cb12424f42a2b271</id>
<content type='text'>
Fixes #4035.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #4035.</pre>
</div>
</content>
</entry>
</feed>
