diff options
author | nicm <nicm> | 2016-10-16 17:55:14 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-10-16 17:55:14 +0000 |
commit | ddc4512d2e0eda6c705e002cb5dbf80719d709e1 (patch) | |
tree | cd9ff99f4b1ccb3e76ab99633d59772ae07c3092 /tmux.1 | |
parent | bfe14b531267f3762a518f98b72a3148a134396a (diff) | |
download | rtmux-ddc4512d2e0eda6c705e002cb5dbf80719d709e1.tar.gz rtmux-ddc4512d2e0eda6c705e002cb5dbf80719d709e1.tar.bz2 rtmux-ddc4512d2e0eda6c705e002cb5dbf80719d709e1.zip |
Rewrite command queue handling. Each client still has a command queue,
but there is also now a global command queue. Instead of command queues
being dispatched on demand from wherever the command happens to be
added, they are now all dispatched from the top level server
loop. Command queues may now also include callbacks as well as commands,
and items may be inserted after the current command as well as at the end.
This all makes command queues significantly more predictable and easier
to use, and avoids the complex multiple nested command queues used by
source-file, if-shell and friends.
A mass rename of struct cmdq to a better name (cmdq_item probably) is
coming.
Diffstat (limited to 'tmux.1')
-rw-r--r-- | tmux.1 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3456,8 +3456,7 @@ The following variables are available, where appropriate: .It Li "client_tty" Ta "" Ta "Pseudo terminal of client" .It Li "client_utf8" Ta "" Ta "1 if client supports utf8" .It Li "client_width" Ta "" Ta "Width of client" -.It Li "command_hooked" Ta "" Ta "Name of command hooked, if any" -.It Li "command_name" Ta "" Ta "Name of command in use, if any" +.It Li "command" Ta "" Ta "Name of command in use, if any" .It Li "command_list_name" Ta "" Ta "Command name if listing commands" .It Li "command_list_alias" Ta "" Ta "Command alias if listing commands" .It Li "command_list_usage" Ta "" Ta "Command usage if listing commands" @@ -3467,6 +3466,7 @@ The following variables are available, where appropriate: .It Li "history_bytes" Ta "" Ta "Number of bytes in window history" .It Li "history_limit" Ta "" Ta "Maximum window history lines" .It Li "history_size" Ta "" Ta "Size of history in bytes" +.It Li "hook" Ta "" Ta "Name of running hook, if any" .It Li "host" Ta "#H" Ta "Hostname of local host" .It Li "host_short" Ta "#h" Ta "Hostname of local host (no domain name)" .It Li "insert_flag" Ta "" Ta "Pane insert flag" |