X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fworkspace.c;h=3d08fa4c8db51031d1fcf005c59e44287a6069a5;hb=5a29e61a4605cb3a1a9333d8e85d9afdc6b51ab1;hp=928f0bd65e88b06e10a012b77a5fd178c344be87;hpb=ec4e6d1cdf5b76c79da2879635e4094e25a01f3d;p=i3%2Fi3 diff --git a/src/workspace.c b/src/workspace.c index 928f0bd6..3d08fa4c 100644 --- a/src/workspace.c +++ b/src/workspace.c @@ -114,14 +114,15 @@ Con *create_workspace_on_output(Output *output, Con *content) { /* We check if this is the workspace * next/prev/next_on_output/prev_on_output/back_and_forth/number command. * Beware: The workspace names "next", "prev", "next_on_output", - * "prev_on_output", "number" and "back_and_forth" are OK, so we check - * before stripping the double quotes */ + * "prev_on_output", "number", "back_and_forth" and "current" are OK, + * so we check before stripping the double quotes */ if (strncasecmp(target, "next", strlen("next")) == 0 || strncasecmp(target, "prev", strlen("prev")) == 0 || strncasecmp(target, "next_on_output", strlen("next_on_output")) == 0 || strncasecmp(target, "prev_on_output", strlen("prev_on_output")) == 0 || strncasecmp(target, "number", strlen("number")) == 0 || - strncasecmp(target, "back_and_forth", strlen("back_and_forth")) == 0) + strncasecmp(target, "back_and_forth", strlen("back_and_forth")) == 0 || + strncasecmp(target, "current", strlen("current")) == 0) continue; if (*target == '"') target++;