Edit

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

Branch :

  • Show log

    Commit

  • Author : Pierre Le Marre
    Date : 2025-06-09 19:26:13
    Hash : 0f89ad97
    Message : dump: Always use numeric group indexes The upcoming raise of the maximum groups count will require to use numeric group indexes instead of the syntax `GroupN` if groups > 8. Let’s not bother with handling two cases (group count ≤ 8 or > 8) and always serialize group indexes as numeric values.

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