summaryrefslogtreecommitdiffstats
path: root/cmd-confirm-before.c
AgeCommit message (Collapse)Author
2009-11-14Sync OpenBSD patchset 539:Tiago Cunha
Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the command entry structs and a couple of functions to check/set the flags.
2009-08-24Sync OpenBSD patchset 289:Tiago Cunha
The cursession member in struct cmd_ctx is always either curclient->session or NULL when curclient is also NULL, so just eliminate it.
2009-08-16Sync OpenBSD patchset 261:Tiago Cunha
Switch the prompt code to return an empty string when the user enters no response and reserve NULL for an explicit cancel. Change all callbacks to treat them the same so no functional change. Also add cancel key bindings to emacs mode which were missing.
2009-07-28Sync OpenBSD patchset 181:Tiago Cunha
Make all messages sent between the client and server fixed size. This is the first of two changes to make the protocol more resilient and less sensitive to other changes in the code, particularly with commands. The client now packs argv into a buffer and sends it to the server for parsing, rather than doing it itself and sending the parsed command data. As a side-effect this also removes a lot of now-unused command marshalling code. Mixing a server without this change and a client with or vice versa will cause tmux to hang or crash, please ensure that tmux is entirely killed before upgrading.
2009-07-22Sync OpenBSD patchset 154:Tiago Cunha
Nix a few unused attributes on arguments which are no longer unused.
2009-07-17Memory could be leaked if a second prompt or message appeared while another wasNicholas Marriott
still present, so add a separate prompt free callback and make the _clear function responsible for calling it if necessary (rather than the individual
2009-07-15Make status_message_set a variadic printf-like function. No functional change -Nicholas Marriott
helpful for a couple of things coming soon.
2009-07-14Having fixed flags for single-character getopt options is a bit hard toNicholas Marriott
maintain and is only going to get worse as more are used. So instead, add a new uint64_t member to cmd_entry which is a bitmask of upper and lowercase options accepted by the command. This means new single character options can be used without the need to add it explicitly to the list.
2009-04-28Simplify the code by using the generic _target functions.Tiago Cunha
2009-04-27Use cmd_prarg to include "s when necessary.Nicholas Marriott
2009-04-27Convert hidden flag to a full flags word for the status line and add a flag toNicholas Marriott
accept after only one key. Use this so don't need to press enter after y/n for confirm-before.
2009-04-27- confirm-before command.Tiago Cunha
- Bound "&" and "x" by default to confirm-before "kill-window" and confirm-before "kill-pane", respectively.