Skip to content

Instantly share code, notes, and snippets.

@JCash
Created January 21, 2020 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JCash/4b2f6df266653e6a0dc951de5916ccd4 to your computer and use it in GitHub Desktop.
Save JCash/4b2f6df266653e6a0dc951de5916ccd4 to your computer and use it in GitHub Desktop.
[
// Fix End of line
{ "keys": ["ctrl+right"], "command": "move_to", "args": {"to": "hardeol", "extend": false} }
,{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "hardeol", "extend": false} }
// Fix Beginning of line
,{ "keys": ["ctrl+left"], "command": "move_to", "args": {"to": "hardbol", "extend": false} }
,{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "hardbol", "extend": false} }
// Fix end of line + select
,{ "keys": ["ctrl+shift+right"], "command": "move_to", "args": {"to": "hardeol", "extend": true} }
// Fix beginning of line + select
,{ "keys": ["ctrl+shift+left"], "command": "move_to", "args": {"to": "hardbol", "extend": true} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment