File: level3-v2

package info (click to toggle)
libxkbcommon 1.13.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,344 kB
  • sloc: ansic: 57,807; xml: 8,905; python: 7,451; yacc: 913; sh: 253; makefile: 23
file content (39 lines) | stat: -rw-r--r-- 933 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
partial xkb_compatibility "latchOnPress" {

    virtual_modifiers  LevelThree;

    interpret.repeat= False;
    setMods.clearLocks= True;
    latchMods.clearLocks= True;
    latchMods.latchToLock= True;

    interpret ISO_Level3_Latch+Any {
	useModMapMods= level1;
	virtualModifier= LevelThree;
	action= LatchMods(modifiers=LevelThree, latchOnPress);
    };

    interpret ISO_Level3_Latch {
	action= LatchMods(modifiers=LevelThree, latchOnPress);
    };
};

partial xkb_compatibility "latchOnRelease" {

    virtual_modifiers  LevelThree;

    interpret.repeat= False;
    setMods.clearLocks= True;
    latchMods.clearLocks= True;
    latchMods.latchToLock= True;

    interpret ISO_Level3_Latch+Any {
	useModMapMods= level1;
	virtualModifier= LevelThree;
	action= LatchMods(modifiers=LevelThree, latchOnPress=false);
    };

    interpret ISO_Level3_Latch {
	action= LatchMods(modifiers=LevelThree, latchOnPress=false);
    };
};