mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
parent
9ff2838844
commit
b735975486
2 changed files with 2 additions and 0 deletions
|
@ -75,6 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Use `\` instead of `\\` as path separators on Windows for logging config file location
|
||||
- Underline/strikeout drawn above visual bell
|
||||
- Terminal going transparent during visual bell
|
||||
- Selection not being cleared when sending chars through a binding
|
||||
|
||||
### Removed
|
||||
|
||||
|
|
|
@ -143,6 +143,7 @@ impl<T: EventListener> Execute<T> for Action {
|
|||
fn execute<A: ActionContext<T>>(&self, ctx: &mut A, mouse_mode: bool) {
|
||||
match *self {
|
||||
Action::Esc(ref s) => {
|
||||
ctx.clear_selection();
|
||||
ctx.scroll(Scroll::Bottom);
|
||||
ctx.write_to_pty(s.clone().into_bytes())
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue