| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
| |
This allows an escape code to invoke user-defined extensions found in
/home/rahm/.local/bin/alacritty-ext.sh. The terminal passes to this
script the escape-code arguments.
This allows things like opening links in the browser even through an ssh
connection.
|
|
|
|
| |
Backward buttons)
|
| |
|
|
|
|
| |
The config values are hardcoded atm.
|
| |
|
|
|
|
| |
This adds the `\` character to the list of characters which will
terminate matches in Alacritty's default hint for URL recognition.
|
|
|
|
|
| |
This patch removes the `hold` option on `alacritty_terminal` in favor of
a `drain_on_exit` option, which will drain the PTY before shutdown. The
hold logic is instead handled in `alacritty`.
|
| |
|
|
|
| |
The daemon without socket is not that useful.
|
|
|
|
| |
This fixes a crash with partial utf8 input and also speeds up parsing
in some cases.
|
|
|
| |
This cleans up context managing.
|
|
|
|
|
| |
Use context robustness to get notified about GPU resets
and try to recover from them by rebuilding the rendering
pipeline.
|
|
|
|
|
| |
The wide char spacers must not be drawn, like we do for regular wide
characters.
|
|
|
|
| |
Since this is a breaking change, it also bumps the alacritty_terminal
development version to 0.25.0-dev.
|
|
|
|
|
|
|
|
| |
Sometimes points could end up outside of viewport, thus the screen
will need to be invalidated. The default unwrapping does handle both
cases.
Fixes: a1ed79bd2c01 (Fix highlight invalidation on grid scroll)
|
|
|
|
|
| |
This is only an update to the development version and does not represent
a stable release.
|
| |
|
|
|
|
| |
Fixes #8337.
|
| |
|
|
|
|
|
| |
The behavior changed and now it actually makes sense.
Fix #8385.
|
|
|
| |
This also changes its license to MIT along the way.
|
|
|
|
|
|
| |
This updates the VTE crate to the latest version, bringing in a nice SGR
performance boost.
Co-authored-by: Kirill Chibisov <contact@kchibisov.com>
|
|
|
|
|
| |
This should fix the screenshot image on crates.io.
https://github.com/rust-lang/crates.io/issues/5318
|
| |
|
|
|
|
| |
Changing block selection to regular semantic one doesn't feel intuitive,
thus don't switch to it when user has control pressed.
|
|
|
| |
The implementation is the same as CSI Ps Z, but forward.
|
|
|
|
|
|
|
|
| |
This fixes an issue with daemon mode where the first spawned window
would not use the window options passed to the `create-window`
subcommand, but would instead use the options passed during creation of
the original daemon.
Closes #8371.
|
|
|
| |
Fixes double input on X11 after update to 0.30.6.
|
|
|
| |
Fixes #8268.
|
|
|
|
| |
While this doesn't change much with how parsers are implemented, it
improves consistency with how key release is handled.
|
|
|
|
|
| |
This fixes a GitHub security alert about hashbrown, which has no
significant impact on Alacritty but still seems wise to fix since it's
so simple.
|
| |
|
|
|
|
|
|
|
| |
YAML import migration was already properly ignoring nonexistent imports,
it was only missed for TOML ones.
Fixes #8330.
|
| |
|
| |
|
|
|
|
|
|
|
| |
This patch fixes an issue where the semantic vi motion commands
`SemanticRight` and `SemanticLeft` were not behaving as expected when a
fullwidth character was used as a semantic character.
Closes #8314.
|
| |
|
|
|
|
|
| |
This patch applies all major and minor version bumps, with the exception
of `unicode-width` since it will need to be handled separately for
Unicode version 16.
|
|
|
|
|
|
|
|
|
|
|
| |
This fixes an issue with hints where it was possible that the terminal
content of highlighted hints changed between the highlighted hint update
and the activation of the hint.
This patch always validates the hint's text content against the hint
itself to ensure that the content is still valid for the original hint
which triggered the highlight.
Closes #8277.
|
| |
|
| |
|
|
|
|
|
|
|
| |
This fixes a couple issues with hint highlight invalidation, which would
cause hints to lose their underline highlight despite the terminal
itself not having changed since the highlight started.
Closes #8270.
|
| |
|
|
|
|
| |
alacritty_terminal was pulling `serde` via vte even though
serde feature was disabled.
|
|
|
|
| |
This is only an update to the development version and does not represent
a stable release.
|
|
|
| |
This reverts commit 5dca7a85e7d8e98f8e770c17af8efb442c2277d0.
|
|
|
|
|
| |
The pipe was not using O_CLOEXEC, so it was leaked into the child.
Fixes #8249.
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
| |
This changes the behavior of inline search from only accepting direct
key inputs, to also accepting IME and paste. The additional characters
are still being discarded, matching the existing behavior.
This also fixes an issue where inline search wouldn't work for
characters requiring modifiers, since the modifier press was interpreted
as the search target instead.
Closes #8208.
|