Add missing target_family = "unix" gates

This commit is contained in:
Mattias Eriksson 2024-01-20 14:27:16 +01:00
parent e75964d20b
commit e6fff76abd
2 changed files with 3 additions and 0 deletions

View file

@ -61,6 +61,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
bind!([Ctrl, Shift], Q, WindowClose);
bind!([Ctrl, Shift], T, TabNew);
bind!([Ctrl, Shift], V, Paste);
#[cfg(target_family = "unix")]
bind!([Shift], Insert, PastePrimary);
bind!([Ctrl, Shift], W, TabClose);