Add -F to set-environment and source-file; GitHub issue 2359.

pull/2378/head
nicm 2020-09-01 09:19:01 +00:00
parent b2a262e353
commit 60860aced8
3 changed files with 40 additions and 13 deletions

View File

@ -34,8 +34,8 @@ const struct cmd_entry cmd_set_environment_entry = {
.name = "set-environment", .name = "set-environment",
.alias = "setenv", .alias = "setenv",
.args = { "hgrt:u", 1, 2 }, .args = { "Fhgrt:u", 1, 2 },
.usage = "[-hgru] " CMD_TARGET_SESSION_USAGE " name [value]", .usage = "[-Fhgru] " CMD_TARGET_SESSION_USAGE " name [value]",
.target = { 't', CMD_FIND_SESSION, CMD_FIND_CANFAIL }, .target = { 't', CMD_FIND_SESSION, CMD_FIND_CANFAIL },
@ -50,6 +50,8 @@ cmd_set_environment_exec(struct cmd *self, struct cmdq_item *item)
struct cmd_find_state *target = cmdq_get_target(item); struct cmd_find_state *target = cmdq_get_target(item);
struct environ *env; struct environ *env;
const char *name, *value, *tflag; const char *name, *value, *tflag;
char *expand = NULL;
enum cmd_retval retval = CMD_RETURN_NORMAL;
name = args->argv[0]; name = args->argv[0];
if (*name == '\0') { if (*name == '\0') {
@ -63,6 +65,8 @@ cmd_set_environment_exec(struct cmd *self, struct cmdq_item *item)
if (args->argc < 2) if (args->argc < 2)
value = NULL; value = NULL;
else if (args_has(args, 'F'))
value = expand = format_single_from_target(item, args->argv[1]);
else else
value = args->argv[1]; value = args->argv[1];
@ -75,7 +79,8 @@ cmd_set_environment_exec(struct cmd *self, struct cmdq_item *item)
cmdq_error(item, "no such session: %s", tflag); cmdq_error(item, "no such session: %s", tflag);
else else
cmdq_error(item, "no current session"); cmdq_error(item, "no current session");
return (CMD_RETURN_ERROR); retval = CMD_RETURN_ERROR;
goto out;
} }
env = target->s->environ; env = target->s->environ;
} }
@ -83,25 +88,31 @@ cmd_set_environment_exec(struct cmd *self, struct cmdq_item *item)
if (args_has(args, 'u')) { if (args_has(args, 'u')) {
if (value != NULL) { if (value != NULL) {
cmdq_error(item, "can't specify a value with -u"); cmdq_error(item, "can't specify a value with -u");
return (CMD_RETURN_ERROR); retval = CMD_RETURN_ERROR;
goto out;
} }
environ_unset(env, name); environ_unset(env, name);
} else if (args_has(args, 'r')) { } else if (args_has(args, 'r')) {
if (value != NULL) { if (value != NULL) {
cmdq_error(item, "can't specify a value with -r"); cmdq_error(item, "can't specify a value with -r");
return (CMD_RETURN_ERROR); retval = CMD_RETURN_ERROR;
goto out;
} }
environ_clear(env, name); environ_clear(env, name);
} else { } else {
if (value == NULL) { if (value == NULL) {
cmdq_error(item, "no value specified"); cmdq_error(item, "no value specified");
return (CMD_RETURN_ERROR); retval = CMD_RETURN_ERROR;
goto out;
} }
if (args_has(args, 'h')) if (args_has(args, 'h'))
environ_set(env, name, ENVIRON_HIDDEN, "%s", value); environ_set(env, name, ENVIRON_HIDDEN, "%s", value);
else else
environ_set(env, name, 0, "%s", value); environ_set(env, name, 0, "%s", value);
} }
return (CMD_RETURN_NORMAL); out:
free(expand);
return (retval);
} }

View File

@ -36,8 +36,8 @@ const struct cmd_entry cmd_source_file_entry = {
.name = "source-file", .name = "source-file",
.alias = "source", .alias = "source",
.args = { "nqv", 1, -1 }, .args = { "Fnqv", 1, -1 },
.usage = "[-nqv] path ...", .usage = "[-Fnqv] path ...",
.flags = 0, .flags = 0,
.exec = cmd_source_file_exec .exec = cmd_source_file_exec
@ -127,7 +127,7 @@ cmd_source_file_exec(struct cmd *self, struct cmdq_item *item)
struct cmd_source_file_data *cdata; struct cmd_source_file_data *cdata;
struct client *c = cmdq_get_client(item); struct client *c = cmdq_get_client(item);
enum cmd_retval retval = CMD_RETURN_NORMAL; enum cmd_retval retval = CMD_RETURN_NORMAL;
char *pattern, *cwd; char *pattern, *cwd, *expand = NULL;
const char *path, *error; const char *path, *error;
glob_t g; glob_t g;
int i, result; int i, result;
@ -146,7 +146,12 @@ cmd_source_file_exec(struct cmd *self, struct cmdq_item *item)
utf8_stravis(&cwd, server_client_get_cwd(c, NULL), VIS_GLOB); utf8_stravis(&cwd, server_client_get_cwd(c, NULL), VIS_GLOB);
for (i = 0; i < args->argc; i++) { for (i = 0; i < args->argc; i++) {
path = args->argv[i]; if (args_has(args, 'F')) {
free(expand);
expand = format_single_from_target(item, args->argv[i]);
path = expand;
} else
path = args->argv[i];
if (strcmp(path, "-") == 0) { if (strcmp(path, "-") == 0) {
cmd_source_file_add(cdata, "-"); cmd_source_file_add(cdata, "-");
continue; continue;
@ -173,6 +178,7 @@ cmd_source_file_exec(struct cmd *self, struct cmdq_item *item)
free(pattern); free(pattern);
continue; continue;
} }
free(expand);
free(pattern); free(pattern);
for (j = 0; j < g.gl_pathc; j++) for (j = 0; j < g.gl_pathc; j++)

14
tmux.1
View File

@ -1407,7 +1407,7 @@ and
.Fl T .Fl T
show debugging information about jobs and terminals. show debugging information about jobs and terminals.
.It Xo Ic source-file .It Xo Ic source-file
.Op Fl nqv .Op Fl Fnqv
.Ar path .Ar path
.Ar ... .Ar ...
.Xc .Xc
@ -1418,6 +1418,11 @@ Execute commands from one or more files specified by
.Xr glob 7 .Xr glob 7
patterns). patterns).
If If
.Fl F
is present, then
.Ar path
is expanded as a format.
If
.Fl q .Fl q
is given, no error will be returned if is given, no error will be returned if
.Ar path .Ar path
@ -5102,7 +5107,7 @@ section).
Commands to alter and view the environment are: Commands to alter and view the environment are:
.Bl -tag -width Ds .Bl -tag -width Ds
.It Xo Ic set-environment .It Xo Ic set-environment
.Op Fl hgru .Op Fl Fhgru
.Op Fl t Ar target-session .Op Fl t Ar target-session
.Ar name Op Ar value .Ar name Op Ar value
.Xc .Xc
@ -5113,6 +5118,11 @@ If
is used, the change is made in the global environment; otherwise, it is applied is used, the change is made in the global environment; otherwise, it is applied
to the session environment for to the session environment for
.Ar target-session . .Ar target-session .
If
.Fl F
is present, then
.Ar value
is expanded as a format.
The The
.Fl u .Fl u
flag unsets a variable. flag unsets a variable.