Skip to content

Instantly share code, notes, and snippets.

@john-shine
Created May 3, 2019 05:12
Show Gist options
  • Save john-shine/fe820e3bc22fccb2a5cd9f5228ad3656 to your computer and use it in GitHub Desktop.
Save john-shine/fe820e3bc22fccb2a5cd9f5228ad3656 to your computer and use it in GitHub Desktop.
launch voice input or delete_or_backspace by application key
"global": {
......
},
"profiles": [{
"complex_modifications": {
"parameters": {
......
"basic.to_if_held_down_threshold_milliseconds": 500
},
"rules": [
{
"manipulators": [{
"description": "launch voice input or delete_or_backspace",
"from": {
"key_code": "application"
},
"to_if_held_down": [
{
"key_code": "fn",
"halt": true
},
{
"key_code": "fn"
}
],
"to_after_key_up": [{
"key_code": "delete_or_backspace"
}
],
"type": "basic"
}]
}
]
}
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment