From 6959717e377b08b1f70a3b8b8e2bd73601596247 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 13 Jun 2020 15:02:42 -0700 Subject: [PATCH] wezterm: use_ime now defaults to false The weird key repeat behavior and other occasional warts mean that this should probably be disabled by default. refs: https://github.com/wez/wezterm/issues/215 --- docs/changelog.markdown | 2 ++ src/config/mod.rs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog.markdown b/docs/changelog.markdown index 4418219da..8ae20a0b4 100644 --- a/docs/changelog.markdown +++ b/docs/changelog.markdown @@ -18,6 +18,8 @@ brief notes about them may accumulate here. and otherwise enables more key binding combinations. You can enable this setting using `enable_csi_u_key_encoding = true` in your config file. * Very early support for sixel graphics +* macos: `use_ime` now defaults to false; this is a better out of + the box experience for most users. ### 20200607-144723-74889cd4 diff --git a/src/config/mod.rs b/src/config/mod.rs index 8f1bdc628..d6a113586 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -501,7 +501,7 @@ pub struct Config { #[serde(default = "default_true")] pub scroll_to_bottom_on_input: bool, - #[serde(default = "default_true")] + #[serde(default)] pub use_ime: bool, #[serde(default)]