From 5540b2e66be5b5d359c32a5c5d60a145381bac7a Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 30 Dec 2019 10:33:52 -0800 Subject: [PATCH] Don't default to swapped backspace and delete on macos With the changes in Refs: https://github.com/wez/wezterm/issues/88 we don't need to swap them by default on macos any more. --- src/config/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index 4182a3bbb..22447aab6 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -672,7 +672,9 @@ fn default_cursor_blink_rate() -> u64 { } fn default_swap_backspace_and_delete() -> bool { - cfg!(target_os = "macos") + // cfg!(target_os = "macos") + // See: https://github.com/wez/wezterm/issues/88 + false } fn default_scrollback_lines() -> usize {