1. 459abaf That was the wrong fix. MSG_ERROR should set the error and the client should by Nicholas Marriott · 15 years ago
  2. 7a4bac8 Set exittype for error exit as well as the error string. by Nicholas Marriott · 15 years ago
  3. 74c35c5 Accept -l to make it easier for people who use tmux as a login shell to use by Nicholas Marriott · 15 years ago
  4. c5ac257 When incorrect passwords are entered, behave similarly to login(1) and backoff by Nicholas Marriott · 15 years ago
  5. 61b7dc5 Add a transpose-chars command in edit mode (C-t in emacs mode only). From Kalle by Nicholas Marriott · 15 years ago
  6. 7d5e494 When using tmux as a login shell, there is currently no way to specify a shell by Nicholas Marriott · 15 years ago
  7. 0431996 Add a new display-panes command, with two options (display-panes-colour and by Nicholas Marriott · 15 years ago
  8. 7b847ce Add a choose-client command and extend choose-{session,window} to accept a by Nicholas Marriott · 15 years ago
  9. 4f1d81c gcc2 doesn't understand attributes on function pointers. by Nicholas Marriott · 15 years ago
  10. c7394ac When using source-file, run the commands in the context of the source-file by Nicholas Marriott · 15 years ago
  11. 43cd40e The cursession member in struct cmd_ctx is always either curclient->session or by Nicholas Marriott · 15 years ago
  12. 3f4418d Extend command-prompt with a -p option which is a comma-separated list of one by Nicholas Marriott · 15 years ago
  13. 036de0c Instead of just checking for an empty buffer, which may not be the case if by Nicholas Marriott · 15 years ago
  14. dc6271c Tag a few missed printf-like functions and fix a missing "%s". by Nicholas Marriott · 15 years ago
  15. feaf91a Add a "delete line" key when editing in the status line or the search up/down by Nicholas Marriott · 15 years ago
  16. c828c2f Add (naive) searching and goto line in copy mode. Searching is C-r and C-s with by Nicholas Marriott · 15 years ago
  17. 7a359c0 vi(1)-style half page scroll in copy and scroll modes. Move the vi full page by Nicholas Marriott · 15 years ago
  18. 3ad4de6 Add a base-index session option to specify the first index checked when looking by Nicholas Marriott · 15 years ago
  19. 52793e7 When creating a new session from the command-line where there is an external by Nicholas Marriott · 15 years ago
  20. bc497db A tty context must not be modified as it may be reused to update multiple by Nicholas Marriott · 15 years ago
  21. 4310282 Have the client pass its stdin fd to the server when identifying itself and by Nicholas Marriott · 15 years ago
  22. 4ec8ade Add a TTY_OPENED flag and tidy a little. by Nicholas Marriott · 15 years ago
  23. ff65e37 Drop the no_stop argument to tty_close and tty_free in favour of a flag in the by Nicholas Marriott · 15 years ago
  24. f063571 Switch tmux to use imsg. This is the last major change to make the by Nicholas Marriott · 15 years ago
  25. 60db6e3 Add flags for 1+2 and 2 arguments to the generic target code, use it for by Nicholas Marriott · 15 years ago
  26. 6491274 Infrastructure and commands to manage the environment for processes started by Nicholas Marriott · 15 years ago
  27. 06ddd3d Add a flags member to the grid_line struct and use it to differentiate lines by Nicholas Marriott · 15 years ago
  28. 5e01b6d Change the way the grid is stored, previously it was: by Nicholas Marriott · 15 years ago
  29. e89e70e If there is an error in the configuration file, don't just exit(1) as this can by Nicholas Marriott · 15 years ago
  30. 04e97e8 Using the alternative screen (smcup/rmcup) should also preserve the current by Nicholas Marriott · 15 years ago
  31. 12ef3ce Add a -a flag to set-option and set-window-option to append to an existing by Nicholas Marriott · 15 years ago
  32. 1673735 Add a terminal-overrides session option allowing individual terminfo(5) entries by Nicholas Marriott · 15 years ago
  33. 5f13bb0 There aren't many client message types or code to handle them so get rid of the by Nicholas Marriott · 15 years ago
  34. 071494d Merge pane number into the target specification for pane commands. Instead of by Nicholas Marriott · 15 years ago
  35. c1d6d7a Rename struct hdrtype to msgtype which is a better name and can be used even by Nicholas Marriott · 15 years ago
  36. f596be9 Final pieces of mode key rebinding: bind-key and unbind-key now accept a -t by Nicholas Marriott · 15 years ago
  37. 8678500 Next step towards customisable mode keys: build each default table of keys into by Nicholas Marriott · 15 years ago
  38. 2da4864 If select-layout is not given an argument, repply the last layout used in the by Nicholas Marriott · 15 years ago
  39. 309b76f Remove an unused entry in the mode keys command enum and rename by Nicholas Marriott · 15 years ago
  40. d95274c Change mode key bindings from big switches into a set of tables. Rather than by Nicholas Marriott · 15 years ago
  41. 13e29dd Get rid of empty mode_key_free function. by Nicholas Marriott · 15 years ago
  42. 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
  43. 639fbe0 Detect backspace by looking at termios VERASE and translate it into \177 (which by Nicholas Marriott · 15 years ago
  44. 34a82e7 Make all messages sent between the client and server fixed size. by Nicholas Marriott · 15 years ago
  45. 5a1a106 Permit commands to be bound to key presses without the prefix key first. The by Nicholas Marriott · 15 years ago
  46. 16e017d Tidy client message return slightly: convert flags into an enum, and merge by Nicholas Marriott · 15 years ago
  47. 96a7cf1 Both of cmdclient and curclient CAN be NULL - if the command is executed from by Nicholas Marriott · 15 years ago
  48. 5ee8443 window_add_pane cannot fail, so remove the unused cause argument and don't by Nicholas Marriott · 15 years ago
  49. dd4a3b2 tty_write is relatively short and the only function left in tty-write.c so move by Nicholas Marriott · 15 years ago
  50. ddad0be More tty code tidying: move the saved cursor/region position (from before the by Nicholas Marriott · 15 years ago
  51. bb4bab4 log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2. by Nicholas Marriott · 15 years ago
  52. 2ec2837 enum tty_cmd is only used as an index into the array of command function by Nicholas Marriott · 15 years ago
  53. 6a309c5 There are relatively few arguments to tty_cmd_* functions now, so tidy them up by Nicholas Marriott · 15 years ago
  54. 5bd72ec tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to by Nicholas Marriott · 15 years ago
  55. 76a9d98 Make some functions which return unused values void (mostly found by lint) and by Nicholas Marriott · 15 years ago
  56. 044ebf1 Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by by Nicholas Marriott · 15 years ago
  57. b9a1790 __progname is not const, pointed out by deraadt. by Nicholas Marriott · 15 years ago
  58. 725938f Tidy up keys: use an enum for the key codes, and remove the macros which just by Nicholas Marriott · 15 years ago
  59. 54afcfb Display the number of failed password attempts (if any) when the server is by Nicholas Marriott · 15 years ago
  60. 6036bdd Improved layout code. by Nicholas Marriott · 15 years ago
  61. fc6a65c Add three new session options: visual-activity, visual-bell, visual-content. If by Nicholas Marriott · 15 years ago
  62. 0ca6f66 Make it so using kill-pane to destroy the last pane in a window destroys the by Nicholas Marriott · 15 years ago
  63. 6f5150a - New command display-message (alias display) to display a message in the by Nicholas Marriott · 15 years ago
  64. ce53936 Tidy up new-session and attach-session and change them to work from inside by Nicholas Marriott · 15 years ago
  65. 216df07 A similar for fix for window_choose: don't rely on the callback always being by Nicholas Marriott · 15 years ago
  66. 65deba3 Memory could be leaked if a second prompt or message appeared while another was by Nicholas Marriott · 15 years ago
  67. 92da443 Make status_message_set a variadic printf-like function. No functional change - by Nicholas Marriott · 15 years ago
  68. ca617d6 Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bit by Nicholas Marriott · 15 years ago
  69. 615d85f Add main-pane-height to the options list (was missed before). by Nicholas Marriott · 15 years ago
  70. ae2ea52 Instead of faking up a status line in status_redraw, use the same code to by Nicholas Marriott · 15 years ago
  71. fe20c0d Get rid of the PANE_HIDDEN flag in favour of a function, and moving the by Nicholas Marriott · 15 years ago
  72. 5f108d9 Having fixed flags for single-character getopt options is a bit hard to by Nicholas Marriott · 15 years ago
  73. 023d8d3 Tidy up and improve target (-t) argument parsing: by Nicholas Marriott · 15 years ago
  74. 3592859 Support "alternate screen" mode (terminfo smcup/rmcup) typically used by full by Nicholas Marriott · 15 years ago
  75. 0b788a3 Missed this declaration in key bindings change. Whoops. by Nicholas Marriott · 15 years ago
  76. 22d51ec Add a "back to indentation" key in copy mode to move the cursor to the first by Nicholas Marriott · 15 years ago
  77. 22355ce If it exist, load a system-wide configuration file /etc/tmux.conf before any by Nicholas Marriott · 15 years ago
  78. 2f71982 When pasting, translate \n into \r. This matches xterm and putty's behaviour, by Nicholas Marriott · 15 years ago
  79. daa1faa Add a default-terminal option to set the starting value of $TERM in new windows. by Nicholas Marriott · 15 years ago
  80. 81181bf New command, if-shell (alias if). Executes the tmux command in the second by Nicholas Marriott · 15 years ago
  81. 643c219 Tidy by removing unused argument from grid_view_{insert,delete}_line_region by Nicholas Marriott · 15 years ago
  82. 084d07f Just appending -l to $SHELL to create a login shell is wrong: -l is not POSIX, by Nicholas Marriott · 15 years ago
  83. 923ccfa Rename the global options variables to be shorter and to make session options by Nicholas Marriott · 15 years ago
  84. b11b1dd Remove some unused function declarations; no binary change. by Nicholas Marriott · 15 years ago
  85. e225ce0 #ifndef nitems to avoid redefining it if it is already in a header. by Nicholas Marriott · 15 years ago
  86. a7075f1 tmux doesn't and won't need syslog logging, so remove it and some other unused by Nicholas Marriott · 15 years ago
  87. 1675ddb Miscellaneous unused functions, including one which was basically a by Nicholas Marriott · 15 years ago
  88. ed83504 Nuke unused buffer functions. Found by lint. by Nicholas Marriott · 15 years ago
  89. 7e796de Change find-window and monitor-content to use fnmatch(3). For convenience and by Nicholas Marriott · 15 years ago
  90. 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
  91. 2de599a Trying to predict the cursor position for UTF-8 output in the same way as for by Nicholas Marriott · 15 years ago
  92. 27cfa81 Constify utf8_width() function argument. by Nicholas Marriott · 15 years ago
  93. d42fb43 Proper support for tab stops (\033H etc), using a bitstring(3). Makes another by Nicholas Marriott · 15 years ago
  94. 52ec9b9 Implement the DEC alignment test. With the last change this is enough for the by Nicholas Marriott · 15 years ago
  95. 6521427 New session option, status-utf8, to control the interpretation of top-bit-set by Nicholas Marriott · 15 years ago
  96. 7d45e29 Add a UTF-8 aware string length function and make UTF-8 in by Nicholas Marriott · 15 years ago
  97. c5dbec9 When swapping pane positions, swap the PANE_HIDDEN flag as well, otherwise tmux by Nicholas Marriott · 15 years ago
  98. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago