summaryrefslogtreecommitdiffstats
path: root/server.c
AgeCommit message (Expand)Author
2009-10-13When a session is unattached, reset its activity timer to prevent it lockingNicholas Marriott
2009-10-12Similarly add a tty_cursor_pane function to tidy up most of the calls.Nicholas Marriott
2009-10-12_absolute is redundant, just use tty_region.Nicholas Marriott
2009-10-12Cleanup: use two functions for region setting, one for absolute and one insideNicholas Marriott
2009-10-11Add a pipe-pane command to allow a pane to be piped to a shell command, forNicholas Marriott
2009-10-11Switch run-shell over to queue the command in the background like #().Nicholas Marriott
2009-10-11Collect status from dead jobs and don't invoke the callback until bothNicholas Marriott
2009-10-11Clean up by introducing a wrapper struct for mouse clicks rather than passingNicholas Marriott
2009-10-11Braek some bits out of server_fill_client() that aren't really related toNicholas Marriott
2009-10-10Put all jobs on a global all_jobs list and use that in server.c instead ofNicholas Marriott
2009-10-10Rather than running status-left, status-right and window title #() with popenNicholas Marriott
2009-10-10New option, mouse-select-pane. If on, the mouse may be used to select theNicholas Marriott
2009-10-10Add "grouped sessions" which have independent name, options, current window andNicholas Marriott
2009-10-10Support for individual session idle time locking. May be enabled by turning offNicholas Marriott
2009-10-10Instead of passing a struct pollfd ** around through various functions, buildNicholas Marriott
2009-10-05If no target client is specified to commands which accept one, try to guess theNicholas Marriott
2009-09-24Don't allow locked or suspended clients to limit the size of active clients.Nicholas Marriott
2009-09-23On SIGTERM, just abandon any suspended/locked clients and leave them to it,Nicholas Marriott
2009-09-23Remove the internal tmux locking and instead detach each client and run theNicholas Marriott
2009-09-22Permit multiple prefix keys to be defined, separated by commas, for example:Nicholas Marriott
2009-09-20Regularise some fatal messages.Nicholas Marriott
2009-09-18New option, set-titles-string, to allow the window title to be specified (asNicholas Marriott
2009-09-15The default terminal size should be 80x24, not 80x25.Nicholas Marriott
2009-09-14Nuke unused server_client_index function, pointed out by martynas@.Nicholas Marriott
2009-09-12Doh, trim variables unused now.Nicholas Marriott
2009-09-12Tidy some common code for destroying sessions into a new function.Nicholas Marriott
2009-09-10Permit options such as status-bg to be configured using the entire 256 colourNicholas Marriott
2009-09-07While the display-panes indicator is on screen, make the number keys select theNicholas Marriott
2009-09-07Reference count clients and sessions rather than relying on a saved index forNicholas Marriott
2009-09-07Tiny cleanup.Matthias Kilian
2009-09-05Only redraw all clients once when the backoff timer expires rather than everyNicholas Marriott
2009-09-04Tell the user when sleeping due to password backoff.Nicholas Marriott
2009-09-02When shutting down the server, expect clients to be polite and exit when askedNicholas Marriott
2009-08-31Add a new display-panes command, with two options (display-panes-colour andNicholas Marriott
2009-08-31Don't call tty_free unless the client is a terminal, otherwise tty_init hasn'tNicholas Marriott
2009-08-23When using source-file, run the commands in the context of the source-fileNicholas Marriott
2009-08-18Whoops, getting the comparison the right way round is usually recommended.Nicholas Marriott
2009-08-18options_get_number() is relatively expensive and a check for dead panes happensNicholas Marriott
2009-08-14Reset attributes as well as scroll region before poll(2) and add a big commentNicholas Marriott
2009-08-11Initialise log_fd to -1, prevents spurious disconnection of the client when itNicholas Marriott
2009-08-11Drop the no_stop argument to tty_close and tty_free in favour of a flag in theNicholas Marriott
2009-08-11Switch tmux to use imsg. This is the last major change to make theNicholas Marriott
2009-08-10Reset the attributes after drawing all or part of the screen, and reset theNicholas Marriott
2009-08-07If there is an error in the configuration file, don't just exit(1) as this canNicholas Marriott
2009-07-28Next step towards customisable mode keys: build each default table of keys intoNicholas Marriott
2009-07-24Permit commands to be bound to key presses without the prefix key first. TheNicholas Marriott
2009-07-21Make some functions which return unused values void (mostly found by lint) andNicholas Marriott
2009-07-20Display the number of failed password attempts (if any) when the server isNicholas Marriott
2009-07-19Improved layout code.Nicholas Marriott
2009-07-18Add three new session options: visual-activity, visual-bell, visual-content. IfNicholas Marriott