<feed xmlns='http://www.w3.org/2005/Atom'>
<title>r-alacritty.git/extra/linux/redhat, 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 alacritty.spec</title>
<updated>2020-12-08T23:20:36+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-12-08T23:20:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=e924c8441da3d0b439da292067961aecc120fd08'/>
<id>e924c8441da3d0b439da292067961aecc120fd08</id>
<content type='text'>
Since Alacritty is now officially packaged by Fedora, it is no longer
necessary to provide this in the official repository.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since Alacritty is now officially packaged by Fedora, it is no longer
necessary to provide this in the official repository.</pre>
</div>
</content>
</entry>
<entry>
<title>Bump development version to 0.7.0-dev</title>
<updated>2020-11-15T13:38:46+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-11-15T13:38:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=2bb2ed817bebf2dfe7d7891cff236f53ddcf7bf9'/>
<id>2bb2ed817bebf2dfe7d7891cff236f53ddcf7bf9</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>Update spec file</title>
<updated>2020-08-15T14:39:11+00:00</updated>
<author>
<name>grumpey</name>
<email>61189565+grumpey@users.noreply.github.com</email>
</author>
<published>2020-08-15T14:39:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=3a7130086a8b5fa95c46a15d5b09a220be57708c'/>
<id>3a7130086a8b5fa95c46a15d5b09a220be57708c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version to 0.6.0-dev</title>
<updated>2020-07-19T20:37:59+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-07-19T20:37:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=3688b5c075a1be6dab8f399935b3001bcbf327b6'/>
<id>3688b5c075a1be6dab8f399935b3001bcbf327b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump minimum supported Rust version to 1.41.0</title>
<updated>2020-04-23T19:04:13+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-04-23T01:43:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=738c8de23246c1e8be705163d17ce8a4288cef3d'/>
<id>738c8de23246c1e8be705163d17ce8a4288cef3d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add modal keyboard motion mode</title>
<updated>2020-03-18T02:35:08+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-03-18T02:35:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=1a8cd172e520e493bacc9c6a2ae6f80de086eaa3'/>
<id>1a8cd172e520e493bacc9c6a2ae6f80de086eaa3</id>
<content type='text'>
This implements a basic mode for navigating inside of Alacritty's
history with keyboard bindings. They're bound by default to vi's motion
shortcuts but are fully customizable. Since this relies on key bindings
only single key bindings are currently supported (so no `ge`, or
repetition).

Other than navigating the history and moving the viewport, this mode
should enable making use of all available selection modes to copy
content to the clipboard and launch URLs below the cursor.

This also changes the rendering of the block cursor at the side of
selections, since previously it could be inverted to be completely
invisible. Since that would have caused some troubles with this keyboard
selection mode, the block cursor now is no longer inverted when it is at
the edges of a selection.

Fixes #262.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This implements a basic mode for navigating inside of Alacritty's
history with keyboard bindings. They're bound by default to vi's motion
shortcuts but are fully customizable. Since this relies on key bindings
only single key bindings are currently supported (so no `ge`, or
repetition).

Other than navigating the history and moving the viewport, this mode
should enable making use of all available selection modes to copy
content to the clipboard and launch URLs below the cursor.

This also changes the rendering of the block cursor at the side of
selections, since previously it could be inverted to be completely
invisible. Since that would have caused some troubles with this keyboard
selection mode, the block cursor now is no longer inverted when it is at
the edges of a selection.

Fixes #262.</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version to 0.5.0-dev</title>
<updated>2020-03-14T16:39:02+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-03-14T16:39:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=6801c4a4fd40d380ae7878f6f791473f73a02a1e'/>
<id>6801c4a4fd40d380ae7878f6f791473f73a02a1e</id>
<content type='text'>
This is a bump of 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 a bump of the development version and does not represent a
stable release.</pre>
</div>
</content>
</entry>
<entry>
<title>Capitalized the .desktop Filename (#3425)</title>
<updated>2020-03-13T19:17:19+00:00</updated>
<author>
<name>Nathan Lilienthal</name>
<email>nathan@nixpulvis.com</email>
</author>
<published>2020-03-13T19:17:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=d20051b5e5a8ee3c8dcd75a87d375ac7611a9d2d'/>
<id>d20051b5e5a8ee3c8dcd75a87d375ac7611a9d2d</id>
<content type='text'>
Follow free desktop file naming conventions.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Follow free desktop file naming conventions.</pre>
</div>
</content>
</entry>
<entry>
<title>Bump minimum Rust version to 1.37.0</title>
<updated>2020-01-19T15:27:24+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-01-19T15:27:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=fb1d3bef3f45e64a06e5db16f5b21cfa2aacb4df'/>
<id>fb1d3bef3f45e64a06e5db16f5b21cfa2aacb4df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move Alacritty to organization</title>
<updated>2020-01-11T01:23:13+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2020-01-11T01:23:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=c2c8d6bf371433a3158fda769829714c5b99f62a'/>
<id>c2c8d6bf371433a3158fda769829714c5b99f62a</id>
<content type='text'>
This fixes various outdated links pointing to the old jwilm/alacritty
repository.

Since `copypasta` now has its own github repository at
https://github.com/alacritty/copypasta, the sources have been removed
from Alacritty.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes various outdated links pointing to the old jwilm/alacritty
repository.

Since `copypasta` now has its own github repository at
https://github.com/alacritty/copypasta, the sources have been removed
from Alacritty.</pre>
</div>
</content>
</entry>
</feed>
