Support for "Insert" from character key location (#37219)

Gerd Augsburg created

Release Notes:
- Added support for the Insert-Key from a character key location for
keyboard layouts like neo2

Change summary

crates/gpui/src/platform/linux/platform.rs | 1 +
1 file changed, 1 insertion(+)

Detailed changes

crates/gpui/src/platform/linux/platform.rs 🔗

@@ -848,6 +848,7 @@ impl crate::Keystroke {
             Keysym::Down => "down".to_owned(),
             Keysym::Home => "home".to_owned(),
             Keysym::End => "end".to_owned(),
+            Keysym::Insert => "insert".to_owned(),
 
             _ => {
                 let name = xkb::keysym_get_name(key_sym).to_lowercase();