1
1
mirror of https://github.com/wez/wezterm.git synced 2025-01-03 11:11:43 +03:00

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.
This commit is contained in:
Wez Furlong 2019-12-30 10:33:52 -08:00
parent d58f1ff5dc
commit 5540b2e66b

View File

@ -672,7 +672,9 @@ fn default_cursor_blink_rate() -> u64 {
} }
fn default_swap_backspace_and_delete() -> bool { 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 { fn default_scrollback_lines() -> usize {