Skip to content

Commit

Permalink
Merge branch 'main' into vs-code-left-option-hide-terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo authored Jun 13, 2024
2 parents 5ca93f6 + c92097f commit 0ac9db6
Show file tree
Hide file tree
Showing 6 changed files with 808 additions and 0 deletions.
6 changes: 6 additions & 0 deletions public/groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -526,9 +526,15 @@
{
"path": "json/xcode.json"
},
{
"path": "json/vs_code_left_ctrl_toggle_sidebar.json"
},
{
"path": "json/vs_code_left_option_toggle_terminal.json"
},
{
"path": "json/vs_code_left_shift_search_symbols.json"
},
{
"path": "json/vscode.json",
"extra_description_path": "extra_descriptions/vscode.json.html"
Expand Down
59 changes: 59 additions & 0 deletions public/json/rk61_for_mac.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"title": "RK61 Keyboard Mac Fix: Tilde and Slash Key Remapping",
"maintainers": [
"juan-28"
],
"rules": [
{
"description": "right_shift + esc → ~",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "up_arrow turn to slash when press with left_command",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "slash"
}
]
}
]
}
]
}
Loading

0 comments on commit 0ac9db6

Please sign in to comment.