Skip to content

Commit

Permalink
update emacs_key_bindings.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo committed Jul 9, 2017
1 parent 24a0793 commit 5090901
Showing 1 changed file with 3 additions and 86 deletions.
89 changes: 3 additions & 86 deletions examples/emacs_key_bindings.json
Original file line number Diff line number Diff line change
@@ -1,86 +1,3 @@
{
"profiles": [
{
"complex_modifications": {
"rules": [
{
"manipulators": [
{
"description": "Change control+[ to escape.",
"from": {
"key_code": "open_bracket",
"modifiers": {
"mandatory": [
"control"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "escape"
}
],
"type": "basic"
},
{
"description": "Change control+h to delete_or_backspace.",
"from": {
"key_code": "h",
"modifiers": {
"mandatory": [
"control"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "delete_or_backspace"
}
],
"type": "basic"
},
{
"description": "Change control+u to delete-to-beginning-of-line",
"from": {
"key_code": "u",
"modifiers": {
"mandatory": [
"control"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "a",
"modifiers": [
"left_control",
"left_shift"
]
},
{
"key_code": "delete_or_backspace"
},
{
"key_code": "vk_none"
}
],
"type": "basic"
}
]
}
]
},
"name": "Profile",
"selected": true
}
]
}
See follows:
* json file: https://github.com/pqrs-org/KE-complex_modifications/blob/master/docs/json/emacs_key_bindings.json
* src file: https://github.com/pqrs-org/KE-complex_modifications/blob/master/src/json/emacs_key_bindings.json.erb

0 comments on commit 5090901

Please sign in to comment.