1. 93b353d Instead of passing a struct pollfd ** around through various functions, build by Nicholas Marriott · 15 years ago
  2. bf38a31 The UTF-8 detection idea doesn't work and I am reasonably happy with the by Nicholas Marriott · 15 years ago
  3. 3af09ac Add a simple synchronize-panes window option: when set, all input to any pane by Nicholas Marriott · 15 years ago
  4. d528184 Be less aggressive about turning the cursor off, only explicitly turn it off by Nicholas Marriott · 15 years ago
  5. 2cb2bb8 Support J and K for scroll up and scroll down in copy mode with vi keys, by Nicholas Marriott · 15 years ago
  6. 56ddd3c Fix comment. by Nicholas Marriott · 15 years ago
  7. 82efcc3 Accept ^? for backspace as well as BSpace. by Nicholas Marriott · 15 years ago
  8. 35ca994 Remove scroll mode which is now redundant, copy mode should be used instead. by Nicholas Marriott · 15 years ago
  9. 9400fda Make C-Up and C-Down in copy mode scroll the screen up and down one line by Nicholas Marriott · 15 years ago
  10. 4ca2200 If no target client is specified to commands which accept one, try to guess the by Nicholas Marriott · 15 years ago
  11. 45043eb tweak previous; by Jason McIntyre · 15 years ago
  12. d42b86d Get / and ? the right way round in vi mode, and use : for goto line rather than by Nicholas Marriott · 15 years ago
  13. c734789 Check for already locked/suspended clients in server_lock_client rather than by Nicholas Marriott · 15 years ago
  14. 205857b Add a key string for space ("Space") and document the names, suggested by by Nicholas Marriott · 15 years ago
  15. 97ca571 C-v and M-v too. by Nicholas Marriott · 15 years ago
  16. 123ae9e Support C-n/C-p with emacs keys in choice mode, also fix a comment. by Nicholas Marriott · 15 years ago
  17. 8fa1858 New lock-client and lock-session commands to lock an individual client or all by Nicholas Marriott · 15 years ago
  18. 1764ef8 Don't allow locked or suspended clients to limit the size of active clients. by Nicholas Marriott · 15 years ago
  19. fecf8dc Remove PROMPT_HIDDEN code which is now unused. by Nicholas Marriott · 15 years ago
  20. 9200a0b Support -c like sh(1) to execute a command, useful when tmux is a login by Nicholas Marriott · 15 years ago
  21. 18ea820 On SIGTERM, just abandon any suspended/locked clients and leave them to it, by Nicholas Marriott · 15 years ago
  22. 631a618 Don't die if the client is detaching (the tty has been closed) after waking up by Nicholas Marriott · 15 years ago
  23. b01dcd7 Remove the internal tmux locking and instead detach each client and run the by Nicholas Marriott · 15 years ago
  24. 962fa20 Trim some code by moving the ioctl(TIOCGWINSZ) after SIGWINCH from the client by Nicholas Marriott · 15 years ago
  25. 64caf59 Don't attempt to open() the tty path, rely on the client sending its stdin fd by Nicholas Marriott · 15 years ago
  26. 0a90056 Be more careful about what flags are cleared when opening the terminal, by Nicholas Marriott · 15 years ago
  27. 96dd3e8 Permit multiple prefix keys to be defined, separated by commas, for example: by Nicholas Marriott · 15 years ago
  28. 6fab9a3 Use KEYC_NONE constant instead of 0 on init. by Nicholas Marriott · 15 years ago
  29. a448524 Nuke -i option which isn't used anymore. by Nicholas Marriott · 15 years ago
  30. 6b37b2d Use option print function for info messages as well. by Nicholas Marriott · 15 years ago
  31. e3c3d74 Move common code from show-options and show-window-options into a function. by Nicholas Marriott · 15 years ago
  32. b769aa5 zap trailing whitespace; by Jason McIntyre · 15 years ago
  33. fc9107a Drop tiny union from option struct. by Nicholas Marriott · 15 years ago
  34. c7a8db5 Key options were implemented as a number so these struct members are unused. by Nicholas Marriott · 15 years ago
  35. 14ebcab run-shell command to run a shell command without opening a window, sending by Nicholas Marriott · 15 years ago
  36. 105ce36 Nuke unused variables and fix stupid error message. by Nicholas Marriott · 15 years ago
  37. 9b5f5ed Move some common and untidy code for window link/unlink into generic functions by Nicholas Marriott · 15 years ago
  38. 273f1b3 Regularise some fatal messages. by Nicholas Marriott · 15 years ago
  39. 63d499f New option, set-titles-string, to allow the window title to be specified (as by Nicholas Marriott · 15 years ago
  40. 5c60162 Rather than constructing an entire termios struct from ttydefaults.h, just let by Nicholas Marriott · 15 years ago
  41. a6dd9e8 Enclose repeated buffer draining code in a new msgbuf_drain() by Jacek Masiulaniec · 15 years ago
  42. 4278199 Stick line length to what is actually used (removing an optimization that by Nicholas Marriott · 15 years ago
  43. f39865e The default terminal size should be 80x24, not 80x25. by Nicholas Marriott · 15 years ago
  44. 8548624 Nuke unused server_client_index function, pointed out by martynas@. by Nicholas Marriott · 15 years ago
  45. 8a873b9 Doh, trim variables unused now. by Nicholas Marriott · 15 years ago
  46. 8cb8a0d Tidy some common code for destroying sessions into a new function. by Nicholas Marriott · 15 years ago
  47. d771614 tmux always outputs \177 for backspace, so explicitly set VERASE to \177 for by Nicholas Marriott · 15 years ago
  48. 372a8cb Permit options such as status-bg to be configured using the entire 256 colour by Nicholas Marriott · 15 years ago
  49. 3f3b01c While the display-panes indicator is on screen, make the number keys select the by Nicholas Marriott · 15 years ago
  50. 51c9574 Reference count clients and sessions rather than relying on a saved index for by Nicholas Marriott · 15 years ago
  51. e323f66 Tiny cleanup. by Matthias Kilian · 15 years ago
  52. ccba613 Give each paste buffer a size member instead of requiring them to be by Nicholas Marriott · 15 years ago
  53. e97006b Permit embedded colour and attributes in status-left and status-right using new by Nicholas Marriott · 15 years ago
  54. ffab22b Only redraw all clients once when the backoff timer expires rather than every by Nicholas Marriott · 15 years ago
  55. 83af55b Tidy main and make it a bit easier to read. by Nicholas Marriott · 15 years ago
  56. be0d6fa Tell the user when sleeping due to password backoff. by Nicholas Marriott · 15 years ago
  57. 751a2fa Fix a race condition when asking a client to take over the terminal (switching by Nicholas Marriott · 15 years ago
  58. 81a457e When shutting down the server, expect clients to be polite and exit when asked by Nicholas Marriott · 15 years ago
  59. 459abaf That was the wrong fix. MSG_ERROR should set the error and the client should by Nicholas Marriott · 15 years ago
  60. 7a4bac8 Set exittype for error exit as well as the error string. by Nicholas Marriott · 15 years ago
  61. 74c35c5 Accept -l to make it easier for people who use tmux as a login shell to use by Nicholas Marriott · 15 years ago
  62. c5ac257 When incorrect passwords are entered, behave similarly to login(1) and backoff by Nicholas Marriott · 15 years ago
  63. 61b7dc5 Add a transpose-chars command in edit mode (C-t in emacs mode only). From Kalle by Nicholas Marriott · 15 years ago
  64. c089e19 If forking a login shell or if SHELL is otherwise not useful, set it to the by Nicholas Marriott · 15 years ago
  65. 7d5e494 When using tmux as a login shell, there is currently no way to specify a shell by Nicholas Marriott · 15 years ago
  66. f8aa582 Use "Password:" with no space for password prompts and don't display a *s for by Nicholas Marriott · 15 years ago
  67. 34bb735 Sort cases same as getopt argument, from martynas. by Nicholas Marriott · 15 years ago
  68. 0431996 Add a new display-panes command, with two options (display-panes-colour and by Nicholas Marriott · 15 years ago
  69. 8102ec3 squash typo ok nicm@ by Stefan Sperling · 15 years ago
  70. 71ede76 Don't call tty_free unless the client is a terminal, otherwise tty_init hasn't by Nicholas Marriott · 15 years ago
  71. 2e5b3ab Initialise the arg2 pointer properly (also free it when freeing the by Nicholas Marriott · 15 years ago
  72. ddf97f8 Make this work when the clock is in small characters as well. Doh. by Nicholas Marriott · 15 years ago
  73. 1ba5ce9 Fix clock mode in black and white terminals now that tty.c tries to fix reverse. by Nicholas Marriott · 15 years ago
  74. f949107 Print -l and -p when showing command, pointed out by Tiago Cunha. by Nicholas Marriott · 15 years ago
  75. be16f79 These should #include <ctype.h>. by Nicholas Marriott · 15 years ago
  76. 7b847ce Add a choose-client command and extend choose-{session,window} to accept a by Nicholas Marriott · 15 years ago
  77. 4f1d81c gcc2 doesn't understand attributes on function pointers. by Nicholas Marriott · 15 years ago
  78. 90400ae Add some other obvious variables to update-environment (WINDOWID SSH_ASKPASS by Nicholas Marriott · 15 years ago
  79. a910b38 Some code tidying. by Nicholas Marriott · 15 years ago
  80. c7394ac When using source-file, run the commands in the context of the source-file by Nicholas Marriott · 15 years ago
  81. 43cd40e The cursession member in struct cmd_ctx is always either curclient->session or by Nicholas Marriott · 15 years ago
  82. 1eb303e Check the return value of strunvis against -1 not NULL. by Nicholas Marriott · 15 years ago
  83. 926b52b Emulate dch/dch1 if missing by redrawing the entire line. by Nicholas Marriott · 15 years ago
  84. 915a191 Move reading termios settings to before tty_open alters them, and expand the by Nicholas Marriott · 15 years ago
  85. 65ac8e9 Ugh, committed the wrong version of this change and got both solutions rather by Nicholas Marriott · 15 years ago
  86. f817a33 When moving up or down in copy mode, save the cursor position and size of the by Nicholas Marriott · 15 years ago
  87. 0198bb6 Fix grid_expand_line so it actually works when the required size is bigger than by Nicholas Marriott · 15 years ago
  88. 1501b3f A few trivial optimisations: no need to check for zero size if calling by Nicholas Marriott · 15 years ago
  89. 234ad54 Nuke unused variable. by Nicholas Marriott · 15 years ago
  90. bf121f7 Handle the device attributes (DA) escape sequence. by Nicholas Marriott · 15 years ago
  91. c741f2f tweak previous; by Jason McIntyre · 15 years ago
  92. 5533665 Don't read beyond the edge of the screen when searching (dies with debug by Nicholas Marriott · 15 years ago
  93. c41aa49 Use cfsetispeed/cfsetospeed to set termios speed members. by Nicholas Marriott · 15 years ago
  94. 3f4418d Extend command-prompt with a -p option which is a comma-separated list of one by Nicholas Marriott · 15 years ago
  95. 036de0c Instead of just checking for an empty buffer, which may not be the case if by Nicholas Marriott · 15 years ago
  96. c488e5e Whoops, getting the comparison the right way round is usually recommended. by Nicholas Marriott · 15 years ago
  97. 8b7be58 Move another expensive options test to after a cheaper timer check/update. by Nicholas Marriott · 15 years ago
  98. fa61746 options_get_number() is relatively expensive and a check for dead panes happens by Nicholas Marriott · 15 years ago
  99. 145ba77 Now that pane targets (-t) are supported, switch some commands to use them by Nicholas Marriott · 15 years ago
  100. dc6271c Tag a few missed printf-like functions and fix a missing "%s". by Nicholas Marriott · 15 years ago