Skip to content

Instantly share code, notes, and snippets.

@3110
Last active October 27, 2024 17:39
Show Gist options
  • Save 3110/26825c67760f75f8c10e70c788586396 to your computer and use it in GitHub Desktop.
Save 3110/26825c67760f75f8c10e70c788586396 to your computer and use it in GitHub Desktop.
PowerPoint for macOS上でmacSKKを使うときにひらがなモード(Ctrl-j) を有効にするKarabinar-Elements設定
{
"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