Created
July 31, 2014 19:33
-
-
Save michaelphines/1fd7d18d1b2d232963cb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Visual block mode replacement | |
{ | |
"keys": ["ctrl+h"], | |
"command": "move", | |
"args": { | |
"by": "characters", | |
"forward": false, | |
"extend": true | |
}, | |
"context": [{ | |
"key": "setting.command_mode" | |
}] | |
}, { | |
"keys": ["ctrl+l"], | |
"command": "move", | |
"args": { | |
"by": "characters", | |
"forward": true, | |
"extend": true | |
}, | |
"context": [{ | |
"key": "setting.command_mode" | |
}] | |
}, { | |
"keys": ["ctrl+k"], | |
"command": "select_lines", | |
"args": { | |
"forward": false | |
}, | |
"context": [{ | |
"key": "setting.command_mode" | |
}] | |
}, { | |
"keys": ["ctrl+j"], | |
"command": "select_lines", | |
"args": { | |
"forward": true | |
}, | |
"context": [{ | |
"key": "setting.command_mode" | |
}] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment