Hi, "Joerg Jaspert" <[email protected]> writes:
> next oddity i found is list-commands, which only works when a tmux > session exists. Yet I see no reason for this limitation, as, as far as > I see, the output doesn't depend on a running session (unlike > list-sessions for example). First of all, the output *does* depend on the running server. If your client and server are not in sync (because you upgraded the client but not the server), only the server can know the list of supported commands. More generally, everything in tmux is implemented in the server, the client is really dumb and just sends to the server any arguments you give it, along with some file descriptors. Command parsing and dispatch is done in the server, and list-commands is not special in that regard. So you really do need a running server for list-commands to work. -- Romain Francoise <[email protected]> http://people.debian.org/~rfrancoise/ -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

