1. 2a836bc All the cmd_*_entry declarations do not need to be in tmux.h. by nicm · 9 years ago
  2. 95195f5 Rewrite of the target resolution internals to be simpler and more by nicm · 9 years ago
  3. 07dfdb9 Make message log a TAILQ. by nicm · 9 years ago
  4. 6dbd63b Move the functions to convert ids from strings into session.c and window.c. by nicm · 9 years ago
  5. aeedb46 Convert clients list into a TAILQ. by nicm · 9 years ago
  6. 3909aff Look up indexes as number before name, makes more sense if windows are by nicm · 9 years ago
  7. bf635e7 Rewrite of tmux mouse support which was a mess. Instead of having by nicm · 10 years ago
  8. a27ba6e Add xreallocarray and remove nmemb argument from xrealloc. by nicm · 10 years ago
  9. a54b005 Support using pane id as part of session or window specifier (so %1 by nicm · 10 years ago
  10. 304f86c Support ! for last pane. by nicm · 10 years ago
  11. c5253ad Show an error if cmd_find_session can't find the current session, like by nicm · 10 years ago
  12. b3e8d44 If multiple arguments are given to new-session, new-window, by nicm · 10 years ago
  13. f4ffaf5 Just use char ** for argv like normal people, not char *const *. by nicm · 10 years ago
  14. 14a96df Remove the choose-list command to prepare for some later choose-* work. by nicm · 11 years ago
  15. 18cb135 Don't write into buffer if no arguments, reported by Filipe Rosset. by nicm · 11 years ago
  16. 1a0d3cd Allow attach-session -t to accept a window and pane to select them on by nicm · 11 years ago
  17. c1ccefc We accidentally haven't been using $TMUX to work out the session for a by nicm · 11 years ago
  18. 6ac7abe Remove now unused cmd_get_default_path. by nicm · 11 years ago
  19. b822d24 Support -c for new-session, based on code from J Raynor. by nicm · 11 years ago
  20. 25c430b Reserve space for \0 in cmd_print, from George Nachman. by Nicholas Marriott · 11 years ago
  21. 673eb16 Sort includes and fix spaces. by Nicholas Marriott · 12 years ago
  22. 6fee3e9 Rename session idx to session id throughout and add $ prefix to targets by Nicholas Marriott · 12 years ago
  23. 410a3ab Add a wait-for command which blocks a client on a named channel until it by Nicholas Marriott · 12 years ago
  24. 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago
  25. bb8457b Fix error reporting for client commands by adding a flag to by Nicholas Marriott · 12 years ago
  26. 2243cfb Need to set clients in context before changing their reference count. by Nicholas Marriott · 12 years ago
  27. d1e6ce2 Add functions to allocate and free command contexts rather than doing it by Nicholas Marriott · 12 years ago
  28. 51d989f Do not crash when calling choose-tree with a command that changes the mode. by Nicholas Marriott · 12 years ago
  29. c2e2107 Style nits - return (x) not return x. by Nicholas Marriott · 12 years ago
  30. 854e8ae Add ^ and $ special command targets to select lowest and highest by Nicholas Marriott · 12 years ago
  31. 991bfcf Fix session choice so that preferring unattached sessions actually by Nicholas Marriott · 12 years ago
  32. 42272df Use pgrp of pty fd not pid of immediate child when recovering current by Nicholas Marriott · 12 years ago
  33. 7263fa3 add cmd-choose-list to allow arbitrary options to be selected. From Thomas Adam. by Nicholas Marriott · 12 years ago
  34. ede8312 Make command exec functions return an enum rather than -1/0/1 values and by Nicholas Marriott · 12 years ago
  35. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  36. f20c6fe Add choose-tree command to show windows and sessions in the same by Nicholas Marriott · 12 years ago
  37. a4a2c68 Do not crash when the current session has no window, fixes a bug by Nicholas Marriott · 12 years ago
  38. 0f9e0d1 Do not return a buffer on the stack, mentioned by jsg a while ago. by Nicholas Marriott · 12 years ago
  39. 5cbca2e Fix printing commands with no arguments, from Benjamin Poirier. by Nicholas Marriott · 12 years ago
  40. 07ac168 Add move-pane command (like join-pane but allows the same window). Also by Nicholas Marriott · 13 years ago
  41. 67949de Don't die if fail to get root directory, from Ben Boeckel. by Nicholas Marriott · 13 years ago
  42. 908a22e Provide defined ways to set the various default-path possibilities: ~ by Nicholas Marriott · 13 years ago
  43. 0e59bc7 Give each window a unique id, like panes but prefixed with @. Based on by Nicholas Marriott · 13 years ago
  44. 8332413 Add some const and fix a warning. by Nicholas Marriott · 13 years ago
  45. fdd1d0b Allow $HOME as default-path in tmux.conf so the same config file can be used by Stefan Sperling · 13 years ago
  46. f308ba9 Change the way the working directory for new processes is discovered. If by Nicholas Marriott · 13 years ago
  47. 65177b8 Add a respawn-pane command, from Marcel Partap. by Nicholas Marriott · 13 years ago
  48. 2b60c64 Get rid of the layout string code which tries to walk through the layout by Nicholas Marriott · 13 years ago
  49. 6f08472 Fix a memory leak if cmd_pane_session succeeds, from Tiago Cunha. by Nicholas Marriott · 13 years ago
  50. ec89eb9 Change so that an empty session name always means the current sessions by Nicholas Marriott · 14 years ago
  51. 5d519ba Add a flag to cmd_find_session so that attach-session can prefer by Nicholas Marriott · 14 years ago
  52. 808502a Give each pane created in a tmux server a unique id (starting from 0), by Nicholas Marriott · 14 years ago
  53. b802304 Set $TMUX without the session when background jobs are run. by Nicholas Marriott · 14 years ago
  54. 7502cb3 Clean up and simplify tmux command argument parsing. by Nicholas Marriott · 14 years ago
  55. cc42614 Change from a per-session stack of buffers to one global stack which is by Nicholas Marriott · 14 years ago
  56. acf13ce Store sessions in an RB tree by name rather than a list, this is tidier by Nicholas Marriott · 14 years ago
  57. 34d05ea We now send argv to the server after parsing it in the client to get the by Nicholas Marriott · 14 years ago
  58. 5de84ec Add a last-pane command (bound to ; by default). Requested ages ago by by Nicholas Marriott · 14 years ago
  59. 6c42f1a Fall back on normal session choice method if $TMUX exists but is invalid by Nicholas Marriott · 14 years ago
  60. 43355fa Make pane/window wrapping more logical (so with 10 windows, +10 from by Nicholas Marriott · 14 years ago
  61. ef72933 Add a choose-buffer command for easier use of the paste buffer stack. by Nicholas Marriott · 14 years ago
  62. 386849e Extend the -t:+ and -t:- window targets for next and previous window to by Nicholas Marriott · 14 years ago
  63. e0f4697 Identical behaviour to select-prompt can now be obtained with by Nicholas Marriott · 14 years ago
  64. 6f04866 Support up, down, left, right movement through panes with -UDLR flags to by Nicholas Marriott · 15 years ago
  65. 7d75dbb Permit !, + and - to be used for window targets to specify last window (!), or by Nicholas Marriott · 15 years ago
  66. 6a45fab New command, join-pane, to split and move an existing pane into the space (like by Nicholas Marriott · 15 years ago
  67. 6311bd1 Permit panes to be referred to as "top", "bottom", "top-left" etc, if the right by Nicholas Marriott · 15 years ago
  68. 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
  69. 0926a23 New command, capture-pane, which copies the entire pane contents to a paste by Nicholas Marriott · 15 years ago
  70. 9b9d26f Use home from struct passwd if HOME is empty as well as if it is NULL, and fix by Nicholas Marriott · 15 years ago
  71. 8db145d Add a per-client log of status line messages displayed while that client by Nicholas Marriott · 15 years ago
  72. 0785f28 Add an activity time for clients, like for sessions, and change session and by Nicholas Marriott · 15 years ago
  73. 5761ab6 If it isn't available explicitly, work out the current client in a similar way by Nicholas Marriott · 15 years ago
  74. 5289da2 Change session and client activity and creation time members to have more by Nicholas Marriott · 15 years ago
  75. 1c853c6 When matching the session names with -t, look for exact matches first before by Nicholas Marriott · 15 years ago
  76. ed62d12 tabs are better; ok nicm by Theo Deraadt · 15 years ago
  77. 1a3c334 cmd_find_client shouldn't die when there is an empty slot in the clients by Nicholas Marriott · 15 years ago
  78. adad557 Don't allow cmd_lookup_client to test clients without a session. by Nicholas Marriott · 15 years ago
  79. 64b5f39 Add a pipe-pane command to allow a pane to be piped to a shell command, for by Nicholas Marriott · 15 years ago
  80. 5aa49e6 Split list-panes off from list-windows. by Nicholas Marriott · 15 years ago
  81. 56ddd3c Fix comment. by Nicholas Marriott · 15 years ago
  82. 35ca994 Remove scroll mode which is now redundant, copy mode should be used instead. by Nicholas Marriott · 15 years ago
  83. 4ca2200 If no target client is specified to commands which accept one, try to guess the by Nicholas Marriott · 15 years ago
  84. 8fa1858 New lock-client and lock-session commands to lock an individual client or all by Nicholas Marriott · 15 years ago
  85. b01dcd7 Remove the internal tmux locking and instead detach each client and run the by Nicholas Marriott · 15 years ago
  86. 14ebcab run-shell command to run a shell command without opening a window, sending by Nicholas Marriott · 15 years ago
  87. 0431996 Add a new display-panes command, with two options (display-panes-colour and by Nicholas Marriott · 15 years ago
  88. 7b847ce Add a choose-client command and extend choose-{session,window} to accept a by Nicholas Marriott · 15 years ago
  89. 43cd40e The cursession member in struct cmd_ctx is always either curclient->session or by Nicholas Marriott · 15 years ago
  90. 6491274 Infrastructure and commands to manage the environment for processes started by Nicholas Marriott · 15 years ago
  91. 071494d Merge pane number into the target specification for pane commands. Instead of by Nicholas Marriott · 15 years ago
  92. 2b33108 Add an additional heuristic to work out the current session when run from the by Nicholas Marriott · 15 years ago
  93. 34a82e7 Make all messages sent between the client and server fixed size. by Nicholas Marriott · 15 years ago
  94. c6dac5c cmd_find_index should return -2 on error. by Nicholas Marriott · 15 years ago
  95. f7df0ba Tidy the target parsing code a bit and correct the behaviour so that as before by Nicholas Marriott · 15 years ago
  96. 6f5150a - New command display-message (alias display) to display a message in the by Nicholas Marriott · 15 years ago
  97. 780fd8f Return -1 not NULL on error, pointed out by Roy Marples. by Nicholas Marriott · 15 years ago
  98. 023d8d3 Tidy up and improve target (-t) argument parsing: by Nicholas Marriott · 15 years ago
  99. 81181bf New command, if-shell (alias if). Executes the tmux command in the second by Nicholas Marriott · 15 years ago
  100. b4efd1c Don't let ambiguous commands override an exact alias match: eg if commands by Nicholas Marriott · 15 years ago