This repository has been archived by the owner on Feb 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.json
56 lines (56 loc) · 1.87 KB
/
examples.json
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
[
{
"description":"Test: meta+pageup",
"shortcut":"meta+pageup",
"application":"Example",
"comment":"Test to run shortcut 'meta+pageup', maximize window in KDE or maybe other desktop"
},
{
"description":"Test: ctrl+shift+c",
"shortcut":"ctrl+shift+c",
"application":"Example",
"comment":"Test to run shortcut 'ctrl+shift+c', the copy command in Zsh"
},
{
"description":"Test: a + b + c",
"shortcut":"a + b + c",
"application":"Example",
"comment":"Test to run shortcut 'a + b + c', in this case '+' will be a key instead of the connector"
},
{
"description":"Test: esc :set nu",
"shortcut":"esc :set space nu",
"application":"Example",
"comment":"Test to run shortcut 'esc :set nu', set number in vim/nvim"
},
{
"description":"Test: esc :set nu (alternative)",
"shortcut":"esc [STR]+ :set nu",
"application":"Example",
"comment":"Test to run shortcut 'esc :set nu', using [STR] to type string instead"
},
{
"description":"Test: esc :set nu enter",
"shortcut":"esc :set space nu enter",
"application":"Example",
"comment":"Test to run shortcut 'esc :set nu enter', set number in vim/nvim"
},
{
"description":"Test: esc :set nu enter (alternative)",
"shortcut":"esc [STR]+ :set nu [STR] enter",
"application":"Example",
"comment":"Test to run shortcut 'esc :set nu enter', using [STR] to type string instead"
},
{
"description":"Welcome",
"shortcut":"[STR]+ liz and the blue bird",
"application":"Welcome",
"comment":"Welcom message"
},
{
"description":"Hello world",
"shortcut":"[STR]+ Hello World!",
"application":"Welcome",
"comment":"Welcom message 2"
}
]