~roguescholar/alacritty/+git/trunk:v0.7.0

Last commit made on 2021-01-08
Get this branch:
git clone -b v0.7.0 https://git.launchpad.net/~roguescholar/alacritty/+git/trunk

Branch merges

Branch information

Name:
v0.7.0
Repository:
lp:~roguescholar/alacritty/+git/trunk

Recent commits

97fc6c7... by Christian Duerr <email address hidden>

Bump version to 0.7.0

e6c4a2b... by Christian Duerr <email address hidden>

Bump version to 0.7.0-rc2

42b41ce... by Christian Duerr <email address hidden>

Fix debug mode crash in vi-less search

eaabba1... by Christian Duerr <email address hidden>

Update vte to 0.10.0

3d2d0ab... by Christian Duerr <email address hidden>

Bump version to 0.7.0-rc1

56097de... by Christian Duerr <email address hidden>

Fix deserialization of untagged enums

Fixes #4634.

43ea180... by Christian Duerr <email address hidden>

Fix movement between matches in vi-less search

This resolves various bugs related to vi-less search. The primary issue
was that when jumping between matches more than 1000 lines apart, the
search would get stuck and not advance between matches properly due to
the 1000 line synchronous search limit.

Some other issues related to the tracking of the search origin have also
been fixed, improving the viewport positioning while interacting with
the search outside of vi mode. This was done by keeping the search
origin outside of the viewport, which allows for search to start right
at the first character. Previously the search was on top of the first
character which lead to it being excluded from search.

Fixes #4626.

a1e2d6a... by Christian Duerr <email address hidden>

Add vi/search line indicator

This adds a new visual indicator which shows the position in history of
either the display offset during search, or the vi mode cursor.

To make it as unintrusive as possible, the overlay is hidden whenever
the vi mode cursor collides with its position.

Fixes #3984.

8ed72cc... by Christian Duerr <email address hidden>

Remove Windows WinPTY backend

1723e30... by Christian Duerr <email address hidden>

Use ConfigDeserialize for all config enums

This fixes up all of the remaining enums which are used in the
configuration file to make sure they all support fully case insensitive
deserialization.

Fixes #4611.