1. 1af09d6 Try to reduce the UTF-8 mess. by Nicholas Marriott · 15 years ago
  2. 62f234c UTF-8 combined character fixes. by Nicholas Marriott · 15 years ago
  3. d1e6388 Nuke stray blank line. by Nicholas Marriott · 15 years ago
  4. 43d62c1 Instead of having a complicated check to see if the cursor is in the last by Nicholas Marriott · 15 years ago
  5. ad566a8 Move lines into the history when scrolling even if the scroll region is not by Nicholas Marriott · 15 years ago
  6. 38df960 Add mode keys to move the cursor to the top, middle and bottom of the screen. by Nicholas Marriott · 15 years ago
  7. d7626cd When drawing lines that have wrapped naturally, don't force a newline but by Nicholas Marriott · 15 years ago
  8. 8608c69 When backspace is received at the beginning of a line and the previous line was by Nicholas Marriott · 15 years ago
  9. 687c4a9 Use relative cursor movement instead of absolute when possible and when by Nicholas Marriott · 15 years ago
  10. 7624599 Similarly add a tty_cursor_pane function to tidy up most of the calls. by Nicholas Marriott · 15 years ago
  11. 972a6f5 _absolute is redundant, just use tty_region. by Nicholas Marriott · 15 years ago
  12. f05b32f Cleanup: use two functions for region setting, one for absolute and one inside by Nicholas Marriott · 15 years ago
  13. 64b5f39 Add a pipe-pane command to allow a pane to be piped to a shell command, for by Nicholas Marriott · 15 years ago
  14. ff4b4e6 Collect status from dead jobs and don't invoke the callback until both by Nicholas Marriott · 15 years ago
  15. 4bc0f6e Clean up by introducing a wrapper struct for mouse clicks rather than passing by Nicholas Marriott · 15 years ago
  16. 095ecf2 Put all jobs on a global all_jobs list and use that in server.c instead of by Nicholas Marriott · 15 years ago
  17. 5aa49e6 Split list-panes off from list-windows. by Nicholas Marriott · 15 years ago
  18. 6bca92d Rather than running status-left, status-right and window title #() with popen by Nicholas Marriott · 15 years ago
  19. 4658c06 New option, mouse-select-pane. If on, the mouse may be used to select the by Nicholas Marriott · 15 years ago
  20. 9dd72b9 Add "grouped sessions" which have independent name, options, current window and by Nicholas Marriott · 15 years ago
  21. b7d031c Support for individual session idle time locking. May be enabled by turning off by Nicholas Marriott · 15 years ago
  22. bf38a31 The UTF-8 detection idea doesn't work and I am reasonably happy with the by Nicholas Marriott · 15 years ago
  23. 35ca994 Remove scroll mode which is now redundant, copy mode should be used instead. by Nicholas Marriott · 15 years ago
  24. 9400fda Make C-Up and C-Down in copy mode scroll the screen up and down one line by Nicholas Marriott · 15 years ago
  25. 4ca2200 If no target client is specified to commands which accept one, try to guess the by Nicholas Marriott · 15 years ago
  26. 8fa1858 New lock-client and lock-session commands to lock an individual client or all by Nicholas Marriott · 15 years ago
  27. fecf8dc Remove PROMPT_HIDDEN code which is now unused. by Nicholas Marriott · 15 years ago
  28. 9200a0b Support -c like sh(1) to execute a command, useful when tmux is a login by Nicholas Marriott · 15 years ago
  29. b01dcd7 Remove the internal tmux locking and instead detach each client and run the by Nicholas Marriott · 15 years ago
  30. 962fa20 Trim some code by moving the ioctl(TIOCGWINSZ) after SIGWINCH from the client by Nicholas Marriott · 15 years ago
  31. 64caf59 Don't attempt to open() the tty path, rely on the client sending its stdin fd by Nicholas Marriott · 15 years ago
  32. 96dd3e8 Permit multiple prefix keys to be defined, separated by commas, for example: by Nicholas Marriott · 15 years ago
  33. 6b37b2d Use option print function for info messages as well. by Nicholas Marriott · 15 years ago
  34. e3c3d74 Move common code from show-options and show-window-options into a function. by Nicholas Marriott · 15 years ago
  35. fc9107a Drop tiny union from option struct. by Nicholas Marriott · 15 years ago
  36. c7a8db5 Key options were implemented as a number so these struct members are unused. by Nicholas Marriott · 15 years ago
  37. 14ebcab run-shell command to run a shell command without opening a window, sending by Nicholas Marriott · 15 years ago
  38. 9b5f5ed Move some common and untidy code for window link/unlink into generic functions by Nicholas Marriott · 15 years ago
  39. 5c60162 Rather than constructing an entire termios struct from ttydefaults.h, just let by Nicholas Marriott · 15 years ago
  40. 8548624 Nuke unused server_client_index function, pointed out by martynas@. by Nicholas Marriott · 15 years ago
  41. 8cb8a0d Tidy some common code for destroying sessions into a new function. by Nicholas Marriott · 15 years ago
  42. 372a8cb Permit options such as status-bg to be configured using the entire 256 colour by Nicholas Marriott · 15 years ago
  43. 51c9574 Reference count clients and sessions rather than relying on a saved index for by Nicholas Marriott · 15 years ago
  44. ccba613 Give each paste buffer a size member instead of requiring them to be by Nicholas Marriott · 15 years ago
  45. e97006b Permit embedded colour and attributes in status-left and status-right using new by Nicholas Marriott · 15 years ago
  46. 459abaf That was the wrong fix. MSG_ERROR should set the error and the client should by Nicholas Marriott · 15 years ago
  47. 7a4bac8 Set exittype for error exit as well as the error string. by Nicholas Marriott · 15 years ago
  48. 74c35c5 Accept -l to make it easier for people who use tmux as a login shell to use by Nicholas Marriott · 15 years ago
  49. c5ac257 When incorrect passwords are entered, behave similarly to login(1) and backoff by Nicholas Marriott · 15 years ago
  50. 61b7dc5 Add a transpose-chars command in edit mode (C-t in emacs mode only). From Kalle by Nicholas Marriott · 15 years ago
  51. 7d5e494 When using tmux as a login shell, there is currently no way to specify a shell by Nicholas Marriott · 15 years ago
  52. 0431996 Add a new display-panes command, with two options (display-panes-colour and by Nicholas Marriott · 15 years ago
  53. 7b847ce Add a choose-client command and extend choose-{session,window} to accept a by Nicholas Marriott · 15 years ago
  54. 4f1d81c gcc2 doesn't understand attributes on function pointers. by Nicholas Marriott · 15 years ago
  55. c7394ac When using source-file, run the commands in the context of the source-file by Nicholas Marriott · 15 years ago
  56. 43cd40e The cursession member in struct cmd_ctx is always either curclient->session or by Nicholas Marriott · 15 years ago
  57. 3f4418d Extend command-prompt with a -p option which is a comma-separated list of one by Nicholas Marriott · 15 years ago
  58. 036de0c Instead of just checking for an empty buffer, which may not be the case if by Nicholas Marriott · 15 years ago
  59. dc6271c Tag a few missed printf-like functions and fix a missing "%s". by Nicholas Marriott · 15 years ago
  60. feaf91a Add a "delete line" key when editing in the status line or the search up/down by Nicholas Marriott · 15 years ago
  61. c828c2f Add (naive) searching and goto line in copy mode. Searching is C-r and C-s with by Nicholas Marriott · 15 years ago
  62. 7a359c0 vi(1)-style half page scroll in copy and scroll modes. Move the vi full page by Nicholas Marriott · 15 years ago
  63. 3ad4de6 Add a base-index session option to specify the first index checked when looking by Nicholas Marriott · 15 years ago
  64. 52793e7 When creating a new session from the command-line where there is an external by Nicholas Marriott · 15 years ago
  65. bc497db A tty context must not be modified as it may be reused to update multiple by Nicholas Marriott · 15 years ago
  66. 4310282 Have the client pass its stdin fd to the server when identifying itself and by Nicholas Marriott · 15 years ago
  67. 4ec8ade Add a TTY_OPENED flag and tidy a little. by Nicholas Marriott · 15 years ago
  68. 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
  69. f063571 Switch tmux to use imsg. This is the last major change to make the by Nicholas Marriott · 15 years ago
  70. 60db6e3 Add flags for 1+2 and 2 arguments to the generic target code, use it for by Nicholas Marriott · 15 years ago
  71. 6491274 Infrastructure and commands to manage the environment for processes started by Nicholas Marriott · 15 years ago
  72. 06ddd3d Add a flags member to the grid_line struct and use it to differentiate lines by Nicholas Marriott · 15 years ago
  73. 5e01b6d Change the way the grid is stored, previously it was: by Nicholas Marriott · 15 years ago
  74. e89e70e If there is an error in the configuration file, don't just exit(1) as this can by Nicholas Marriott · 15 years ago
  75. 04e97e8 Using the alternative screen (smcup/rmcup) should also preserve the current by Nicholas Marriott · 15 years ago
  76. 12ef3ce Add a -a flag to set-option and set-window-option to append to an existing by Nicholas Marriott · 15 years ago
  77. 1673735 Add a terminal-overrides session option allowing individual terminfo(5) entries by Nicholas Marriott · 15 years ago
  78. 5f13bb0 There aren't many client message types or code to handle them so get rid of the by Nicholas Marriott · 15 years ago
  79. 071494d Merge pane number into the target specification for pane commands. Instead of by Nicholas Marriott · 15 years ago
  80. c1d6d7a Rename struct hdrtype to msgtype which is a better name and can be used even by Nicholas Marriott · 15 years ago
  81. f596be9 Final pieces of mode key rebinding: bind-key and unbind-key now accept a -t by Nicholas Marriott · 15 years ago
  82. 8678500 Next step towards customisable mode keys: build each default table of keys into by Nicholas Marriott · 15 years ago
  83. 2da4864 If select-layout is not given an argument, repply the last layout used in the by Nicholas Marriott · 15 years ago
  84. 309b76f Remove an unused entry in the mode keys command enum and rename by Nicholas Marriott · 15 years ago
  85. d95274c Change mode key bindings from big switches into a set of tables. Rather than by Nicholas Marriott · 15 years ago
  86. 13e29dd Get rid of empty mode_key_free function. by Nicholas Marriott · 15 years ago
  87. 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
  88. 639fbe0 Detect backspace by looking at termios VERASE and translate it into \177 (which by Nicholas Marriott · 15 years ago
  89. 34a82e7 Make all messages sent between the client and server fixed size. by Nicholas Marriott · 15 years ago
  90. 5a1a106 Permit commands to be bound to key presses without the prefix key first. The by Nicholas Marriott · 15 years ago
  91. 16e017d Tidy client message return slightly: convert flags into an enum, and merge by Nicholas Marriott · 15 years ago
  92. 96a7cf1 Both of cmdclient and curclient CAN be NULL - if the command is executed from by Nicholas Marriott · 15 years ago
  93. 5ee8443 window_add_pane cannot fail, so remove the unused cause argument and don't by Nicholas Marriott · 15 years ago
  94. dd4a3b2 tty_write is relatively short and the only function left in tty-write.c so move by Nicholas Marriott · 15 years ago
  95. ddad0be More tty code tidying: move the saved cursor/region position (from before the by Nicholas Marriott · 15 years ago
  96. bb4bab4 log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2. by Nicholas Marriott · 15 years ago
  97. 2ec2837 enum tty_cmd is only used as an index into the array of command function by Nicholas Marriott · 15 years ago
  98. 6a309c5 There are relatively few arguments to tty_cmd_* functions now, so tidy them up by Nicholas Marriott · 15 years ago
  99. 5bd72ec tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to by Nicholas Marriott · 15 years ago
  100. 76a9d98 Make some functions which return unused values void (mostly found by lint) and by Nicholas Marriott · 15 years ago