Skip to content

Instantly share code, notes, and snippets.

@poguez
Created February 17, 2020 09:50
Show Gist options
  • Save poguez/58d9aa9c3a8a7b9c72bf71f4fa3ba267 to your computer and use it in GitHub Desktop.
Save poguez/58d9aa9c3a8a7b9c72bf71f4fa3ba267 to your computer and use it in GitHub Desktop.
Map Left Control to Escape and Control for HHKB Lite
{
"title": "Change Left Control to Esc and Control",
"rules": [
{
"description": "Post Esc if Control is tapped, Control if held.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "escape"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment