-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes
More file actions
27 lines (26 loc) · 729 Bytes
/
Copy pathtypes
File metadata and controls
27 lines (26 loc) · 729 Bytes
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
default partial xkb_types "alt-for-ansi" {
type "FOUR_LEVEL_SHIFT_PRESERVE" {
modifiers = Shift + LevelThree;
map[None] = Level1;
map[Shift] = Level2;
map[LevelThree] = Level3;
map[Shift+LevelThree] = Level3;
preserve[Shift+LevelThree] = Shift;
level_name[Level1] = "Base";
level_name[Level2] = "Shift";
level_name[Level3] = "AltGr";
level_name[Level4] = "Shift AltGr";
};
type "SHIFT_PRESERVES_LEVEL1" {
modifiers = Shift + LevelThree;
map[None] = Level1;
map[Shift] = Level1;
map[LevelThree] = Level3;
map[Shift+LevelThree] = Level4;
preserve[Shift] = Shift;
level_name[Level1] = "Base";
level_name[Level2] = "Shift";
level_name[Level3] = "AltGr";
level_name[Level4] = "Shift AltGr";
};
};