Skip to content

Instantly share code, notes, and snippets.

@jviereck
Created April 1, 2010 13:21
Show Gist options
  • Select an option

  • Save jviereck/351787 to your computer and use it in GitHub Desktop.

Select an option

Save jviereck/351787 to your computer and use it in GitHub Desktop.
// The current layout of the customeKeybinding setting
{
"vim": {
"states": {
"start": [
{
"regex": ["([0-9]*)", "0"],
"disallowMatches": [ 1 ],
"exec": "editor moveLineStart"
},
{
"key": "\\$",
"exec": "editor moveLineEnd"
}
]
}
},
"emacs": {
"handleMetaKey": true,
"states": {
"start": [
{
"key": "ctrl_a",
"exec": "editor moveLineStart"
},
{
"key": "ctrl_e",
"exec": "editor moveLineEnd"
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment