summaryrefslogtreecommitdiff
path: root/extra
AgeCommit message (Collapse)Author
2024-10-22Alacritty version 0.14.0v0.14.0alacritty_terminal_v0.24.1Christian Duerr
2024-10-15Alacritty version 0.14.0-rc2v0.14.0-rc2alacritty_terminal_v0.24.1-rc2Christian Duerr
2024-10-15Add headless modeChristian Duerr
This patch adds a daemon mode to Alacritty which allows starting the Alacritty process without spawning an initial window. While this does not provide any significant advantage over the existing behavior of always spawning a window, it does integrate nicer with some setups and is a pretty trivial addition.
2024-10-11Alacritty version 0.14.0-rc1v0.14.0-rc1alacritty_terminal_v0.24.1-rc1Christian Duerr
2024-10-10Change ctrl+shift+u to ctrl+shift+oKirill Chibisov
Avoid collisions with IMEs by using ctrl+shift+o. ctrl+shift+u is bound to open unicode input in a lot of IMEs by default meaning that users won't ever see the url hints UI.
2024-10-02Move root config fields to `[general]` sectionChristian Duerr
Some users struggle with TOML, since root options must always be at the top of the file, since they're otherwise associated with the last table. To avoid misunderstandings, all root-level fields have been removed. A new `general` section was added to allow housing configuration options that do not fit into any more specific groups. Closes #7906.
2024-09-10Make alacritty(1) config paths resemble alacritty(5)Kirill Chibisov
This also fixes the escaping in alacritty(5) page.
2024-08-18Remove duplicate clip-path from logophilomathic_life
2024-08-11Fix description in alacritty-bindings(5)Kirill Chibisov
Man pages use the man page name as the first word in description. This also aligns with other man pages we have.
2024-07-18Document options which are not working everywhere yetKirill Chibisov
This includes `window.position` and `window.resize_increments`.
2024-07-17Bump dependenciesKirill Chibisov
Update winit and clap to latest versions.
2024-07-02Support relative imports in config fileJoshua Cao
Co-authored-by: Christian Duerr <contact@christianduerr.com>
2024-05-12Add missing comma to alacritty(5) manpageTravis Finkenauer
2024-05-07Allow requesting Bluetooth permission on macOSGiacomo Battaglia
2024-05-03Add config file locations into alacritty(5) Aarni Koskela
2024-02-19Fix typo in config docsYadi Abdalhalim
2024-02-08Add default `Home`/`End` bindings for Vi modeKirill Chibisov
2024-02-04Fix hang on startup with some Wayland compositorsalacritty_terminal_v0.21.0Kirill Chibisov
Fixes #7665.
2024-01-31Document `command` field in bindingsKirill Chibisov
Closes #7594.
2024-01-26Use builtin font to draw sextantsPopa Ioan Alexandru
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.
2024-01-21Fix typo in config docsChristian Duerr
Closes #7647.
2024-01-14Fix `debug.renderer="gles2pure"` documentationChristian Duerr
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>
2024-01-08Fix manpage string escapesWuerfelDev
Co-authored-by: Christian Duerr <contact@christianduerr.com>
2024-01-04Add vi search paste bindingsOmar Magdy
Closes #7511.
2023-12-28Mark SimpleFullscreen as macOS only startup modeKirill Chibisov
2023-12-14Update alacritty versionsChristian Duerr
This is only an update to the development versions and does not represent a stable release.
2023-12-14Bump crossfont to 0.7.0Kirill Chibisov
2023-11-28Adjust default Vi's SearchBackwards bindingKirill Chibisov
We have the same policy with Shift for numbers.
2023-11-24Add migrate to alacritty(1)Kirill Chibisov
2023-11-24Fix default for [[hints.enabled]] in man pagesKirill Chibisov
The default was incomplete, since `command` was missing.
2023-11-24Drop repo link in *SEE ALSO* man sectionsKirill Chibisov
The alacritty documentation is fully present inside the man pages, the repo provides nothing extra other than a way to report issues, which lives in its own section anyway.
2023-11-24Add example for [window] section in alacritty(5)Kirill Chibisov
This should give a hint on how to generally tweak things.
2023-11-24Improve section to TOML section refsKirill Chibisov
This should give more hints where to put things.
2023-11-24Explicitly use `=` in alacritty(5)Kirill Chibisov
This should help with understanding how to write TOML without reading too much into specification.
2023-11-24Make man pages look consistentKirill Chibisov
Part of the man pages were using _value_, other part were using just value, thus make everything as _value_. Also properly dot terminate and add spacing through out the man pages.
2023-11-24Fix SelectLastTab in alacritty-bindings(5)Kirill Chibisov
2023-11-24Make sections the same case in man pagesKirill Chibisov
2023-11-13Fix Sync capability in terminfoGregory Anders
Alacritty has supported mode 2026 for synchornized updates for a few months, but the terminfo entry still used the old DCS sequence originally supported by iTerm2. Since many other terminal emulators and applications seem to be standardizing around 2026, change the terminfo entry to use SM instead of DCS.
2023-11-13Change default `bell.animation` to `Linear`Kirill Chibisov
The default animation feels really choppy, but it's just how its function looks.
2023-11-11Add `--option` argument to `create-window`Christian Duerr
This patch adds a new CLI parameter to the `create-window` subcommand, matching the existing `--option` parameter when creating a new Alacritty instance. This parameter allows setting up the initial window configuration from the CLI without having to call `alacritty msg config`, making sure that all options are set appropriately right from the start. Closes #6238.
2023-11-11Use builtin font to draw powerline symbolsKirill Chibisov
In addition to box drawing it was decided to also draw powerline symbols, since those are quite common and rather simple to draw with present box drawing infra.
2023-10-29Add `window.blur` config optionKirill Chibisov
Fixes #972.
2023-10-25Fix typosPavel Roskin
2023-10-25Prefer exact matches for bindings in mouse modePavel Roskin
Only consider bindings without Shift if there are no actions defined for the actual mouse event. Closes #7292.
2023-10-21Update winit to 0.29.2 and copypasta to 0.10.0Kirill Chibisov
Fixes #7236. Fixes #7201. Fixes #7146. Fixes #6848. Fixes #3601. Fixes #3108. Fixes #2453.
2023-10-20Add inline vi mode searchChristian Duerr
This patch adds inline search to vi mode using `f`/`F` and `t`/`T` as default bindings. The behavior matches that of vim. Fixes #7203.
2023-10-08Update dependenciesChristian Duerr
This patch applies all breaking and non-breaking dependency updates and bumps MSRV to 1.70.0.
2023-09-16Add missing position config docsChristian Duerr
2023-09-07Test man-pages compilation on the CIKirill Chibisov
2023-09-04Add `prefer_egl` debug optionRolf Sievert
Some systems have rendering issues when using GLX rather than EGL. While this is usually due to a driver bug, it is helpful to provide a workaround for this by allowing people to prefer EGL over GLX. This patch adds the new `debug.prefer_egl` option to provide this workaround. Closes #7056.