Last active
March 28, 2020 15:56
-
-
Save pkayokay/09341d9c820e89ff86a1338741ea6c33 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
[ | |
{ "keys": ["option+space"], "command": "toggle_terminus_panel" }, | |
{ "keys": ["alt+left"], "command": "terminus_keypress", "args": {"key": "b", "alt": true}, "context": [{"key": "terminus_view"}] }, | |
{ "keys": ["alt+right"], "command": "terminus_keypress", "args": {"key": "f", "alt": true}, "context": [{"key": "terminus_view"}] }, | |
{ "keys": ["option+k"], "command": "terminus_reset", "args": {"key": "f", "alt": true}, "context": [{"key": "terminus_view"}] }, | |
{ "keys": ["option+shift+r"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["ctrl+left"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["ctrl+right"], "command": "move_to", "args": {"to": "eol", "extend": false} }, | |
{ "keys": ["ctrl+1"], "command": "select_by_index", "args": { "index": 0 } }, | |
{ "keys": ["ctrl+2"], "command": "select_by_index", "args": { "index": 1 } }, | |
{ "keys": ["ctrl+3"], "command": "select_by_index", "args": { "index": 2 } }, | |
{ "keys": ["ctrl+4"], "command": "select_by_index", "args": { "index": 3 } }, | |
{ "keys": ["ctrl+5"], "command": "select_by_index", "args": { "index": 4 } }, | |
{ "keys": ["ctrl+6"], "command": "select_by_index", "args": { "index": 5 } }, | |
{ "keys": ["ctrl+7"], "command": "select_by_index", "args": { "index": 6 } }, | |
{ "keys": ["ctrl+8"], "command": "select_by_index", "args": { "index": 7 } }, | |
{ "keys": ["ctrl+9"], "command": "select_by_index", "args": { "index": 8 } }, | |
{ "keys": ["ctrl+0"], "command": "select_by_index", "args": { "index": 9 } }, | |
{ "keys": ["ctrl+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard BOL.sublime-macro"} }, | |
{ "keys": ["alt+left"], "command": "move", "args": {"by": "words", "forward": false} }, | |
{ "keys": ["alt+right"], "command": "move", "args": {"by": "word_ends", "forward": true} }, | |
{ | |
"keys": ["alt+ctrl+1"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1]] | |
} | |
}, | |
{ | |
"keys": ["alt+ctrl+2"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 0.5, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]] | |
} | |
}, | |
{ | |
"keys": ["ctrl+\\"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 1.0], | |
"rows": [0.0, 0.5, 1.0], | |
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]] | |
} | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment