Created
May 28, 2018 02:00
-
-
Save 2GMon/8106a65f0094e20bd2b494bed538a0a0 to your computer and use it in GitHub Desktop.
Firefoxのタブ切り替え用karabiner-element設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Firefox Tab Manipulater", | |
"rules": [ | |
{ | |
"description": "Firefox Tab Manipulation", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "t" | |
}, | |
"to": [ | |
{ | |
"set_variable": { | |
"name": "firefox_tab_manipulation_mode", | |
"value": 1 | |
} | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "t" | |
} | |
], | |
"to_after_key_up": [ | |
{ | |
"set_variable": { | |
"name": "firefox_tab_manipulation_mode", | |
"value": 0 | |
} | |
} | |
], | |
"conditions": [ | |
{ | |
"type": "frontmost_application_if", | |
"bundle_identifiers": [ | |
"^org\\.mozilla\\.firefox" | |
] | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "h" | |
}, | |
"to": [ | |
{ | |
"key_code": "tab", | |
"modifiers": [ "control", "shift" ] | |
} | |
], | |
"conditions": [ | |
{ | |
"type": "variable_if", | |
"name": "firefox_tab_manipulation_mode", | |
"value": 1 | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "l" | |
}, | |
"to": [ | |
{ | |
"key_code": "tab", | |
"modifiers": [ "control" ] | |
} | |
], | |
"conditions": [ | |
{ | |
"type": "variable_if", | |
"name": "firefox_tab_manipulation_mode", | |
"value": 1 | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment