Skip to content

Commit 07b896c

Browse files
committed
Fix incorect keybinds
The windows-pc-colemark-jetbrains.json file has multiple erroneous keybinds. The first describes changing the End key to instead perform as Control+E, however its implementation erroneously mapped to "k" and not "e". The second describes changing Reload behaviour of Command+R to Control+R and changing F5 to Command+R, however its implementation erroneously used "s" for both of these instead of "r".
1 parent 8a8b357 commit 07b896c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

public/json/windows-pc-colemak-jetbrains.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
},
267267
"to": [
268268
{
269-
"key_code": "k",
269+
"key_code": "e",
270270
"modifiers": [
271271
"left_control"
272272
]
@@ -1239,7 +1239,7 @@
12391239
}
12401240
],
12411241
"from": {
1242-
"key_code": "s",
1242+
"key_code": "r",
12431243
"modifiers": {
12441244
"mandatory": [
12451245
"control"
@@ -1251,7 +1251,7 @@
12511251
},
12521252
"to": [
12531253
{
1254-
"key_code": "s",
1254+
"key_code": "r",
12551255
"modifiers": [
12561256
"left_command"
12571257
]
@@ -1316,7 +1316,7 @@
13161316
},
13171317
"to": [
13181318
{
1319-
"key_code": "s",
1319+
"key_code": "r",
13201320
"modifiers": [
13211321
"left_command"
13221322
]
@@ -2062,4 +2062,4 @@
20622062
]
20632063
}
20642064
]
2065-
}
2065+
}

0 commit comments

Comments
 (0)