diff options
author | 2017-02-03 11:57:27 +0000 | |
---|---|---|
committer | 2017-02-03 11:57:27 +0000 | |
commit | 134e9c117fe89ae8d41181b1409e96985cbe0b1a (patch) | |
tree | 8aa142897fcc1e7ce52926beed78e882da4a2316 /usr.bin/tmux/cmd-list-keys.c | |
parent | Set the context id and counter offset to a known value. Enable access (diff) | |
download | wireguard-openbsd-134e9c117fe89ae8d41181b1409e96985cbe0b1a.tar.xz wireguard-openbsd-134e9c117fe89ae8d41181b1409e96985cbe0b1a.zip |
Add a window or pane id "tag" to each format tree and use it to separate
jobs, this means that if the same job is used for different windows or
panes (for example in pane-border-format), it will be run separately for
each pane.
Diffstat (limited to 'usr.bin/tmux/cmd-list-keys.c')
-rw-r--r-- | usr.bin/tmux/cmd-list-keys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-list-keys.c b/usr.bin/tmux/cmd-list-keys.c index 9d49b337b36..8a378e47050 100644 --- a/usr.bin/tmux/cmd-list-keys.c +++ b/usr.bin/tmux/cmd-list-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-list-keys.c,v 1.41 2017/01/24 21:50:22 nicm Exp $ */ +/* $OpenBSD: cmd-list-keys.c,v 1.42 2017/02/03 11:57:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -144,7 +144,7 @@ cmd_list_keys_commands(struct cmd *self, struct cmdq_item *item) "#{command_list_usage}"; } - ft = format_create(item, 0); + ft = format_create(item, FORMAT_NONE, 0); format_defaults(ft, NULL, NULL, NULL, NULL); for (entryp = cmd_table; *entryp != NULL; entryp++) { |