Created
September 20, 2017 04:55
-
-
Save sgur/f8f231a618ee954545c0738db457a6be to your computer and use it in GitHub Desktop.
Locate under ~/.config/karabiner/assets/complex_modifications/
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": "AquaSKK on iTerm2 / Terminal.app", | |
"rules": [ | |
{ | |
"description": "Change left_ctrl + j to Hiragana on iTerm2", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.googlecode\\.iterm2$", | |
"^com\\.apple\\.Terminal$" | |
], | |
"type": "frontmost_application_if" | |
} | |
], | |
"type": "basic", | |
"from": { | |
"key_code": "j", | |
"modifiers": { | |
"mandatory": ["left_control"], | |
"optional": ["any"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "japanese_kana", | |
"modifiers": [ | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment