Skip to content

Commit 3b7e095

Browse files
committed
Adds default toggle comment shortcut to German keyboards
1 parent f88e220 commit 3b7e095

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

public/json/german_toggle_comment

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
{
2+
"title": "German toggle comment: CMD+/ (EN) to CMD+# (DE)",
3+
"rules": [
4+
{
5+
"description": "German toggle comment: CMD+/ (EN) to CMD+# (DE)",
6+
"manipulators": [
7+
{
8+
"from": {
9+
"key_code": "backslash",
10+
"modifiers": {
11+
"mandatory": [
12+
"left_command"
13+
],
14+
"optional": [
15+
"any"
16+
]
17+
}
18+
},
19+
"to": [
20+
{
21+
"key_code": "keypad_slash",
22+
"modifiers": [
23+
"left_command"
24+
]
25+
}
26+
],
27+
"type": "basic"
28+
},
29+
{
30+
"from": {
31+
"key_code": "backslash",
32+
"modifiers": {
33+
"mandatory": [
34+
"right_command"
35+
],
36+
"optional": [
37+
"any"
38+
]
39+
}
40+
},
41+
"to": [
42+
{
43+
"key_code": "keypad_slash",
44+
"modifiers": [
45+
"right_command"
46+
]
47+
}
48+
],
49+
"type": "basic"
50+
},
51+
{
52+
"from": {
53+
"key_code": "non_us_pound",
54+
"modifiers": {
55+
"mandatory": [
56+
"left_command"
57+
],
58+
"optional": [
59+
"any"
60+
]
61+
}
62+
},
63+
"to": [
64+
{
65+
"key_code": "keypad_slash",
66+
"modifiers": [
67+
"left_command"
68+
]
69+
}
70+
],
71+
"type": "basic"
72+
},
73+
{
74+
"from": {
75+
"key_code": "non_us_pound",
76+
"modifiers": {
77+
"mandatory": [
78+
"right_command"
79+
],
80+
"optional": [
81+
"any"
82+
]
83+
}
84+
},
85+
"to": [
86+
{
87+
"key_code": "keypad_slash",
88+
"modifiers": [
89+
"right_command"
90+
]
91+
}
92+
],
93+
"type": "basic"
94+
}
95+
]
96+
}
97+
]
98+
}
99+
100+

0 commit comments

Comments
 (0)