Skip to content

Instantly share code, notes, and snippets.

@ryonakae
Created April 9, 2018 04:47
Show Gist options
  • Save ryonakae/6769d14666d7cc5609d64f089f4ea22e to your computer and use it in GitHub Desktop.
Save ryonakae/6769d14666d7cc5609d64f089f4ea22e to your computer and use it in GitHub Desktop.
Spotlight起動時にIMEを英数にするKarabiner-ElementsのComplex Modifications
{
"title": "Spotlight起動時にIMEを英数にする",
"rules": [
{
"description": "Spotlight起動時にIMEを英数にする",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "spacebar",
"modifiers": {
"mandatory": ["command"]
}
},
"to": [
{
"key_code": "spacebar",
"modifiers": ["command"]
},
{
"key_code": "japanese_eisuu"
}
]
}
]
}
]
}
@ryonakae
Copy link
Author

ryonakae commented Apr 9, 2018

  • ~/.config/karabiner/assets/complex_modificationsにjsonを置く
  • Karabiner-Elementsを起動
  • Complex ModificationsRulesAdd ruleから「Spotlight起動時にIMEを英数にする」をEnableにする

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment