86 lines
2.2 KiB
Plaintext
86 lines
2.2 KiB
Plaintext
// https://docs.sublimetext.io/reference/commands.html
|
|
// https://docs.sublimetext.io/reference/key_bindings.html
|
|
[
|
|
// привычные комбинации из vscode
|
|
{ "keys": ["ctrl+k", "ctrl+o"], "command": "prompt_open_folder" },
|
|
{ "keys": ["ctrl+f2"], "command": "find_all_under"},
|
|
|
|
// переназначено на ctrl с alt, чтоб не конфликтоввать со сменой раскладки
|
|
{
|
|
"keys": ["ctrl+shift+1"],
|
|
"command": "set_layout",
|
|
"args":
|
|
{
|
|
"cols": [0.0, 1.0],
|
|
"rows": [0.0, 1.0],
|
|
"cells": [[0, 0, 1, 1]]
|
|
}
|
|
},
|
|
{
|
|
"keys": ["ctrl+shift+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+shift+3"],
|
|
"command": "set_layout",
|
|
"args":
|
|
{
|
|
"cols": [0.0, 0.33, 0.66, 1.0],
|
|
"rows": [0.0, 1.0],
|
|
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
|
|
}
|
|
},
|
|
{
|
|
"keys": ["ctrl+shift+4"],
|
|
"command": "set_layout",
|
|
"args":
|
|
{
|
|
"cols": [0.0, 0.25, 0.5, 0.75, 1.0],
|
|
"rows": [0.0, 1.0],
|
|
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1], [3, 0, 4, 1]]
|
|
}
|
|
},
|
|
{
|
|
"keys": ["ctrl+shift+8"],
|
|
"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]]
|
|
}
|
|
},
|
|
{
|
|
"keys": ["ctrl+shift+9"],
|
|
"command": "set_layout",
|
|
"args":
|
|
{
|
|
"cols": [0.0, 1.0],
|
|
"rows": [0.0, 0.33, 0.66, 1.0],
|
|
"cells": [[0, 0, 1, 1], [0, 1, 1, 2], [0, 2, 1, 3]]
|
|
}
|
|
},
|
|
{
|
|
"keys": ["ctrl+shift+5"],
|
|
"command": "set_layout",
|
|
"args":
|
|
{
|
|
"cols": [0.0, 0.5, 1.0],
|
|
"rows": [0.0, 0.5, 1.0],
|
|
"cells":
|
|
[
|
|
[0, 0, 1, 1], [1, 0, 2, 1],
|
|
[0, 1, 1, 2], [1, 1, 2, 2]
|
|
]
|
|
}
|
|
},
|
|
]
|
|
|
|
|