Skip to content

Commit c901fdb

Browse files
authored
Merge pull request pqrs-org#1017 from paulchiu/feat/tab-hyper
feat(rule): Tab to hyper when held
2 parents f7031b0 + 961bd7c commit c901fdb

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

public/groups.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,9 @@
949949
},
950950
{
951951
"path": "json/open_control_center_with_f8.json"
952+
},
953+
{
954+
"path": "json/tab_hold_hyper.json"
952955
}
953956
]
954957
},

public/json/tab_hold_hyper.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"title": "Tab to Hyper When Held",
3+
"rules": [
4+
{
5+
"description": "Map Tab to Hyper when held",
6+
"manipulators": [
7+
{
8+
"type": "basic",
9+
"from": {
10+
"key_code": "tab",
11+
"modifiers": {
12+
"optional": [
13+
"any"
14+
]
15+
}
16+
},
17+
"to_if_alone": [
18+
{
19+
"key_code": "tab"
20+
}
21+
],
22+
"to_if_held_down": [
23+
{
24+
"key_code": "left_shift",
25+
"modifiers": [
26+
"left_command",
27+
"left_control",
28+
"left_option"
29+
]
30+
}
31+
]
32+
}
33+
]
34+
}
35+
]
36+
}

0 commit comments

Comments
 (0)