summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
2009-08-13When creating a new session from the command-line where there is an externalNicholas Marriott
2009-08-12A tty context must not be modified as it may be reused to update multipleNicholas Marriott
2009-08-11Have the client pass its stdin fd to the server when identifying itself andNicholas Marriott
2009-08-11Add a TTY_OPENED flag and tidy a little.Nicholas 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-11Add flags for 1+2 and 2 arguments to the generic target code, use it forNicholas Marriott
2009-08-08Infrastructure and commands to manage the environment for processes startedNicholas Marriott
2009-08-08Add a flags member to the grid_line struct and use it to differentiate linesNicholas Marriott
2009-08-08Change the way the grid is stored, previously it was:Nicholas Marriott
2009-08-07If there is an error in the configuration file, don't just exit(1) as this canNicholas Marriott
2009-08-07Using the alternative screen (smcup/rmcup) should also preserve the currentNicholas Marriott
2009-08-04Add a -a flag to set-option and set-window-option to append to an existingNicholas Marriott
2009-08-03Add a terminal-overrides session option allowing individual terminfo(5) entriesNicholas Marriott
2009-07-30There aren't many client message types or code to handle them so get rid of theNicholas Marriott
2009-07-30Merge pane number into the target specification for pane commands. Instead ofNicholas Marriott
2009-07-29Rename struct hdrtype to msgtype which is a better name and can be used evenNicholas Marriott
2009-07-28Final pieces of mode key rebinding: bind-key and unbind-key now accept a -tNicholas Marriott
2009-07-28Next step towards customisable mode keys: build each default table of keys intoNicholas Marriott
2009-07-28If select-layout is not given an argument, repply the last layout used in theNicholas Marriott
2009-07-27Remove an unused entry in the mode keys command enum and renameNicholas Marriott
2009-07-27Change mode key bindings from big switches into a set of tables. Rather thanNicholas Marriott
2009-07-27Get rid of empty mode_key_free function.Nicholas Marriott
2009-07-27Add a key to delete to end of line at the prompt (^K in emacs mode, C/D in vi).Nicholas Marriott
2009-07-26Detect backspace by looking at termios VERASE and translate it into \177 (whichNicholas Marriott
2009-07-26Make all messages sent between the client and server fixed size.Nicholas Marriott
2009-07-24Permit commands to be bound to key presses without the prefix key first. TheNicholas Marriott
2009-07-23Tidy client message return slightly: convert flags into an enum, and mergeNicholas Marriott
2009-07-23Both of cmdclient and curclient CAN be NULL - if the command is executed fromNicholas Marriott
2009-07-22window_add_pane cannot fail, so remove the unused cause argument and don'tNicholas Marriott
2009-07-22tty_write is relatively short and the only function left in tty-write.c so moveNicholas Marriott
2009-07-22More tty code tidying: move the saved cursor/region position (from before theNicholas Marriott
2009-07-22log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2.Nicholas Marriott
2009-07-22enum tty_cmd is only used as an index into the array of command functionNicholas Marriott
2009-07-22There are relatively few arguments to tty_cmd_* functions now, so tidy them upNicholas Marriott
2009-07-22tty_cmd_raw is only used once, for raw UTF-8 output, so rename it toNicholas Marriott
2009-07-21Make some functions which return unused values void (mostly found by lint) andNicholas Marriott
2009-07-21Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found byNicholas Marriott
2009-07-21__progname is not const, pointed out by deraadt.Nicholas Marriott
2009-07-21Tidy up keys: use an enum for the key codes, and remove the macros which justNicholas 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
2009-07-17Make it so using kill-pane to destroy the last pane in a window destroys theNicholas Marriott
2009-07-17- New command display-message (alias display) to display a message in theNicholas Marriott
2009-07-17Tidy up new-session and attach-session and change them to work from insideNicholas Marriott
2009-07-17A similar for fix for window_choose: don't rely on the callback always beingNicholas Marriott
2009-07-17Memory could be leaked if a second prompt or message appeared while another wasNicholas Marriott
2009-07-15Make status_message_set a variadic printf-like function. No functional change -Nicholas Marriott
2009-07-15Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bitNicholas Marriott