aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Quote `None` consistently inside the man pageKirill Chibisov2023-09-04
| | | | `None` must be inside the `"`, since it's a string value.
* Change `window.padding` from u8 to u16Arhum Jain2023-09-02
| | | Fixes #6900.
* Fix crash with anchored searchesChristian Duerr2023-08-31
| | | | While this does **not** enable the use of anchors (`^`) in user regexes, it does prevent Alacritty from crashing when attempting to do so.
* Update regex-automata to v0.3.6Christian Duerr2023-08-27
| | | This seems like a sensible first step before looking into #7097.
* Remove winit dependency from alacritty_configMax Brunsfeld2023-08-17
|
* Fix decorations_theme_variant spelling in manpagePavel Roskin2023-08-13
|
* Copy global IPC options for new windowsChristian Duerr2023-08-08
| | | | | | | | | This patch stores all options set for the Window ID `-1` and automatically applies them to new windows after their creation. This in theory makes it possible to have a fully dynamic "default config" without having to reapply it for every new window. Closes #7128.
* Apply transparent background colors to "UI" cellsSonu Bardai2023-08-07
|
* Ignore scrolling multiplier on touchscreenstv2023-08-05
|
* Use ahash instead of fnv and regular hash functionKirill Chibisov2023-07-24
| | | | | | | | After evaluation of the ahash with the data alacritty uses it was discovered that it's 1.5-2x times faster when getting the already hashed values, which is the primary cases for alacritty's renderer. Given that ahash is generally faster, all the HashSet and HashMap's inside the alacritty were changed to use it as a hasher function.
* Make URL_REGEX more strictKirill Bulatov2023-07-22
|
* Skip whitespaces for wide chars in preeditKirill Chibisov2023-07-22
| | | | | While we skip the spacers for the wide characters in the grid due to them having a proper flags, the draw_string method was generating the cells with incorrect flags leading to wide chars being cut off.
* Add `terminal` config section to control OSCs Kirill Chibisov2023-07-22
| | | | | | | | | | | | | | Some environments demand certain OSC sequences to be disabled or some escape sequence could require handling which is out of scope of alacritty, but could be done by external script (OSC 777). Added section for now just handles the `OSC 52` sequence and changes its default to be `OnlyCopy`, which is handy for remote copy, but `Paste` is redundant because normal `Paste` hotkey could be used as well. Fixes #3386. Co-authored-by: Christian Duerr <contact@christianduerr.com>
* Mention `Forward`/`Back` mouse buttons in man pageKirill Chibisov2023-07-21
| | | | They were mentioned only in the changelog, but forgotten in the man page.
* Fix keys like `+` not working on neo layoutsKirill Chibisov2023-07-20
| | | | | | The key_without_modifier removes all the modifiers including the multiple shift levels, which is not desired. In alacritty we just wanted to treat uppercase and lowercase latters the same, which we can with the help of builtin functions.
* Fix manpage docs for shell sectionChristian Duerr2023-07-20
| | | | | Closes #7087. Co-authored-by: Kirill Chibisov <contact@kchibisov.com>
* Use bracketed paste only for multi-char IME inputKirill Chibisov2023-07-20
| | | | Some IME setups do only `commit` single char input, like fcitx5 when doing ru input.
* Fix license syntaxAndrea Frigido2023-07-19
| | | | This patch updates the license field to follow the SPDX 2.1 license expression standard.
* Remove unnecessary mutable referencesPavel Roskin2023-07-18
|
* Use lowercase latters in bindings for h/m/lKirill Chibisov2023-07-18
| | | | | They were using uppercase latters, however our config expects everything as lowercase, because we're using `key_without_modifiers` + `ModifiersState`.
* Mention all the actions in the man pageKirill Chibisov2023-07-16
| | | | | | | | | | A lot of actions were left without a notice, so the only way to figure out some of them was to browse source code. An example of such actions were `Maximize` and `Minimize`, since we don't have a binding for them, so they were left even in alacritty-bindings(5). Explicitly list all the bindings we have. The search bindings were also not accurately restricted, since we allow them to be executed inside regardless of mode.
* Prefer logical key for named keysKirill Chibisov2023-07-13
| | | | | | Some keyboard layouts have named logical keys via shift combinations of some sorts. So prefer them. Fixes #7076.
* Raise double click threshold to 400msKirill Chibisov2023-07-13
| | | | This should improve the situation with some touchpads. GTK4 is also using the same value.
* Unset `XDG_ACTIVATION_TOKEN` in alacritty_terminalKirill Chibisov2023-07-13
| | | This variable is what being used for Wayland's activation stuff.
* Fix `window.option_as_alt=Both`Kirill Chibisov2023-07-13
| | | Fixes #7077.
* Fix configuration link typoNick Reilingh2023-07-12
| | | Co-authored-by: Christian Duerr <contact@christianduerr.com>
* Update to the new winit keyboard APIKirill Chibisov2023-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The main highlight of this update is that alacritty will now use new keyboard API from the winit, which resolves a lot of issues around key bindings, such as ability to bind dead keys. It also fixes long standing issues with the virtual key code bindings and make bindings in general more predictable. It also makes our default Vi key bindings fully working. Given that alacritty was using `VirtualKey` directly in the bindings from the winit, and winit simply removed the enum, we've added internal conversions to minimize the fallout, but new way to specify the bindings should be more intuitive. Other part of this update fixes some forward compatibility bugs with the Wayland backend, given that wayland-rs 0.30 is fully forward compatible. The update also fixes weird Maximized startup issues on GNOME Wayland, however they were present on any sane compositor. Fixes #6842. Fixes #6455. Fixes #6184. Fixes #5684. Fixes #3574. Fixes #3460. Fixes #1336. Fixes #892. Fixes #458. Fixes #55.
* Create man5 directory along with man1Yug Shende2023-07-10
|
* Update binding sections in config manpagePavel Roskin2023-07-07
|
* Fix legacy bindings taking precedence over new onesKirill Chibisov2023-07-03
| | | | | | | | | | They were compared by len, but it's was wrong from the start, since a user provided binding could remove more than one builtin binding, so it was impossible for users to use their own bindings. The most reliable way to do so is to use `Option`, given that we fill default during deserialization. Fixes #7050.
* Add a note in README about older versionsKirill Chibisov2023-07-02
| | | | Unfortunately it's not clear to everyone that they are looking at the development documentation.
* Add version 0.12.2 to CHANGELOGKirill Chibisov2023-07-01
| | | | This is only an update to the development version and does not represent a stable release.
* Add manpage links to "see also" sectionChristian Duerr2023-07-01
|
* Change the default colorschemeKirill Chibisov2023-06-29
| | | | | | | | | | The new colorscheme is base16 classic dark with the bright colors generated with oklab toolkits. The base16 classic dark is less washed out and represents the current maintainers preference. The motivation to change it was subjective, though it does look like generic dark theme. On a side note, this colorscheme was used for alacritty.org web page for a long time, however it used different foreground color.
* Remove mouse double_click/triple_click optionsSonu Bardai2023-06-29
| | | Fixes #6962.
* Add TOML migration recommendation to warningChristian Duerr2023-06-26
| | | | This adds a little recommendation to use `alacritty migrate` to automatically transition configuration files from YAML to TOML.
* Update wix on the release CIKirill Chibisov2023-06-26
| | | Fixes #6939.
* Add support for loading conpty.dllPavel Roskin2023-06-19
| | | | Co-Authored-By: @fredizzimo Co-Authored-By: @grueslayer
* Fix the crash when shrinking scrolled terminalKirill Chibisov2023-06-17
| | | | | | | display_offset was adjusted unconditionally, thus it could go beyound the history limits, so clamp it to history like we do in grow_colums. Fixes #6862.
* Add errors for deserializing with unknown fieldsChristian Duerr2023-06-17
| | | | | | | | | Currently there are still some places where `Deserialize` is used rather than `ConfigDeserialize`, which means that the built-in warning for unused fields is not emitted automatically. To ensure users don't have invalid configurations, the `#[serde(deny_unknown_fields)]` annotation has been added to these structs, making it a hard error when an unknown field is present.
* Fix parsing of integer font sizesPavel Roskin2023-06-17
| | | | Config file conversion broke parsing of the font size value if it's written as an integer, since TOML integers are always signed.
* Fix freeze with some drivers when using GLXKirill Chibisov2023-06-17
| | | Fixes #6972.
* Fix `alacritty msg config` toml replacementChristian Duerr2023-06-15
| | | | | | | | | | This fixes a regression introduced in bd49067 which broke the override of configuration file variables using `alacritty msg config`. To fix this the `replace` functionality was rewritten to behave more like the `serde_utils::merge` where entire values are inserted into the existing structure rather than separating the keys from the values. Fixes: bd49067 (Switch to TOML configuration format)
* Add option to persist hints after selectionSonu Bardai2023-06-15
| | | Closes #6976.
* Fix warnings for config importsChristian Duerr2023-06-14
| | | Closes #6996.
* Change the way we refer to IRC chatKirill Chibisov2023-06-13
|
* Switch to TOML configuration formatChristian Duerr2023-06-12
| | | | | | | | | | | | | | | This switches Alacritty's default configuration format from yaml to toml. While yaml is still supported, it is done by converting it to toml and should be removed entirely in the future. All existing features were persisted based on my testing. Behavior should not change much, though `--option` might have slightly different behavior since the entire line is not interpreted as one line of toml. A new `alacritty migrate` subcommand has been added which allows automatic migration from yaml to toml. This also could be used as a facility to automatically fix configuration file changes in the future. Closes #6592.
* Add resolver to workspace manifestChristian Duerr2023-06-11
| | | | This explicitly specifies resolver "2" in the root manifest, to fix a warning introduced in a recent nightly release.
* Bump dependenciesPavel Roskin2023-06-11
| | | Co-authored-by: Christian Duerr <contact@christianduerr.com>
* Fix crash on ScaleFactorChange on WindowsKirill Chibisov2023-06-02
| | | | | | | Windows is known to send zero sizes from winit in Risezed and now in ScaleFactorChanged events. They were handled in Resized, but not in ScaleFactorChanged. Fixes #6949.