summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-31Keep viewport in place during resizeRichard Steinmetz
Fixes #4879. Co-authored-by: Christian Duerr <contact@christianduerr.com>
2021-03-30Unify the grid line indexing typesChristian Duerr
Previously Alacritty was using two different ways to reference lines in the terminal. Either a `usize`, or a `Line(usize)`. These indexing systems both served different purposes, but made it difficult to reason about logic involving these systems because of its inconsistency. To resolve this issue, a single new `Line(i32)` type has been introduced. All existing references to lines and points now rely on this definition of a line. The indexing starts at the top of the terminal region with the line 0, which matches the line 1 used by escape sequences. Each line in the history becomes increasingly negative and the bottommost line is equal to the number of visible lines minus one. Having a system which goes into the negatives allows following the escape sequence's indexing system closely, while at the same time making it trivial to implement `Ord` for points. The Alacritty UI crate is the only place which has a different indexing system, since rendering and input puts the zero line at the top of the viewport, rather than the top of the terminal region. All instances which refer to a number of lines/columns instead of just a single Line/Column have also been changed to use a `usize` instead. This way a Line/Column will always refer to a specific place in the grid and no confusion is created by having a count of lines as a possible index into the grid storage.
2021-03-28Fix cursor thickness on wide cellsStokhos
Fixes #4922.
2021-03-15Fix URLs opening in explorer on WindowsSerban Constantin
2021-03-12Fix inconsistent_struct_constructor clippy lintMatthias Krüger
2021-03-06Fix vi mode searchChristian Duerr
This fixes a regression introduced in a954e07 which caused the vi mode cursor to be invisible after starting a search. This was caused by a discrepancy between the search DFA and search active state, since a search is not active after it has been confirmed but the DFAs are still present for highlighting.
2021-03-01Add regex terminal hintsChristian Duerr
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.
2021-03-01Remove incorrect changelog entryChristian Duerr
Since the bug was not present in the 0.7.2 release, there is no need to add a changelog entry for this fix.
2021-02-28Add Windows version requirements to readmer-c-f
Fixes #4846.
2021-02-27Run clippy on MSRVChristian Duerr
Since not all suggested clippy lints by stable clippy are supported on the MSRV of Alacritty, this commit moves the clippy checks to the MSRV. Unfortunately this will mean that our lints might be significantly behind, however it ensures our CI never blocks any code that should be valid. Developers themselves of course can still run the latest clippy to follow the up to date recommendations.
2021-02-26Fix hollow block cursor being drawn for hidden cursorKirill Chibisov
Commit 530de00 refactored large chunk of Alacritty's internal handling of renderable cells, cursors, and such. This patch fixes a regression where a hollow block cursor was drawn for unfocused windows even if the terminal cursor was hidden.
2021-02-26Fix vi cursor after leaving searchChristian Duerr
This resolves an issue which caused the vi cursor position to be incorrect when leaving the search with the vi cursor at the far bottom. Previously this could lead to the vi cursor disappearing completely, when starting a vi mode search that has a match on the last line while the original vi mode cursor was right above it. Fixes #4833.
2021-02-24Add sync update terminfo and docsChristian Duerr
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
2021-02-24Bump base64 to 0.13.0Bastien Orivel
2021-02-24Add support for synchronized updatesChristian Duerr
This implements support for temporarily freezing the terminal grid to prevent rendering of incomplete frames. This can be triggered using the escapes `DCS = 1 s` (start) and `DCS = 2 s` (end). The synchronization is implemented by forwarding all received PTY bytes to a 2 MiB buffer. This should allow updating the entire grid even if it is fairly dense. Unfortunately this also means that another branch is necessary in Alacritty's parser which does have a slight performance impact. In a previous version the freezing was implemented by caching the renderable grid state whenever a synchronized update is started. While this strategy makes it possible to implement this without any performance impact without synchronized updates, a significant performance overhead is introduced whenever a synchronized update is started. Since this can happen thousands of times per frame, it is not a feasible solution. While it would be possible to render at most one synchronized update per frame, it is possible that another synchronized update comes in at any time and stays active for an extended period. As a result the state visible before the long synchronization would be the first received update per frame, not the last, which could lead to the user missing important information during the long freezing interval. Fixes #598.
2021-02-24Match intermediates directly in CSI parserChristian Duerr
There's no point in always trying to access the first field of the intermediates when the only goal is figuring out that there is none. Matching on all intermediates should make it possible to easily match multiple intermediates directly using array matchers.
2021-02-22Fix selection after search without matchChristian Duerr
This resolves an issue where the last match would be selected after leaving non-vi search, even if further changes to the search regex did not result in any matches. Fixes #4831.
2021-02-20Add version 0.7.2 to changelogChristian Duerr
2021-02-19Add Drop implementations for OpenGL structuresMikhail "L117" Nikolenko
2021-02-18Fix search freezing AlacrittyChristian Duerr
This resolves a regression introduced in 530de00 where searching would cause a deadlock when the viewport is at the bottom of the scrollback and a match ends in the last cell. Fixes #4800.
2021-02-18Fix cursor position when scrolled into historyChristian Duerr
This fixes a regression introduced in 530de00, where the terminal cursor would move up when the user scrolled up in the terminal history, rather than staying in place. Fixes #4784.
2021-02-15Limit the maximum DPR on X11 to 10Christian Duerr
Since there have a bunch of problems caused by an excessive DPI reported by XRandr, this limits the maximum DPR on X11 to 10. These issues would commonly cause problems like long startup times or crashes, which are hard to troubleshoot for the user. While a limit of 10 might not eliminate all of these issues, it should still make it possible for Alacritty to start to make troubleshooting simpler. Fixes #3214.
2021-02-13Update dependenciesChristian Duerr
This introduces some duplicate dependencies, though they are necessary to build properly without any warnings. Fixes #4735.
2021-02-04Fix the estimated DPR to 1 on Wayland.Nathan Lilienthal
On Wayland, regardless of the underlying scale factor for an output, The scale factor is 1.0 until we receive the first DPRChanged event. To correctly calculate the window sizes, we must use a DPR of 1.0 as well. Ideally we would know what the DPR of the window we're being opened in is going to be, and avoid the estimation guessing game, but that doesn't seem possible with the current interfaces provided by the window systems.
2021-01-29Fix segmentation fault on shutdown with WaylandChristian Duerr
Fixes #4702.
2021-01-29Remove --dimensions/-d from bash completionsBen Denhartog
2021-01-27Fix damage tracking on WaylandChristian Duerr
Since the Wayland event loop might delay rendering across event loop callback executions, it's necessary to track the global damage globally rather than just within a single loop execution. Fixes #4736.
2021-01-24Move renderable cell transformation to alacrittyChristian Duerr
This refactors a large chunk of the alacritty_terminal API to expose all data necessary for rendering uniformly through the `renderable_content` call. This also no longer transforms the cells for rendering by a GUI but instead just reports the content from a terminal emulation perspective. The transformation into renderable cells is now done inside the alacritty crate. Since the terminal itself only ever needs to know about modified color RGB values, the configuration for colors was moved to the alacritty UI code.
2021-01-21Remove all rustc benchmarksJames McCoy
Co-authored-by: Christian Duerr <contact@christianduerr.com>
2021-01-18Fix dead Alacritty talk link in readmeChristian Duerr
2021-01-17Update shell completionsJason
This fixes the shell completion by removing the flags removed from the CLI in 0768428 and adding the new options flag.
2021-01-15Add IME support for WindowsKhinenw
2021-01-12Fix typo in README.mdChristian Duerr
2021-01-12Add minimum OpenGL version to readmeChristian Duerr
Fixes #4693.
2021-01-11Fix assertion crash on 32-bit systemsr-c-f
Fixes #4687.
2021-01-09Fix readme logo icon URLAlex Touchet
2021-01-08Fix jumping between matches in reverse vi searchChristian Duerr
Fixes #4676.
2021-01-07Remove the GitHub pull request templateChristian Duerr
The template itself never provided much of a benefit and just causes additional work for every single PR that is opened. That makes it easier to just remind people after the PR was created than putting it in the description so contributors always have to remove it.
2021-01-07Fix inefficient search initializationChristian Duerr
The creation of the renderable search iterator was doing a lot of work even when absolutely no search is active at the moment. To resolve this problem, an early return now makes sure that a search is active before going through the trouble of creating an iterator for it.
2021-01-06Update cargo lockfileArthur Woimbée
Fixes #4664.
2021-01-04Bump development version to 0.8.0-devChristian Duerr
This is only an update to the development version and does not represent a stable release.
2021-01-03Fix debug mode crash in vi-less searchChristian Duerr
2021-01-03Update vte to 0.10.0Christian Duerr
2021-01-02Fix deserialization of untagged enumsChristian Duerr
Fixes #4634.
2021-01-01Fix movement between matches in vi-less searchChristian Duerr
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.
2021-01-01Add vi/search line indicatorChristian Duerr
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.
2021-01-01Remove Windows WinPTY backendChristian Duerr
2020-12-31Use ConfigDeserialize for all config enumsChristian Duerr
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.
2020-12-31Add default binding to cancel search on Ctrl+CChristian Duerr
Fixes #4612.
2020-12-31Fix Wayland crash due to fontconfigChristian Duerr
Fixes #4591.