Skip to content

Instantly share code, notes, and snippets.

@michaelphines
Created July 31, 2014 19:33

Revisions

  1. michaelphines created this gist Jul 31, 2014.
    42 changes: 42 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,42 @@
    // 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"
    }]
    },