change the config parser to use default_orientation instead of new_container_orientation

It’s a shorter and probably more meaningful description as it is not
immediately clear what a container exactly is when first installing i3.
This commit is contained in:
Michael Stapelberg 2011-03-17 17:55:53 +01:00
parent eeb5bdd66f
commit 65b05169d3
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ set[^\n]* { return TOKCOMMENT; }
ipc-socket { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; } ipc-socket { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
ipc_socket { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; } ipc_socket { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
restart_state { BEGIN(BIND_AWS_COND); return TOKRESTARTSTATE; } restart_state { BEGIN(BIND_AWS_COND); return TOKRESTARTSTATE; }
new_container_orientation { return TOK_ORIENTATION; } default_orientation { return TOK_ORIENTATION; }
horizontal { return TOK_HORIZ; } horizontal { return TOK_HORIZ; }
vertical { return TOK_VERT; } vertical { return TOK_VERT; }
auto { return TOK_AUTO; } auto { return TOK_AUTO; }

View File

@ -224,7 +224,7 @@ void parse_file(const char *f) {
%token TOKCOLOR %token TOKCOLOR
%token TOKARROW "→" %token TOKARROW "→"
%token TOKMODE "mode" %token TOKMODE "mode"
%token TOK_ORIENTATION "new_container_orientation" %token TOK_ORIENTATION "default_orientation"
%token TOK_HORIZ "horizontal" %token TOK_HORIZ "horizontal"
%token TOK_VERT "vertical" %token TOK_VERT "vertical"
%token TOK_AUTO "auto" %token TOK_AUTO "auto"