-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrules.toml
87 lines (66 loc) · 1.82 KB
/
rules.toml
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
[[command]]
input = "^g (.+)$"
output = "https://www.google.com/search?q={}"
[[command]]
input = "^a (.+)$"
output = "https://www.amazon.com/s?k={}"
[[command]]
input = "^cal$"
output = "https://calendar.google.com/"
[[command]]
input = "^newmail$"
output = "https://mail.google.com/mail/?view=cm"
[[command]]
input = "^newdoc$"
output = "https://docs.google.com/document/u/0/create"
[[command]]
input = "^newsheet$"
output = "https://docs.google.com/spreadsheets/u/0/create"
[[command]]
input = "^y$"
output = "https://www.youtube.com"
[[command]]
input = "^y (.+)$"
output = "https://www.youtube.com/results?search_query={}"
[[command]]
input = "^maps$"
output = "https://www.google.com/maps"
[[command]]
input = "^maps (.+)$"
output = "https://www.google.com/maps/search/{}"
[[command]]
input = "^drive$"
output = "https://drive.google.com/drive/u/0/my-drive"
[[command]]
input = "^drive (.+)$"
output = "https://drive.google.com/drive/u/0/search?q={}"
[[command]]
input = "^gh$"
output = "https://github.com/"
[[command]]
input = "^gh (.+)$"
output = "https://github.com/search?q={}"
[[command]]
input = "^ghi (.+)$"
output = "https://github.com/search?q={}&type=issues"
[[command]]
input = "^ghc (.+)$"
output = "https://github.com/search?q={}&type=code"
[[command]]
input = "^tw @(.+)$"
output = "https://twitter.com/{}"
[[command]]
input = "^tw ([^@].+)$"
output = "https://twitter.com/search?q={}"
[[command]]
input = "^redd (.+)$"
output = "https://www.reddit.com/search/?q={}"
[[command]]
input = "^pin (.+)$"
output = "https://www.pinterest.com/search/pins/?q={}"
[[command]]
input = "^(i-.+)$"
output = "https://us-east-1.console.aws.amazon.com/ec2/home?region=us-east-1#InstanceDetails:instanceId={}"
[[command]]
input = "^(vpc-.+)$"
output = "https://us-east-1.console.aws.amazon.com/vpc/home?region=us-east-1#VpcDetails:VpcId={}"