Use Fx* variants of HashMap and HashSet everywhere in Zed (#7481)
Release Notes: - N/A
This commit is contained in:
parent
7939673a7d
commit
eb236302c2
27 changed files with 96 additions and 102 deletions
|
@ -7,12 +7,9 @@ pub use context::*;
|
|||
pub(crate) use matcher::*;
|
||||
|
||||
use crate::{Action, Keystroke, NoAction};
|
||||
use collections::HashSet;
|
||||
use collections::{HashMap, HashSet};
|
||||
use smallvec::SmallVec;
|
||||
use std::{
|
||||
any::{Any, TypeId},
|
||||
collections::HashMap,
|
||||
};
|
||||
use std::any::{Any, TypeId};
|
||||
|
||||
/// An opaque identifier of which version of the keymap is currently active.
|
||||
/// The keymap's version is changed whenever bindings are added or removed.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue