diff --git a/helix-term/src/commands/engine/components.rs b/helix-term/src/commands/engine/components.rs index 18161b2f1..2b949c00d 100644 --- a/helix-term/src/commands/engine/components.rs +++ b/helix-term/src/commands/engine/components.rs @@ -1475,6 +1475,14 @@ The key modifier bits associated with the shift key modifier. The key modifier bits associated with the alt key modifier. "# ); + register!( + value, + "key-modifier-super", + SteelVal::IntV(KeyModifiers::SUPER.bits() as isize), + r#" +The key modifier bits associated with the super key modifier. + "# + ); register!( "key-event-F?",