aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/term
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/term
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/term')
-rw-r--r--alacritty_terminal/src/term/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/alacritty_terminal/src/term/mod.rs b/alacritty_terminal/src/term/mod.rs
index 57733bf5..ae1d7151 100644
--- a/alacritty_terminal/src/term/mod.rs
+++ b/alacritty_terminal/src/term/mod.rs
@@ -2181,8 +2181,6 @@ impl IndexMut<Column> for TabStops {
mod tests {
use std::mem;
- use serde_json;
-
use crate::ansi::{self, CharsetIndex, Handler, StandardCharset};
use crate::clipboard::Clipboard;
use crate::config::MockConfig;