summaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/ansi.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2020-02-10 23:41:48 +0000
committerGitHub <noreply@github.com>2020-02-10 23:41:48 +0000
commit3b8ef3a0c4b35d70b58cbf3ea4782e38357c4bd3 (patch)
treeacf0525aa8d27237250b5ae49909c679df47eca8 /alacritty_terminal/src/ansi.rs
parent5cd13f8c474c71a922e5d8f2b78857badf054f6f (diff)
downloadalacritty-3b8ef3a0c4b35d70b58cbf3ea4782e38357c4bd3.tar.gz
alacritty-3b8ef3a0c4b35d70b58cbf3ea4782e38357c4bd3.zip
Revert "Fix backspace deleting chars when IME is open"
This reverts commit 7f4dce2ee04859fb0b48f15cf808b60065778703. Originally it was assumed that macOS always sends the \x7f on backspace anyways, however this is not true. It seems like the character on backspace can change even within the same terminal session, so we need to have our own binding to reliably set the correct binding. A solution for #1606 should be implemented in cooperation with winit.
Diffstat (limited to 'alacritty_terminal/src/ansi.rs')
-rw-r--r--alacritty_terminal/src/ansi.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/alacritty_terminal/src/ansi.rs b/alacritty_terminal/src/ansi.rs
index bac7e0c7..c71d94f9 100644
--- a/alacritty_terminal/src/ansi.rs
+++ b/alacritty_terminal/src/ansi.rs
@@ -19,8 +19,6 @@ use std::str;
use log::{debug, trace};
use serde::{Deserialize, Serialize};
-use vte;
-
use crate::index::{Column, Line};
use crate::term::color::Rgb;