Skip to content

Instantly share code, notes, and snippets.

@slow-is-fast
Created December 29, 2018 06:46
Show Gist options
  • Save slow-is-fast/3d741e292f88e8047698005d101ad5a5 to your computer and use it in GitHub Desktop.
Save slow-is-fast/3d741e292f88e8047698005d101ad5a5 to your computer and use it in GitHub Desktop.
[
/*============= Emacs Style =============*/
{ "keys": ["ctrl+b"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["ctrl+f"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward":
false} },
{ "keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward":
true} },
{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+l"], "command": "show_at_center" },
/*============= End Emacs Style =============*/
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment