Skip to content

Instantly share code, notes, and snippets.

@onigra
Created September 13, 2017 11:01
Show Gist options
  • Save onigra/3778918b134d70267ee25c0a67c9399b to your computer and use it in GitHub Desktop.
Save onigra/3778918b134d70267ee25c0a67c9399b to your computer and use it in GitHub Desktop.
Karabiner-Elementsで option + a で 未読チャネルにジャンプする
{
"title": "For Slack option + a move unread channel",
"rules": [
{
"description": "Remap left_option + left_shift + down_arrow to left_option + a",
"manipulators": [
{
"from": {
"key_code": "a",
"modifiers": {
"mandatory": [
"left_option"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "down_arrow",
"modifiers": [
"left_option",
"left_shift"
]
}
],
"conditions": [
{
"type": "frontmost_application_if",
"bundle_identifiers": [
"com.tinyspeck.slackmacgap"
]
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment