Last active
October 27, 2024 17:39
-
-
Save 3110/26825c67760f75f8c10e70c788586396 to your computer and use it in GitHub Desktop.
PowerPoint for macOS上でmacSKKを使うときにひらがなモード(Ctrl-j) を有効にするKarabinar-Elements設定
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
{ | |
"description": "PowerPoint for macOS上でmacSKKを使うときにひらがなモード(Ctrl-j)を有効にする", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.microsoft\\.Powerpoint" | |
], | |
"type": "frontmost_application_if" | |
}, | |
{ | |
"input_sources": [{ "language": "ja" }], | |
"type": "input_source_if" | |
} | |
], | |
"from": { | |
"key_code": "j", | |
"modifiers": { "mandatory": ["control"] } | |
}, | |
"to": [ | |
{ | |
"description": "macSKKであらかじめCtrl+Option+jにひらがなモードを割り当てておく", | |
"key_code": "j", | |
"modifiers": ["control", "option"] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment