summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-10-22Fix cursor inversion logicChristian Duerr
The existing cursor inversion logic was causing more problems than it solved, without solving the problem of invisible cursor when inverting a cell with matching foreground and background colors. This patch reworks this logic and only inverts the cursor when the foreground and background colors of the cursor are similar and the cursor colors aren't set to fixed RGB values. Fixes #4564. Fixes #5550.
2021-10-11Update rustfmt configurationChristian Duerr
In this change I went through all current rustfmt configuration options and expanded our existing configuration with overrides whenever deemed appropriate. The `normalize_doc_attributes` option is still unstable, but seems to work without any issues. Even when passing macros like `include_str!` that is recognized properly and not normalized. So while this wasn't an issue anywhere in the code, it should make sure it never will be. When it comes to imports there are two new major additions. The `imports_granularity` and `group_imports` options. Both mostly just incorporate unwritten rules that have existed in Alacritty for a long time. Unfortunately since `alacritty_terminal` imports in `alacritty` are supposed to be separate blocks, the `group_imports` option cannot be used.
2021-10-03Fix typo in makefileAlexis Hildebrandt
2021-09-28Fix incorrect vi mode search originChristian Duerr
Fixes #5460.
2021-09-27Fix vi indicator obstructing vi mode cursorChristian Duerr
Fixes #5504.
2021-09-19Handle PTY EIO error for Rust 1.55+Ilya Bobyr
`ErrorKind::Other` no longer includes `EIO` since Rust 1.55: https://blog.rust-lang.org/2021/09/09/Rust-1.55.0.html#stdioerrorkind-variants-updated It was not precise enough from the very beginning, as the comment says that only EIO should be hidden, while the code was any uncategorised errors.
2021-09-17Add python to Archlinux install instructionsJonathan V
2021-09-15Remove unused struct fieldsChristian Duerr
While it might be nice to have the full `Passwd` struct around should anything ever change in the future, there's really no reason why Alacritty would need this information. So just removing things for now makes more sense than adding `#[allow(unused)]`.
2021-09-14Add libxkbcommon-dev to openSUSE dependenciesChristian Duerr
2021-08-27Remove custom merge strategy for changelogChristian Duerr
While the custom merge strategy can make things simpler in some scenarios, it has repeatedly shown to silently introduce errors that have to be manually spotted and corrected after the fact. It's much more reliable and efficient to always manually oversee potential conflicts, rather than letting them slip through half of the time and having to contribute follow-up patches.
2021-08-27Watch non-canonical path for config symlinksNaïm Favier
To make it possible to detect the replacement of the configuration file when it is a symlink, the symlinks path has to be observed in addition to the canonicalized path. That way changes to either file will trigger a live config reload. Multiple layers of symlinks would still not get detected when any symlink other than the configuration file itself is replaced, but this patch should cover most realistic usage scenarios.
2021-08-26Fix alacitty_terminal build on windowsAndrew Chin
The "consoleapi" feature in the winapi crate is required when using things from the `winapi::um::consoleapi` module.
2021-08-23Fix 'background_opacity' deprecationChristian Duerr
During the deprecation of the 'background_opacity' field, it was incorrectly renamed to 'window_opacity'. This changes that back to ensure the old field still works and a warning is emitted accordingly. See the original regression here: https://github.com/alacritty/alacritty/commit/c24d7dfd0d2d8849f0398d7cb1a65d6562ee7a0d#diff-f92f0b1ad70a7b75b7266f3c9e569025e023d186814aa88c2b690800850ccb78L72-R73 Fixes #5437.
2021-08-18Migrate CLI config to structoptChristian Duerr
While structopt also uses clap under the hood, the configuration through annotations allows for significantly more maintainable and concise CLI definition. This will also make it far easier to have platform-specific options, which is problematic with clap since no individual methods can be removed from its builder. The change in Alacritty's CLI has been kept to a minimum with the only significant changes being the `--version` flag listed before the `-v` flag and the authors all on the same line.
2021-08-17Add macOS ARM builds to CIChristian Duerr
2021-08-16Add option to apply opacity to all background colorsKirill Chibisov
In some cases it could be desired to apply 'background_opacity' to all background colors instead of just 'colors.primary.background', thus adding an 'colors.opaque_background_colors' option to control that. Fixes #741.
2021-08-15Add python3 dep to freebsd install instructionsyancyribbens
2021-08-04Log dependency warnings/errors at trace levelSteven Bosnick
Fixes #5387.
2021-08-01Fix fullwidth character crash on resizeChristian Duerr
Fixes #5383.
2021-08-01Update crossfont to 0.3.1Christian Duerr
2021-07-29Add ExpandSelection mouse binding actionJason Heard
Fixes #4132.
2021-07-29Add note about dependencies to Cargo InstallationVincent Olivert-Riera
2021-07-27Downgrade glutin versionChristian Duerr
The glutin version bump to 0.27.0 has introduced a lot of new issues and crashes to Alacritty due to the connected winit update. Since it doesn't solve any major issues downgrading glutin temporarily should improve Alacritty's reliability.
2021-07-24Add changelog entry for 7879552Christian Duerr
2021-07-22Fix insert mode crash with fullwidth charactersChristian Duerr
This patch resolves an issue with fullwidth characters, where it is possible to crash Alacritty by moving a fullwidth character off the side of the terminal using insert mode. This issue occurs since trying to overwrite a fullwidth spacer in the first column leads to an underflow when trying to access its fullwidth character cell. During insert mode before the character is inserted into the cell, the existing content is rotated to the right, which leads to the fullwidth spacer being in the first column even though it is only there temporarily to be immediately overwritten. While it would be possible to clear the flags after rotation, this would still leave the opportunity for other ways to trigger this issue and cause a separate crash. So instead the column is checked while overwriting the spacer to make sure the fullwidth character isn't accessed if it would lead to an underflow. The following is a minimal example for reproducing this crash: ```sh printf "漢" printf "\e[4h" printf "\r" for _ in $(seq 3 $(tput cols)); do printf "x" done printf "\r_" ``` Fixes #5337.
2021-07-18Invert windows asset symlinksChristian Duerr
This commit swaps source and target for the windows asset symlinks, since creation of a symlink is not possible on Windows systems without administrator permissions. By making the files inside the source folder the source instead of the destination, a build is still possible without requiring elevated privileges. Fixes #5338.
2021-07-18Fix Linux release CI buildChristian Duerr
2021-07-18Bump development version to 0.10.0-devChristian Duerr
This is only an update to the development version and does not represent a stable release.
2021-07-18Remove optional releases section from appdata.xmlChristian Duerr
This removes the releases section to make the creation of new releases a bit simpler.
2021-07-17Fix vi cursor tracking during scrollingChristian Duerr
This resolves an issue with the vi mode cursor where it would not keep track of the content while scrolled up in history but instead slowly leave the viewport due to its absolute positioning. While an alternative solution would have been to always keep the vi mode cursor in the same spot on the viewport, keeping track of the content is not only more easy to implement but it also makes for a nicer connection between the vi mode cursor and the content below it. Fixes #5339.
2021-07-16Fix copying interrupted tab charactersChristian Duerr
Fixes #5084.
2021-07-14Update dependenciesChristian Duerr
2021-07-14Symlink windows assets for cargo installChristian Duerr
Fixes #5114.
2021-07-12Add libxkbcommon to INSTALL.md dependenciesChristian Duerr
Fixes #5320.
2021-07-12Fix search regressionsChristian Duerr
Fixes #5315.
2021-07-10Update mio-anonymous-pipes to 0.2.0David Hewitt
Fixes #5266.
2021-07-08Fix PTY performance regressionsChristian Duerr
The patch 9e7655e introduced some changes which improved rendering with very dense grids, but the automatic benchmarks indicated a slight performance difference in the `dense_cells` benchmark. Caching the terminal lock between iterations rather than always calling `try_lock` resolves that issue. While breaking early in the `WouldBlock` case with `unprocessed != 0` does also help resolve these issues, it shows some more significant fluctuations. Combining both fixes does not help. Additionally on Windows receiving `Ok(0)` from the PTY will also occur instead of a `WouldBlock` error, so handling that fixes freezing on Windows. Fixes #5305.
2021-07-08Fix Void Linux link in the install guidePaul Barker
2021-07-07Fix leaving vi mode with active selectiona5ob7r
This bug comes from 530de00049c2afcc562d36ccdb3e6afa2fe396a5. The vi cursor movement changes text selection range when it is on vi mode. On the other hand the cursor movement doesn't change the range when it isn't on vi mode. So preserve text selection range by toggling vi mode early.
2021-07-04Fix vi cursor motion with ScrollPage* actionsa5ob7r
This fixes the regression that vi cursor doesn't move to appropriate position to emulate vi/vim after invokes `ScrollPage*`. To emulate vi/vim the cursor should move up/down some lines if the viewport on topmost scrollback buffer or on bottommost one when invokes `ScrollPage*` action. Otherwise the cursor should look like no movement relatively on viewport.
2021-07-04Fix crash when resizing during vi modeChristian Duerr
Our resize clamping logic for the vi mode cursor did not correctly clamp to the viewport after the indexing change. Now it is enforced that the vi mode cursor cannot leave the visible area after a font or viewport size change.
2021-07-03Add buffer for PTY reads during terminal lockChristian Duerr
Before this patch, Alacritty's PTY reader would always try to read the PTY into a buffer and then wait for the acquisition of the terminal lock to process this data. Since locking for the terminal could take some time, the PTY could fill up with the thread idling while doing so. As a solution, this patch keeps reading to a buffer while the terminal is locked in the renderer and starts processing all buffered data as soon as the lock is released. This has halfed the runtime of a simple `cat` benchmark from ~9 to ~4 seconds when the font size is set to `1`. Running this patch with "normal" grid densities does not appear to make any significant performance differences in either direction. One possible memory optimization for the future would be to use this buffer for synchronized updates, but since this currently uses a dynamic buffer and would be a bit more cluttered, it has not been implemented in this patch.
2021-07-03Fix clippy warningsChristian Duerr
2021-06-28Remove .agignorea5ob7r
This file is a configuration file for The Silver Searcher which is useful but not related to Alacritty and the development directly. Also this file has no effect in practice because the ignored target no longer exists in current repository. So nobody is affects by this removal.
2021-06-27Add libxkbcommon-dev to debian INSTALL.mdTim Hourigan
2021-06-26Remove blink capability from terminfoNick Black
2021-06-20Fix regex search regressiona5ob7r
2021-06-19Add modes to regex hint bindingsJoshua Ortiz
Fixes #5154.
2021-06-19Switch official IRC channel to Libera.ChatChristian Duerr
2021-06-16Fix ScrollHalfPageUp vi cursor motion regressiona5ob7r
This regression was introduced in 3bd5ac2. Co-authored-by: Christian Duerr <contact@christianduerr.com>