Compare commits

...

4 Commits

Author SHA1 Message Date
Mikayla Maki
d7efc87d94 Merge pull request #2027 from zed-industries/fix-keybindings-in-command-palette
Fix bug where keybindings would not show in command palette
2023-01-13 11:42:50 -08:00
Max Brunsfeld
69c8a3259a zed 0.69.1 2023-01-11 14:01:57 -08:00
Max Brunsfeld
96a90ea3d1 Bump protocol version after reconnect support 2023-01-11 14:01:23 -08:00
Mikayla Maki
bf7dd74584 v0.69.x preview 2023-01-11 10:33:43 -08:00
5 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@@ -8187,7 +8187,7 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
[[package]]
name = "zed"
version = "0.69.0"
version = "0.69.1"
dependencies = [
"activity_indicator",
"anyhow",

View File

@@ -43,7 +43,7 @@ impl Keymap {
pub(crate) fn add_bindings<T: IntoIterator<Item = Binding>>(&mut self, bindings: T) {
for binding in bindings {
self.binding_indices_by_action_type
.entry(binding.action().type_id())
.entry(binding.action().as_any().type_id())
.or_default()
.push(self.bindings.len());
self.bindings.push(binding);

View File

@@ -6,4 +6,4 @@ pub use conn::Connection;
pub use peer::*;
mod macros;
pub const PROTOCOL_VERSION: u32 = 44;
pub const PROTOCOL_VERSION: u32 = 45;

View File

@@ -3,7 +3,7 @@ authors = ["Nathan Sobo <nathansobo@gmail.com>"]
description = "The fast, collaborative code editor."
edition = "2021"
name = "zed"
version = "0.69.0"
version = "0.69.1"
[lib]
name = "zed"

View File

@@ -1 +1 @@
dev
preview