I’m used to the combination of “ctrl+e,1”, “ctrl+e,2”, etc… to manage my layout (default in QtCreator). With sublime, there is already a default for “ctrl+e” that interrupts the sequence. I have tried setting “ctrl+e” in my default to the commands “noop” and “unbound” without success. Is there a way to do this?
example:
[
{ “keys”: [“ctrl+e”], “command”: “unbound” },
{ “keys”: [“ctrl+e,1”], “command”: “set_layout”, “args”: { “cols”: [0, 1], “rows”: [0, 1], “cells”: [[0, 0, 1, 1]] } },
{ “keys”: [“ctrl+e,2”], “command”: “set_layout”, “args”: { “cols”: [0, 0.5, 1], “rows”: [0, 1], “cells”: [[0, 0, 1, 1], [1, 0, 2, 1]] } }
]