Added CTRL+` support for Linux.

This commit is contained in:
casey 2016-06-27 21:43:37 -07:00
parent 7258255d92
commit 86f523089c

View File

@ -307,7 +307,7 @@ int main(int argc, char* argv[])
else if (kn == "KEY_RESIZE") {
resizeAt = now() + REDRAW_DEBOUNCE_MS;
}
else if (kn == "M-`" || kn == "M-~" || kn == "M-bquote") {
else if (kn == "M-`" || kn == "M-~" || kn == "M-bquote" || kn == "^@") {
changeLayout(state, consoleLayout);
}
else if (kn == "M-a") {