Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@maxlath
Last active November 30, 2018 14:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save maxlath/4664d59b9061b1b6c29c to your computer and use it in GitHub Desktop.
Save maxlath/4664d59b9061b1b6c29c to your computer and use it in GitHub Desktop.
[
{ "keys": ["ctrl+,"], "command": "show_panel", "args": {"panel": "console", "toggle": true}},
{ "keys": ["ctrl+t"], "command": "new_file" },
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["f12"], "command": "reindent"},
{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": { "single_line": false } },
{ "keys": ["ctrl+alt+w"], "command": "prompt_select_workspace" },
{ "keys": ["ctrl+b"], "command": "toggle_side_bar" },
{ "keys": ["f5"], "command": "refresh_folder_list" },
{ "keys": ["alt+m"], "command": "markdown_preview", "args": {"target": "browser", "parser":"markdown"} },
{
// One cell
"keys": ["ctrl+shift+w"],
// "keys": ["alt+shift+1"] => changed to fit Terminator unspliter
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1]]
}
},
{
// Two vertical cells
"keys": ["ctrl+shift+e"],
// ex ["alt+shift+2"] => changed to fit Terminator split
"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]]
}
},
{
// Two horizontal cells
"keys": ["ctrl+shift+o"],
// ex ["alt+shift+8"] => changed to fit Terminator split
"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]]
}
},
{
// Two vertical cells + One Big Right
"keys": ["ctrl+shift+l"],
"command": "set_layout",
"args":
{
"cols": [0, 0.6, 1],
"rows": [0, 0.5, 1],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2], [1, 0, 2, 2]]
}
},
{
// Two vertical cells + One Big Left
"keys": ["ctrl+shift+r"],
"command": "set_layout",
"args":
{
"cols": [0, 0.4, 1],
"rows": [0, 0.5, 1],
"cells": [[0, 0, 1, 2], [1, 0, 2, 1], [1, 1, 2, 2]]
}
},
{
// 4 cells
"keys": ["ctrl+shift+ù"],
"command": "set_layout",
"args":
{
"cols": [0, 0.5, 1],
"rows": [0, 0.5, 1],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2], [1, 0, 2, 1], [1, 1, 2, 2]]
}
},
{ "keys": ["ctrl+&"], "command": "focus_group", "args": { "group": 0 } },
{ "keys": ["ctrl+é"], "command": "focus_group", "args": { "group": 1 } },
{ "keys": ["ctrl+\""], "command": "focus_group", "args": { "group": 2 } },
{ "keys": ["ctrl+'"], "command": "focus_group", "args": { "group": 3 } },
{ "keys": ["ctrl+("], "command": "focus_group", "args": { "group": 4 } },
{ "keys": ["ctrl+-"], "command": "focus_group", "args": { "group": 5 } },
{ "keys": ["ctrl+è"], "command": "focus_group", "args": { "group": 6 } },
{ "keys": ["ctrl+_"], "command": "focus_group", "args": { "group": 7 } },
{ "keys": ["ctrl+ç"], "command": "focus_group", "args": { "group": 8 } },
{ "keys": ["ctrl+shift+&"], "command": "move_to_group", "args": { "group": 0 } },
{ "keys": ["ctrl+shift+é"], "command": "move_to_group", "args": { "group": 1 } },
{ "keys": ["ctrl+shift+\""], "command": "move_to_group", "args": { "group": 2 } },
{ "keys": ["ctrl+shift+'"], "command": "move_to_group", "args": { "group": 3 } },
{ "keys": ["ctrl+shift+("], "command": "move_to_group", "args": { "group": 4 } },
{ "keys": ["ctrl+shift+-"], "command": "move_to_group", "args": { "group": 5 } },
{ "keys": ["ctrl+shift+è"], "command": "move_to_group", "args": { "group": 6 } },
{ "keys": ["ctrl+shift+_"], "command": "move_to_group", "args": { "group": 7 } },
{ "keys": ["ctrl+shift+ç"], "command": "move_to_group", "args": { "group": 8 } },
{ "keys": ["ctrl+à"], "command": "focus_side_bar" }
]
@varaskkar
Copy link

Thanks, i liked the ones about splitting the screen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment