1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00

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
This commit is contained in:
Wez Furlong 2020-06-13 15:02:42 -07:00
parent 39f4985741
commit 6959717e37
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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)]