diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-14 23:18:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-14 23:18:39 +0300 |
commit | 2a9a07e521add42e7580580fc59904cb03b6bbe6 (patch) | |
tree | 35bfe563a8259253bd4780f01a4ca628ee8cc48f | |
parent | code style (diff) | |
download | linux-home-2a9a07e521add42e7580580fc59904cb03b6bbe6.tar.gz linux-home-2a9a07e521add42e7580580fc59904cb03b6bbe6.zip |
Sublime Text 3: vertical selection shortcuts
-rw-r--r-- | .Sublime Text 3/Default (Windows).sublime-keymap | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.Sublime Text 3/Default (Windows).sublime-keymap b/.Sublime Text 3/Default (Windows).sublime-keymap index 1609b63..6722804 100644 --- a/.Sublime Text 3/Default (Windows).sublime-keymap +++ b/.Sublime Text 3/Default (Windows).sublime-keymap @@ -1,6 +1,6 @@ [ - { - "keys": ["f5"], - "command": "revert" - } + { "keys": ["f5"], "command": "revert" }, + + { "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} }, + { "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} }, ] |