summaryrefslogtreecommitdiff
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
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.
-rw-r--r--CHANGELOG.md1
-rw-r--r--alacritty/src/config/bindings.rs2
-rw-r--r--alacritty/src/config/mod.rs3
-rw-r--r--alacritty/src/logging.rs1
-rw-r--r--alacritty_terminal/src/ansi.rs2
-rw-r--r--alacritty_terminal/src/term/mod.rs2
-rw-r--r--alacritty_terminal/src/tty/mod.rs1
-rw-r--r--alacritty_terminal/src/tty/unix.rs1
-rw-r--r--winpty/build.rs2
9 files changed, 2 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 51072cbe..b2572cdd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -43,7 +43,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Resize of bitmap fonts
- Crash when using bitmap font with `embeddedbitmap` set to `false`
- Inconsistent fontconfig fallback
-- Backspace deleting characters while IME is open on macOS
- Handling of OpenType variable fonts
- Expansion of block-selection on partially selected full-width glyphs
- Minimize action only works with decorations on macOS
diff --git a/alacritty/src/config/bindings.rs b/alacritty/src/config/bindings.rs
index 67dda775..d5360e9a 100644
--- a/alacritty/src/config/bindings.rs
+++ b/alacritty/src/config/bindings.rs
@@ -287,6 +287,7 @@ pub fn default_key_bindings() -> Vec<KeyBinding> {
PageDown; Action::Esc("\x1b[6~".into());
PageDown, ModifiersState::SHIFT, +TermMode::ALT_SCREEN; Action::Esc("\x1b[6;2~".into());
Tab, ModifiersState::SHIFT; Action::Esc("\x1b[Z".into());
+ Back; Action::Esc("\x7f".into());
Back, ModifiersState::ALT; Action::Esc("\x1b\x7f".into());
Insert; Action::Esc("\x1b[2~".into());
Delete; Action::Esc("\x1b[3~".into());
@@ -405,7 +406,6 @@ fn common_keybindings() -> Vec<KeyBinding> {
Add, ModifiersState::CTRL; Action::IncreaseFontSize;
Subtract, ModifiersState::CTRL; Action::DecreaseFontSize;
Minus, ModifiersState::CTRL; Action::DecreaseFontSize;
- Back; Action::Esc("\x7f".into());
)
}
diff --git a/alacritty/src/config/mod.rs b/alacritty/src/config/mod.rs
index 1c5f7ba5..d7b702b9 100644
--- a/alacritty/src/config/mod.rs
+++ b/alacritty/src/config/mod.rs
@@ -7,9 +7,6 @@ use std::path::PathBuf;
#[cfg(windows)]
use dirs;
use log::{error, warn};
-use serde_yaml;
-#[cfg(not(windows))]
-use xdg;
use alacritty_terminal::config::{Config as TermConfig, LOG_TARGET_CONFIG};
diff --git a/alacritty/src/logging.rs b/alacritty/src/logging.rs
index 9d837a78..86f01ce7 100644
--- a/alacritty/src/logging.rs
+++ b/alacritty/src/logging.rs
@@ -27,7 +27,6 @@ use std::sync::{Arc, Mutex};
use glutin::event_loop::EventLoopProxy;
use log::{self, Level};
-use time;
use alacritty_terminal::event::Event;
use alacritty_terminal::message_bar::Message;
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;
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;
diff --git a/alacritty_terminal/src/tty/mod.rs b/alacritty_terminal/src/tty/mod.rs
index 425ec4b0..f3e07eb2 100644
--- a/alacritty_terminal/src/tty/mod.rs
+++ b/alacritty_terminal/src/tty/mod.rs
@@ -13,7 +13,6 @@
// limitations under the License.
//
//! tty related functionality
-use mio;
use std::{env, io};
use terminfo::Database;
diff --git a/alacritty_terminal/src/tty/unix.rs b/alacritty_terminal/src/tty/unix.rs
index 1b01af0f..3be59467 100644
--- a/alacritty_terminal/src/tty/unix.rs
+++ b/alacritty_terminal/src/tty/unix.rs
@@ -18,7 +18,6 @@ use crate::config::{Config, Shell};
use crate::event::OnResize;
use crate::term::SizeInfo;
use crate::tty::{ChildEvent, EventedPty, EventedReadWrite};
-use mio;
use libc::{self, c_int, pid_t, winsize, TIOCSCTTY};
use log::error;
diff --git a/winpty/build.rs b/winpty/build.rs
index 0035ce3b..ae141f7e 100644
--- a/winpty/build.rs
+++ b/winpty/build.rs
@@ -62,7 +62,7 @@ fn aquire_winpty_agent(out_path: &Path) {
let mut archive = zip::ZipArchive::new(file).unwrap();
- let target = match env::var("TARGET").unwrap().split("-").next().unwrap() {
+ let target = match env::var("TARGET").unwrap().split('-').next().unwrap() {
"x86_64" => "x64",
"i386" => "ia32",
_ => panic!("architecture has no winpty binary"),