Skip to content

Instantly share code, notes, and snippets.

@carlzulauf
Created November 24, 2011 02:32
Show Gist options
  • Save carlzulauf/1390503 to your computer and use it in GitHub Desktop.
Save carlzulauf/1390503 to your computer and use it in GitHub Desktop.
Sublime Text 2 custom keymap file
// This goes in ~/.config/sublime-text-2/Packages/User/Default (Linux).sublime-keymap
[
{ "keys": ["ctrl+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["alt+shift+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
{ "keys": ["alt+shift+down"], "command": "scroll_lines", "args": {"amount": -1.0 } }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment