Skip to content

Commit

Permalink
fix(plugins): derive hash and ord for PaneId (#3790)
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif authored Nov 19, 2024
1 parent d0a38e8 commit 0d4b00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zellij-utils/src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1503,7 +1503,7 @@ pub struct NewPluginArgs {
pub skip_cache: bool,
}

#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub enum PaneId {
Terminal(u32),
Plugin(u32),
Expand Down

0 comments on commit 0d4b00c

Please sign in to comment.