aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
Commit message (Expand)AuthorAge
...
| | * Rename struct hdrtype to msgtype which is a better name and can be used evenNicholas Marriott2009-07-29
| | * Final pieces of mode key rebinding: bind-key and unbind-key now accept a -tNicholas Marriott2009-07-28
| | * Next step towards customisable mode keys: build each default table of keys intoNicholas Marriott2009-07-28
| | * If select-layout is not given an argument, repply the last layout used in theNicholas Marriott2009-07-28
| | * Remove an unused entry in the mode keys command enum and renameNicholas Marriott2009-07-27
| | * Change mode key bindings from big switches into a set of tables. Rather thanNicholas Marriott2009-07-27
| | * Get rid of empty mode_key_free function.Nicholas Marriott2009-07-27
| | * Add a key to delete to end of line at the prompt (^K in emacs mode, C/D in vi).Nicholas Marriott2009-07-27
| | * Detect backspace by looking at termios VERASE and translate it into \177 (whichNicholas Marriott2009-07-26
| | * Make all messages sent between the client and server fixed size.Nicholas Marriott2009-07-26
| | * Permit commands to be bound to key presses without the prefix key first. TheNicholas Marriott2009-07-24
| | * Tidy client message return slightly: convert flags into an enum, and mergeNicholas Marriott2009-07-23
| | * Both of cmdclient and curclient CAN be NULL - if the command is executed fromNicholas Marriott2009-07-23
| | * window_add_pane cannot fail, so remove the unused cause argument and don'tNicholas Marriott2009-07-22
| | * tty_write is relatively short and the only function left in tty-write.c so moveNicholas Marriott2009-07-22
| | * More tty code tidying: move the saved cursor/region position (from before theNicholas Marriott2009-07-22
| | * log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2.Nicholas Marriott2009-07-22
| | * enum tty_cmd is only used as an index into the array of command functionNicholas Marriott2009-07-22
| | * There are relatively few arguments to tty_cmd_* functions now, so tidy them upNicholas Marriott2009-07-22
| | * tty_cmd_raw is only used once, for raw UTF-8 output, so rename it toNicholas Marriott2009-07-22
| | * Make some functions which return unused values void (mostly found by lint) andNicholas Marriott2009-07-21
| | * Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found byNicholas Marriott2009-07-21
| | * __progname is not const, pointed out by deraadt.Nicholas Marriott2009-07-21
| | * Tidy up keys: use an enum for the key codes, and remove the macros which justNicholas Marriott2009-07-21
| | * Display the number of failed password attempts (if any) when the server isNicholas Marriott2009-07-20
| | * Improved layout code.Nicholas Marriott2009-07-19
| | * Add three new session options: visual-activity, visual-bell, visual-content. IfNicholas Marriott2009-07-18
| | * Make it so using kill-pane to destroy the last pane in a window destroys theNicholas Marriott2009-07-17
| | * - New command display-message (alias display) to display a message in theNicholas Marriott2009-07-17
| | * Tidy up new-session and attach-session and change them to work from insideNicholas Marriott2009-07-17
| | * A similar for fix for window_choose: don't rely on the callback always beingNicholas Marriott2009-07-17
| | * Memory could be leaked if a second prompt or message appeared while another wasNicholas Marriott2009-07-17
| | * Make status_message_set a variadic printf-like function. No functional change -Nicholas Marriott2009-07-15
| | * Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bitNicholas Marriott2009-07-15
| | * Add main-pane-height to the options list (was missed before).Nicholas Marriott2009-07-14
| | * Instead of faking up a status line in status_redraw, use the same code toNicholas Marriott2009-07-14
| | * Get rid of the PANE_HIDDEN flag in favour of a function, and moving theNicholas Marriott2009-07-14
| | * Having fixed flags for single-character getopt options is a bit hard toNicholas Marriott2009-07-13
| | * Tidy up and improve target (-t) argument parsing:Nicholas Marriott2009-07-13
| | * Support "alternate screen" mode (terminfo smcup/rmcup) typically used by fullNicholas Marriott2009-07-13
| | * Missed this declaration in key bindings change. Whoops.Nicholas Marriott2009-07-12
| | * Add a "back to indentation" key in copy mode to move the cursor to the firstNicholas Marriott2009-07-12
| | * If it exist, load a system-wide configuration file /etc/tmux.conf before anyNicholas Marriott2009-07-12
| | * When pasting, translate \n into \r. This matches xterm and putty's behaviour,Nicholas Marriott2009-07-11
| | * Add a default-terminal option to set the starting value of $TERM in newNicholas Marriott2009-07-10
| | * New command, if-shell (alias if). Executes the tmux command in the secondNicholas Marriott2009-07-09
| | * Tidy by removing unused argument from grid_view_{insert,delete}_line_regionNicholas Marriott2009-07-09
| | * Just appending -l to $SHELL to create a login shell is wrong: -l is not POSIX,Nicholas Marriott2009-07-08
| | * Rename the global options variables to be shorter and to make session optionsNicholas Marriott2009-07-07
| | * Remove some unused function declarations; no binary change.Nicholas Marriott2009-06-26