Skip to content

Instantly share code, notes, and snippets.

@michaelphines
Created July 31, 2014 19:33
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 michaelphines/1fd7d18d1b2d232963cb to your computer and use it in GitHub Desktop.
Save michaelphines/1fd7d18d1b2d232963cb to your computer and use it in GitHub Desktop.
// 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