1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-18 02:42:05 +03:00
wezterm/config
Wez Furlong 694fec0d5d wezterm: normalize configured keys
To avoid confusing behavior, normalize the configured keys
in the same way that we normalize key presses.

In other words, this:

```lua
{
  key = "y",
  mods = "CTRL|SHIFT",
  action = "Copy",
}
```

is treated as if you wrote:

```lua
{
  key = "Y",
  mods = "CTRL",
  action = "Copy",
}
```

refs: https://github.com/wez/wezterm/issues/372
2020-12-09 17:17:20 -08:00
..
src wezterm: normalize configured keys 2020-12-09 17:17:20 -08:00
build.rs move config into its own crate 2020-10-03 11:15:57 -07:00
Cargo.toml tidy up default_dpi vs DEFAULT_DPI 2020-12-09 13:48:23 -08:00