Edit

kc3-lang/libxkbcommon/test/data/keymaps/optional-components-basic.xkb

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/optional-components-basic.xkb
  • xkb_keymap {
    xkb_keycodes {
    	minimum = 1;
    	maximum = 255;
    	<>                   = 1;
    };
    
    xkb_types {
    	type "ONE_LEVEL" {
    		modifiers= none;
    	};
    };
    
    xkb_compatibility {
    	interpret.useModMapMods= AnyLevel;
    	interpret.repeat= False;
    	interpret VoidSymbol+AnyOfOrNone(none) {
    		repeat= True;
    	};
    };
    
    xkb_symbols {
    	key <>                   {
    		type= "ONE_LEVEL",
    		symbols[1]= [               a ]
    	};
    };
    
    };