aboutsummaryrefslogtreecommitdiff
path: root/alacritty
Commit message (Collapse)AuthorAge
...
| * Support relative imports in config fileJoshua Cao2024-07-02
| | | | | | Co-authored-by: Christian Duerr <contact@christianduerr.com>
| * Bump winit to 0.30.3Kirill Chibisov2024-06-23
| | | | | | Fixes #8046.
| * Bump winit to 0.30.2Kirill Chibisov2024-06-16
| | | | | | Fixes #7969.
| * Bump glutin to 0.32.0Kirill Chibisov2024-06-08
| |
| * Fix spelling errorsJosh Soref2024-05-24
| |
| * Fix Kitty protocol reporting shifted keycodesjadedpasta2024-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The [kitty keyboard protocol][1] explicitly requires that the *un-shifted* version of the pressed key is used to report the primary code point in `CSI code-point;modifiers u` sequences. > Note that the codepoint used is always the lower-case (or more > technically, un-shifted) version of the key. If the user presses, for > example, ctrl+shift+a the escape code would be CSI 97;modifiers u. It > must not be CSI 65; modifiers u. Alacritty's current behavior is to report the shifted version when shift is pressed, and the un-shifted version otherwise: ```console # Note that you'll have to kill Alacritty after running this to get # control back! $ echo -ne '\x1b[>1u'; cat ^[[97;5u^[[65;6u ``` The above was generated by pressing `CTRL`+`a` followed by `CTRL`+`SHIFT`+`a` after running the command. Here `97` and `65` are the codepoints for `a` and `A` respectively. This change makes Alacritty match the protocol (and Kitty's) behavior. With this change applied, `97` is reported for both `CTRL`+`a` and `CTRL`+`SHIFT`+`a`. [1]: https://sw.kovidgoyal.net/kitty/keyboard-protocol/#key-codes
| * Fix error with missing importsChristian Duerr2024-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a regression, likely introduced in 5d173f6df, which changed the severity of missing imports from `info` back to `error`. The cause of this issue was a more complicated error handling mechanism, which explicitly translated IO errors to a separate enum variant without accounting for it in all scenarios. While retrospectively this seems completely unnecessary to me, it did mean shorter error messages in case the main config file was not found. To preserve the benefits of both approaches, explicit handling for the `NotFound` IO error has been added when loading the main configuration file.
| * Fix mouse mode bindings with multiple actionsEBADBEEF2024-05-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following config was broken: ``` [mouse] bindings = [ { mouse = "Right", mods = "Shift", action = "Copy" }, { mouse = "Right", mods = "Shift", action = "ClearSelection" }, ] ``` Only the first action was applied. Change to allow more than one exact match in mouse mode with shift held, but keep the logic to not allow fallback search if any exact match was found. Regression was introduced in 1a143d11.
* | Fix sixels position when padding>0Manuel de Prada2024-07-09
| |
* | Merge remote-tracking branch 'vendor/master' into graphicsAyose2024-05-15
|\|
| * Fix user events for all windows not handledKirill Chibisov2024-05-07
| | | | | | | | | | | | The user events for all cases were not handled. Fixes: 48c088a5 (Bump winit to 0.30.0) Fixes: #7957.
| * Bump winit to 0.30.0Kirill Chibisov2024-05-04
| |
| * Fix shutdown of config monitorChristian Duerr2024-05-03
| | | | | | | | This implements a coordinated shutdown of the config monitor by sending an event to its thread and waiting for the thread to terminate.
| * Bump alacritty_terminal to 0.24.1-devChristian Duerr2024-05-03
| | | | | | | | This is only an update to the development version and does not represent a stable release.
| * Fix dynamic title override for multiple windowsChristian Duerr2024-04-23
| | | | | | | | | | | | | | | | | | | | | | This fixes an issue where Windows spawned after the initial one through IPC or bindings would not update their title due to the initial window having its title set through the CLI. Title changes are still inhibited for additional windows when they are spawned through `alacritty msg create-window` with the `--title` CLI option added. Closes #6836.
| * Fix IME preview overlapping textKirill Chibisov2024-04-21
| | | | | | | | | | | | | | | | | | Fix incorrect usage of the `flags` when drawing the preedit resulting in setting the `flags`, but not actually reading the value back. The logic to skip things was also used incorrectly, because the renderer does that already based on the `WIDE_CHAR` flag on the cell. Fixes: 67a433ceed (Skip whitespaces for wide chars in preedit)
| * Fix missing config import warningMatt Fellenz2024-04-21
| |
| * Fix crash when trying to open a new tab on macOSWilliam Viktorsson2024-04-20
| | | | | | | | | | | | This fixes an issue where Alacritty would crash when trying to open a new tab on macOS while having decorations disabled. Co-authored-by: Christian Duerr <contact@christianduerr.com>
| * Fix window being focused by defaultKirill Chibisov2024-04-18
| | | | | | | | | | | | | | | | | | Winit explicitly states that the window is not focused by default and the `Focused` event will deliver the state later on. Also start adding notable changes to alacritty_terminal in its own CHANGELOG. Closes #7866.
| * Update homepage and repository in Cargo manifestsFoorack / Max Faxälv2024-03-31
| |
| * Fix "Open Alacritty Here" on WindowsZhiZe-ZG2024-03-28
| |
| * Send ESC with Alt for unicode inputKirill Chibisov2024-03-24
| | | | | | | | | | | | | | | | | | | | Make `Alt` send `ESC` for unicode input the way it's done for ASCII. Previously it was disabled because of macOS, however on macOS we're using the `option_as_alt` setting, which solves the original issue. The `Alt` prefixing is still disabled for the unicode strings, like when they come from the compose input. Fixes #7852.
| * Fix kitty encoding used for char input without textKirill Chibisov2024-03-21
| | | | | | | | | | On Windows some key combinations for regular text input, like Ctrl+1 don't have any text attached, so they were generating the kitty escape sequence even when they shouldn't.
| * Allow setting terminal env vars via PTY optionsKirill Bulatov2024-03-18
| | | | | | Closes #7778.
| * Drop MSRV to 1.70.0Christian Duerr2024-03-18
| |
| * Bump winit to 0.29.15Kirill Chibisov2024-03-14
| |
| * Fix hint `Select` action for hyperlink escapeChristian Duerr2024-03-12
| | | | | | | | | | | | | | | | | | | | | | | | This fixes an issue where the `Select` action for hyperlink escape text would select the entire line, instead of selecting only the hyperlink itself. It also changes the way hyperlinks with the same ID are highlighted, removing the restriction of being on consecutive lines and instead highlighting all visible cells that correspond to the matching hyperlink. Closes #7766.
* | Merge remote-tracking branch 'vendor/master' into graphicsAyose2024-03-11
|\|
| * Send exit code events on child process exitKirill Bulatov2024-03-09
| | | | | | | | Fixes #7753.
| * Bump winit to 0.29.14Kirill Chibisov2024-03-07
| | | | | | Fixes #7806.
* | Merge remote-tracking branch 'vendor/master' into graphicsAyose2024-03-04
|\|
| * Bump winit to 0.29.12Kirill Chibisov2024-03-01
| | | | | | The 0.29.11 was yanked.
| * Fix feature = "cargo-clippy" deprecationDimitris Apostolou2024-02-28
| |
| * Bump winit to 0.29.11Kirill Chibisov2024-02-27
| | | | | | | | | | | | | | Fixes #7633. Fixes #7613. Fixes #7607. Fixes #7571. Fixes #7549.
| * Fix clippy warningsChristian Duerr2024-02-14
| |
| * Bump MSRV to 1.72.0Christian Duerr2024-02-14
| |
* | Merge remote-tracking branch 'vendor/master' into graphicsAyose2024-02-11
|\|
| * Add default `Home`/`End` bindings for Vi modeKirill Chibisov2024-02-08
| |
| * Bump alacritty_terminal to 0.22.1Christian Duerr2024-02-05
| | | | | | | | This is only an update to the development version and does not represent a stable release.
| * Fix hang on startup with some Wayland compositorsKirill Chibisov2024-02-04
| | | | | | Fixes #7665.
| * Fix unnecessary explicit panic in PTY Conrad Irwin2024-02-02
| | | | | | Closes #7680.
| * Don't use kitty sequences outside protocolKirill Chibisov2024-01-31
| | | | | | | | | | | | | | | | | | | | | | | | | | Originally kitty defined that functional keys, which are not encoded by default, like `Pause` should be encoded with `CSI u`. However the specification was clarified and now it says that terminal may ignore that part. Given that Alacritty tries to follow xterm/urxvt when it comes to bindings, CSI u bindings are not send for consistency reasons. This also brings back F13-F20 bindings used by Alacritty in 0.12.3, as well as explicitly defines `NumpadEnter` like it was before. Closes #7623.
| * Don't report associated text only for C0/C1Kirill Chibisov2024-01-27
| | | | | | | | | | | | | | | | This has a side effect that we'll have text reported for Alt+Shift+T and similar, but only C0/C1 should be excluded and Alt+Shift+T is emitting neither, thus regular `T` will be reported. Fixes #7657.
| * Use builtin font to draw sextantsPopa Ioan Alexandru2024-01-26
| | | | | | | | | | | | Sextants are similar to quadrants and should align with them and other box drawing, thus use builtin font to align them properly. Part-of: #7422.
| * Allow specifying all config keys on all platformsChristian Duerr2024-01-24
| | | | | | Closes #7592.
| * Fix `debug.renderer="gles2pure"` documentationChristian Duerr2024-01-14
| | | | | | | | | | | | | | Patch 5685ce8bf changed the allowed values of the `debug.renderer` enum, prohibiting the usage of `_` in the `Gles2Pure` variant. This patch updates the documentation to correct for that. Co-authored-by: Kirill Chibisov <contact@kchibisov.com>
| * Fixup alacritty_config version and depsKirill Chibisov2024-01-14
| |
| * Reduce allocations during keyboard inputChristian Duerr2024-01-09
| |
| * Bump winit to 0.29.9Kirill Chibisov2024-01-06
| | | | | | | | Fixes #7559. Fixes #7533.
| * Ignore null values in `alacritty migrate`Kirill Chibisov2024-01-05
| | | | | | | | This should help with broken YAML configurations by throwing nulls away, which are not representable in toml.