-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhyper-window.json
More file actions
89 lines (89 loc) · 2.72 KB
/
Copy pathhyper-window.json
File metadata and controls
89 lines (89 loc) · 2.72 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"description": "hyper-window",
"manipulators": [
{
"description": "q = alter app rev",
"from": {
"key_code": "q",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "tab",
"modifiers": ["left_command", "left_shift"]
}
],
"type": "basic"
},
{
"description": "w = alter app",
"from": {
"key_code": "w",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "tab",
"modifiers": ["left_command"]
}
],
"type": "basic"
},
{
"description": "z = alter app-win rev",
"from": {
"key_code": "z",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": ["left_command", "left_shift"]
}
],
"type": "basic"
},
{
"description": "x = alter app-win",
"from": {
"key_code": "x",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": ["left_command"]
}
],
"type": "basic"
},
{
"description": "a = alter tab sheet rev",
"from": {
"key_code": "a",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "tab",
"modifiers": ["left_control", "left_shift"]
}
],
"type": "basic"
},
{
"description": "s = alter tab sheet",
"from": {
"key_code": "s",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "tab",
"modifiers": ["left_control"]
}
],
"type": "basic"
}
]
}