Merge pull request #966 from thejan2009/layout-toggle

Change layout toggle to default on horizontal split
This commit is contained in:
Drew DeVault 2016-11-06 09:03:59 -07:00 committed by GitHub
commit 5c042c55ce

View file

@ -49,10 +49,10 @@ struct cmd_results *cmd_layout(int argc, char **argv) {
} else if (strcasecmp(argv[0], "splitv") == 0) { } else if (strcasecmp(argv[0], "splitv") == 0) {
parent->layout = L_VERT; parent->layout = L_VERT;
} else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) { } else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) {
if (parent->layout == L_VERT) { if (parent->layout == L_HORIZ) {
parent->layout = L_HORIZ;
} else {
parent->layout = L_VERT; parent->layout = L_VERT;
} else {
parent->layout = L_HORIZ;
} }
} }
} }