You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove unused KeyModifiers import in theme.rs (keep in tests)
- Replace deprecated buf.get(x, y) with buf[(x, y)] indexing
- Collapse nested if statements using let..&& pattern
- Convert let..else to ? operator where applicable
- Replace match with single arm to if let
- Replace len() > 0 with !is_empty()
- Remove unnecessary .clone() on Copy types
- Remove useless .into() conversions
- Use Range::contains() instead of manual comparison
0 commit comments