Edit

kc3-lang/libxkbcommon/test/data/keymaps/unsupported-x11-actions

Branch :

  • Show log

    Commit

  • Author : Pierre Le Marre
    Date : 2025-10-17 11:56:48
    Hash : fcc95275
    Message : xkbcomp: Rename fallback key type to ONE_LEVEL This is the name of this canonical key type in the XKB protocol.

  • test/data/keymaps/unsupported-x11-actions
  • xkb_keymap {
    xkb_keycodes {
    	minimum = 1;
    	maximum = 255;
    	<1>                  = 1;
    	<2>                  = 2;
    	<3>                  = 3;
    	<4>                  = 4;
    	<5>                  = 5;
    	<6>                  = 6;
    };
    
    xkb_types {
    	type "ONE_LEVEL" {
    		modifiers= none;
    	};
    };
    
    xkb_compatibility {
    	interpret.useModMapMods= AnyLevel;
    	interpret.repeat= False;
    	interpret ISO_Lock+AnyOfOrNone(all) {
    		action= NoAction();
    	};
    	interpret VoidSymbol+AnyOfOrNone(all) {
    		action= NoAction();
    	};
    };
    
    xkb_symbols {
    };
    
    };