Skip to content

Instantly share code, notes, and snippets.

@ktakayama
Created July 3, 2017 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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"
}
]
}
]
}
]
}
@ktakayama
Copy link
Author

Karabiner Elements で日本語キーボードの英数キーを単独で押した時にコマンドキーとして送信します。

↓ このURLをブラウザにコピペして貼り付けたらインポートできます。
karabiner://karabiner/assets/complex_modifications/import?url=https%3A%2F%2Fgist.githubusercontent.com%2Fktakayama%2F6bb0d37f90ad46117c00fc64b6621a16%2Fraw%2Ff9ffd9b701ae191ec3bed8e5ab87f31d0c7c732c%2Feisuu_to_command.json

@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