forked from mikker/LeaderKey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-advanced-shortcuts.json
More file actions
64 lines (64 loc) · 1.66 KB
/
example-advanced-shortcuts.json
File metadata and controls
64 lines (64 loc) · 1.66 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
{
"items": [
{
"key": "a",
"label": "App Switch (with delays)",
"type": "shortcut",
"value": "keydown:left_command tab delay:300 tab delay:300 tab delay:300 keyup:left_command"
},
{
"key": "q",
"label": "Quick Switch (no delay)",
"type": "shortcut",
"value": "keydown:left_command delay:0 tab delay:0 tab delay:0 tab keyup:left_command"
},
{
"key": "c",
"label": "Copy-Paste (with processing time)",
"type": "shortcut",
"value": "Cc delay:1000 Cv"
},
{
"key": "t",
"label": "Type Hello World (natural rhythm)",
"type": "shortcut",
"value": "h e l l o delay:200 spacebar delay:100 w o r l d"
},
{
"key": "v",
"label": "Vim Save & Quit",
"type": "shortcut",
"value": "escape delay:100 : w q delay:50 return_or_enter"
},
{
"key": "s",
"label": "Select Line (hold shift + end)",
"type": "shortcut",
"value": "keydown:left_shift end keyup:left_shift"
},
{
"key": "m",
"label": "Mission Control Navigation",
"type": "shortcut",
"value": "Tf3 delay:500 right_arrow delay:200 right_arrow delay:200 return_or_enter"
},
{
"key": "w",
"label": "Close Window (with confirm delay)",
"type": "shortcut",
"value": "Cw delay:2000 return_or_enter"
},
{
"key": "d",
"label": "Desktop Switch",
"type": "shortcut",
"value": "keydown:left_control right_arrow delay:500 keyup:left_control"
},
{
"key": "r",
"label": "Refresh Page (F5 with delay)",
"type": "shortcut",
"value": "f5 delay:3000"
}
]
}