1. 5f13bb0 There aren't many client message types or code to handle them so get rid of the by Nicholas Marriott · 15 years ago
  2. 071494d Merge pane number into the target specification for pane commands. Instead of by Nicholas Marriott · 15 years ago
  3. c1d6d7a Rename struct hdrtype to msgtype which is a better name and can be used even by Nicholas Marriott · 15 years ago
  4. f596be9 Final pieces of mode key rebinding: bind-key and unbind-key now accept a -t by Nicholas Marriott · 15 years ago
  5. 8678500 Next step towards customisable mode keys: build each default table of keys into by Nicholas Marriott · 15 years ago
  6. 2da4864 If select-layout is not given an argument, repply the last layout used in the by Nicholas Marriott · 15 years ago
  7. 309b76f Remove an unused entry in the mode keys command enum and rename by Nicholas Marriott · 15 years ago
  8. d95274c Change mode key bindings from big switches into a set of tables. Rather than by Nicholas Marriott · 15 years ago
  9. 13e29dd Get rid of empty mode_key_free function. by Nicholas Marriott · 15 years ago
  10. ad0aad2 Add a key to delete to end of line at the prompt (^K in emacs mode, C/D in vi). by Nicholas Marriott · 15 years ago
  11. 639fbe0 Detect backspace by looking at termios VERASE and translate it into \177 (which by Nicholas Marriott · 15 years ago
  12. 34a82e7 Make all messages sent between the client and server fixed size. by Nicholas Marriott · 15 years ago
  13. 5a1a106 Permit commands to be bound to key presses without the prefix key first. The by Nicholas Marriott · 15 years ago
  14. 16e017d Tidy client message return slightly: convert flags into an enum, and merge by Nicholas Marriott · 15 years ago
  15. 96a7cf1 Both of cmdclient and curclient CAN be NULL - if the command is executed from by Nicholas Marriott · 15 years ago
  16. 5ee8443 window_add_pane cannot fail, so remove the unused cause argument and don't by Nicholas Marriott · 15 years ago
  17. dd4a3b2 tty_write is relatively short and the only function left in tty-write.c so move by Nicholas Marriott · 15 years ago
  18. ddad0be More tty code tidying: move the saved cursor/region position (from before the by Nicholas Marriott · 15 years ago
  19. bb4bab4 log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2. by Nicholas Marriott · 15 years ago
  20. 2ec2837 enum tty_cmd is only used as an index into the array of command function by Nicholas Marriott · 15 years ago
  21. 6a309c5 There are relatively few arguments to tty_cmd_* functions now, so tidy them up by Nicholas Marriott · 15 years ago
  22. 5bd72ec tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to by Nicholas Marriott · 15 years ago
  23. 76a9d98 Make some functions which return unused values void (mostly found by lint) and by Nicholas Marriott · 15 years ago
  24. 044ebf1 Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by by Nicholas Marriott · 15 years ago
  25. b9a1790 __progname is not const, pointed out by deraadt. by Nicholas Marriott · 15 years ago
  26. 725938f Tidy up keys: use an enum for the key codes, and remove the macros which just by Nicholas Marriott · 15 years ago
  27. 54afcfb Display the number of failed password attempts (if any) when the server is by Nicholas Marriott · 15 years ago
  28. 6036bdd Improved layout code. by Nicholas Marriott · 15 years ago
  29. fc6a65c Add three new session options: visual-activity, visual-bell, visual-content. If by Nicholas Marriott · 15 years ago
  30. 0ca6f66 Make it so using kill-pane to destroy the last pane in a window destroys the by Nicholas Marriott · 15 years ago
  31. 6f5150a - New command display-message (alias display) to display a message in the by Nicholas Marriott · 15 years ago
  32. ce53936 Tidy up new-session and attach-session and change them to work from inside by Nicholas Marriott · 15 years ago
  33. 216df07 A similar for fix for window_choose: don't rely on the callback always being by Nicholas Marriott · 15 years ago
  34. 65deba3 Memory could be leaked if a second prompt or message appeared while another was by Nicholas Marriott · 15 years ago
  35. 92da443 Make status_message_set a variadic printf-like function. No functional change - by Nicholas Marriott · 15 years ago
  36. ca617d6 Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bit by Nicholas Marriott · 15 years ago
  37. 615d85f Add main-pane-height to the options list (was missed before). by Nicholas Marriott · 15 years ago
  38. ae2ea52 Instead of faking up a status line in status_redraw, use the same code to by Nicholas Marriott · 15 years ago
  39. fe20c0d Get rid of the PANE_HIDDEN flag in favour of a function, and moving the by Nicholas Marriott · 15 years ago
  40. 5f108d9 Having fixed flags for single-character getopt options is a bit hard to by Nicholas Marriott · 15 years ago
  41. 023d8d3 Tidy up and improve target (-t) argument parsing: by Nicholas Marriott · 15 years ago
  42. 3592859 Support "alternate screen" mode (terminfo smcup/rmcup) typically used by full by Nicholas Marriott · 15 years ago
  43. 0b788a3 Missed this declaration in key bindings change. Whoops. by Nicholas Marriott · 15 years ago
  44. 22d51ec Add a "back to indentation" key in copy mode to move the cursor to the first by Nicholas Marriott · 15 years ago
  45. 22355ce If it exist, load a system-wide configuration file /etc/tmux.conf before any by Nicholas Marriott · 15 years ago
  46. 2f71982 When pasting, translate \n into \r. This matches xterm and putty's behaviour, by Nicholas Marriott · 15 years ago
  47. daa1faa Add a default-terminal option to set the starting value of $TERM in new windows. by Nicholas Marriott · 15 years ago
  48. 81181bf New command, if-shell (alias if). Executes the tmux command in the second by Nicholas Marriott · 15 years ago
  49. 643c219 Tidy by removing unused argument from grid_view_{insert,delete}_line_region by Nicholas Marriott · 15 years ago
  50. 084d07f Just appending -l to $SHELL to create a login shell is wrong: -l is not POSIX, by Nicholas Marriott · 15 years ago
  51. 923ccfa Rename the global options variables to be shorter and to make session options by Nicholas Marriott · 15 years ago
  52. b11b1dd Remove some unused function declarations; no binary change. by Nicholas Marriott · 15 years ago
  53. e225ce0 #ifndef nitems to avoid redefining it if it is already in a header. by Nicholas Marriott · 15 years ago
  54. a7075f1 tmux doesn't and won't need syslog logging, so remove it and some other unused by Nicholas Marriott · 15 years ago
  55. 1675ddb Miscellaneous unused functions, including one which was basically a by Nicholas Marriott · 15 years ago
  56. ed83504 Nuke unused buffer functions. Found by lint. by Nicholas Marriott · 15 years ago
  57. 7e796de Change find-window and monitor-content to use fnmatch(3). For convenience and by Nicholas Marriott · 15 years ago
  58. 096cbf2 Add a dedicated function to convert a line into a string and use it to simplify the search window function. by Nicholas Marriott · 15 years ago
  59. 2de599a Trying to predict the cursor position for UTF-8 output in the same way as for by Nicholas Marriott · 15 years ago
  60. 27cfa81 Constify utf8_width() function argument. by Nicholas Marriott · 15 years ago
  61. d42fb43 Proper support for tab stops (\033H etc), using a bitstring(3). Makes another by Nicholas Marriott · 15 years ago
  62. 52ec9b9 Implement the DEC alignment test. With the last change this is enough for the by Nicholas Marriott · 15 years ago
  63. 6521427 New session option, status-utf8, to control the interpretation of top-bit-set by Nicholas Marriott · 15 years ago
  64. 7d45e29 Add a UTF-8 aware string length function and make UTF-8 in by Nicholas Marriott · 15 years ago
  65. c5dbec9 When swapping pane positions, swap the PANE_HIDDEN flag as well, otherwise tmux by Nicholas Marriott · 15 years ago
  66. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago