Skip to content

Instantly share code, notes, and snippets.

@ktakayama
Created July 3, 2017 02:00
Show Gist options
  • Save ktakayama/6bb0d37f90ad46117c00fc64b6621a16 to your computer and use it in GitHub Desktop.
Save ktakayama/6bb0d37f90ad46117c00fc64b6621a16 to your computer and use it in GitHub Desktop.
英数キーをコマンドキーにする
{
"title": "英数キーをコマンドキーにする",
"rules": [
{
"description": "英数キーを単体で押したときに、コマンドキーキーを送信する。",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "japanese_eisuu",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_command"
}
],
"to_if_alone": [
{
"key_code": "japanese_eisuu"
}
]
}
]
}
]
}
@tomo-cps
Copy link

tomo-cps commented Apr 3, 2023

👍

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