Created
January 21, 2020 18:14
-
-
Save JCash/4b2f6df266653e6a0dc951de5916ccd4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// 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