tvl-depot/Default (OSX).sublime-keymap

41 lines
1,022 B
Text
Raw Normal View History

2016-06-22 22:36:54 +02:00
[
{ "keys": ["super+\\"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{
"keys": ["super+enter"],
"command": "run_macro_file",
"args": {
"file": "res://Packages/Default/Add Line Before.sublime-macro"
}
},
{
"keys": ["j", "j"],
"command": "_enter_normal_mode",
"args": { "mode": "mode_insert" },
"context": [{"key": "vi_insert_mode_aware"}]
},
{
"keys": ["super+o"],
"command": "show_panel",
"args": { "panel": "console", "toggle": true }
},
{
"keys": ["super+shift+o"],
"command": "reveal_in_side_bar"
2016-06-23 16:45:43 +02:00
},
{
"keys": ["super+shift+r"],
"command": "repl_open",
"args": {
"cmd": ["python", "-i", "-u"],
"cwd": "$file_path",
"encoding": "utf8",
"extend_env": { "PYTHONIOENCODING": "utf-8" },
"external_id": "python",
"syntax": "Packages/Python/Python.tmLanguage",
"type": "subprocess"
}
2016-06-22 22:36:54 +02:00
}
]