1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 22:37:11 +03:00
wezterm/window
Jalil David Salamé Messina d541e2e13d fix(clippy): Remove closures where possible
- Removes closures and function calls for types that implement default:

  ```rust
  // Change
  let _my_str = get_str().unwrap_or(String::new);
  // To
  let _my_str = get_str().unwrap_or_default();
  ```

- Uses the `.cloned()/.copied()` methods where possible
- Use function pointer instead of simple closure

May improve performace, as closures generate more code, and this might
unlock some inlining opportunities.
2023-03-19 08:41:38 -07:00
..
examples move OpenInBrowser -> KeyAssignment 2022-12-21 07:04:51 -07:00
src fix(clippy): Remove closures where possible 2023-03-19 08:41:38 -07:00
build.rs macos: handle dead keys without IME 2021-01-31 17:06:30 -08:00
Cargo.toml window: use a shorter timeout for xdg portal reads 2023-02-08 09:19:28 -07:00
LICENSE.md Add missing license files 2022-08-17 07:19:12 -07:00