[
{ "keys": ["alt+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["ctrl+alt+c"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["ctrl+alt+m"], "command": "toggle_menu" },
{ "keys": ["ctrl+alt+t"], "command": "toggle_tabs" },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+alt+q"], "command": "alignment" },
// Change view split to left in a 2 Column mode
{
"keys": ["super+alt+right"],
"command": "run_multiple",
"args":
{
"commands": [
{
"command": "set_layout",
"args":
{
"cols": [0.0, 0.90, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
},
"context": "window"
},
{
"command": "focus_group",
"args": { "group": 0 },
"context": "window"
}
]
}
},
// Change view split to right in a 2 Column mode
{
"keys": ["super+alt+left"],
"command": "run_multiple",
"args":
{
"commands": [
{
"command": "set_layout",
"args":
{
"cols": [0.0, 0.10, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
},
"context": "window"
},
{
"command": "focus_group",
"args": { "group": 1 },
"context": "window"
}
]
}
},
// Change view split to the middle in a 2 Column mode
{
"keys": ["super+alt+up"],
"command": "run_multiple",
"args":
{
"commands": [
{
"command": "set_layout",
"args":
{
"cols": [0.0, 0.50, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
},
"context": "window"
},
{
"command": "focus_group",
"args": { "group": 1 },
"context": "window"
}
]
}
},
]