#やること
- launchpad開いたときに英数入力モードに
#環境
- MacBook 12インチ
- JIS配列
#うざい日本語入力
Launchpadを使ってサクッとアプリを立ち上げたいのに.....
うおおおおおおおおおおおい
ってならないための設定
{
"title": "英数モードに切り替え",
"rules": [
{
"description": "launchpad開いた時",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "launchpad"
},
"to": [
{ "key_code": "launchpad" },
{ "key_code" : "lang2" }
]
}
]
}
]
}
#メモ
- トラックパッドで開いたときは適用されません
#おまけ
-
cmmand+l
時も英数入力に切り替わるようにすると結構便利
{
"description": "command+l時に英数入力にする(url入力)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "l",
"modifiers": {
"mandatory":["left_command"]
}
},
"to": [
{
"key_code": "l",
"modifiers": "left_command"
},
{ "key_code" : "lang2" }
]
}
]
}
#参考