aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/keyboard.rs
diff options
context:
space:
mode:
authorYuta Yamaguchi2023-01-22 18:04:14 +0000
committerGitHub2023-01-22 18:04:14 +0000
commitc8d77cfdb5f3f6ad04e9ffc5de8de33a0594447a (patch)
tree25f383442d33c99de8b5216980c6993c142092aa /helix-view/src/keyboard.rs
parentd99a72053676658759ef6ae7531f432daabb025a (diff)
refactor(helix-view): remove cfg_attr references a nonexistent feature (#5630)
Fixes https://github.com/helix-editor/helix/issues/5615
Diffstat (limited to 'helix-view/src/keyboard.rs')
-rw-r--r--helix-view/src/keyboard.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-view/src/keyboard.rs b/helix-view/src/keyboard.rs
index cf673e11..04a9922a 100644
--- a/helix-view/src/keyboard.rs
+++ b/helix-view/src/keyboard.rs
@@ -2,7 +2,6 @@ use bitflags::bitflags;
bitflags! {
/// Represents key modifiers (shift, control, alt).
- #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct KeyModifiers: u8 {
const SHIFT = 0b0000_0001;
const CONTROL = 0b0000_0010;