1. 428137d Instead of forbidding invalid session names, sanitize them like window names. by nicm · 4 years, 5 months ago
  2. 817d199 Add a number of new formats to inspect what sessions and clients a by nicm · 4 years, 10 months ago
  3. dfb7bb6 Merge hooks into options and make each one an array option. This allows by nicm · 5 years ago
  4. 78287e2 Break new window and pane creation common code from various commands and by nicm · 6 years ago
  5. b4f5b99 Tidy and rename some bits of status line code. by nicm · 6 years ago
  6. 6469953 Support for windows larger than visible on the attached client. This has by nicm · 6 years ago
  7. bd2896b SESSION_UNATTACHED flag is no longer necessary now we have an attached by nicm · 6 years ago
  8. fb1f0fe session_groups can be static also. by nicm · 6 years ago
  9. 988c6bc Improve logging of sessions. by nicm · 6 years ago
  10. c1f62f1 Only show the first member of session groups in tree mode (-G flag disables). by nicm · 7 years ago
  11. 58b7966 Some extra logging to show why tmux might exit. by nicm · 7 years ago
  12. d98d316 Some new notifications, mainly for active pane and current window and session: by nicm · 7 years ago
  13. 0f2f783 Log what is happening with window and session reference counts much more by nicm · 7 years ago
  14. c48d09e Do not update TERM into config file parsing has finished. by nicm · 7 years ago
  15. dbfee6a Move server_fill_environ into environ.c and move some other common code into it. by nicm · 8 years ago
  16. c6a3446 Instead of numbering session groups, give them a name which may be given by nicm · 8 years ago
  17. 5e6a817 Cache status line position to reduce option lookups during output. by nicm · 8 years ago
  18. 899e629 Alerts are too slow, so rather than walking all sessions and windows, by nicm · 8 years ago
  19. bc27451 Move session-create hook out of session_create so it works with grouped sessions. by nicm · 8 years ago
  20. 41e633a Use the notify name string instead of going via an enum and change by nicm · 8 years ago
  21. e799037 Give window_create and window_create1 better names. by nicm · 8 years ago
  22. 3f138dc Rename a function for consistency and some spacing nits. by nicm · 8 years ago
  23. 7a1a01f Remove the set-remain-on-exit option, it was always a hack and can now by nicm · 8 years ago
  24. e454018 Add static in window-*.c and move some internal functions out of tmux.h. by nicm · 8 years ago
  25. c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
  26. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  27. d2fb0ef Add hooks infrastructure, basic commands (set-hook, show-hooks) and a by nicm · 9 years ago
  28. 577c0e3 Use __unused rather than rolling our own. by nicm · 9 years ago
  29. ca5e6bf Don't update activity time twice for new sessions, and add some logging. by nicm · 9 years ago
  30. 01defc9 Because pledge(2) does not allow us to pass directory file descriptors by nicm · 9 years ago
  31. bf9c933 Like options, move the environ struct into environ.c. by nicm · 9 years ago
  32. 44657bf Move struct options into options.c. by nicm · 9 years ago
  33. fa3d4fa Fix a spelling error, sesson -> session. by nicm · 9 years ago
  34. b5aaefc Move alerts onto events rather than checking every loop. by nicm · 9 years ago
  35. ed2a486 Don't leak name when freeing session, from Kuang-che Wu. by nicm · 9 years ago
  36. f6a0f87 Per-session timers for locking, and remove the global one-second timer. by nicm · 9 years ago
  37. 57cc4d4 Make session_update_activity more useful and use it in more places. by nicm · 9 years ago
  38. 641a9cd Similarly, for sessions use a callback to free rather than checking every loop. by nicm · 9 years ago
  39. 31b1ab4 Add a format window_linked which is 1 if a window has been linked by nicm · 9 years ago
  40. 6dbd63b Move the functions to convert ids from strings into session.c and window.c. by nicm · 9 years ago
  41. 9a453dd Make session_has return a flag, returning the first winlink found is a by nicm · 9 years ago
  42. abfb965 Fix some spacing nits. by nicm · 10 years ago
  43. 68cb1c0 Merge unlink-window into kill-window. by nicm · 10 years ago
  44. b3e8d44 If multiple arguments are given to new-session, new-window, by nicm · 10 years ago
  45. 3e27be3 Set PATH explicitly, either from client or session by nicm · 11 years ago
  46. 9ee93b3 Do not permit periods in session names (colons are already banned). From by nicm · 11 years ago
  47. 282c5f9 Alter how tmux handles the working directory to internally use file by nicm · 11 years ago
  48. 34674bb Renumber windows: Lookup lastw via window not index by nicm · 11 years ago
  49. d3830e6 Grouped sessions were being leaked on destroy, correctly free them. by nicm · 11 years ago
  50. 6fee3e9 Rename session idx to session id throughout and add $ prefix to targets by Nicholas Marriott · 12 years ago
  51. eaaeb28 Add session_set_current helper function, extracted from a diff from by Nicholas Marriott · 12 years ago
  52. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  53. 63f5c38 Clear flags across all sessions, from Thomas Adam. by Nicholas Marriott · 12 years ago
  54. a6c22d6 Add a flag to move-window to renumber the windows in a session (closing by Nicholas Marriott · 12 years ago
  55. 4621034 Add notify hooks for various events, the functions are currently empty by Nicholas Marriott · 13 years ago
  56. 6b734d1 Correctly skip existing numbers when generating the name for a new session. by Nicholas Marriott · 13 years ago
  57. ec89eb9 Change so that an empty session name always means the current sessions by Nicholas Marriott · 14 years ago
  58. 1270f8f Check if the index is in use and fail before creating the child process, by Nicholas Marriott · 14 years ago
  59. 2d82567 Er, fix next and previous session functions to actually work, part 2. by Nicholas Marriott · 14 years ago
  60. 588ebb5 Fix next and previous session functions to actually work. by Nicholas Marriott · 14 years ago
  61. 04b32fa Don't reset the activity timer for unattached sessions every second, by Nicholas Marriott · 14 years ago
  62. cc42614 Change from a per-session stack of buffers to one global stack which is by Nicholas Marriott · 14 years ago
  63. acf13ce Store sessions in an RB tree by name rather than a list, this is tidier by Nicholas Marriott · 14 years ago
  64. 1b8488e Fix another stray addition that was too early. Oops. by Nicholas Marriott · 14 years ago
  65. 6fcdc71 Undo a change to next/previous session that got mixed in prematurely. by Nicholas Marriott · 14 years ago
  66. 8705c6b Dead sessions are never on the active sessions list, so the SESSION_DEAD by Nicholas Marriott · 14 years ago
  67. a51dcdc Unify the way sessions are used by callbacks - store the address and use by Nicholas Marriott · 14 years ago
  68. a22a6de Add -n and -p flags to switch-client to move to the next and previous by Nicholas Marriott · 14 years ago
  69. 07a71fd Store the current working directory in the session, change the default-path by Nicholas Marriott · 14 years ago
  70. e63f054 Having a list of winlinks->alerts for each session is stupid, just store by Nicholas Marriott · 14 years ago
  71. 447a07e Rename activity->alert in a couple of functions for consistency. by Nicholas Marriott · 14 years ago
  72. 4feee12 Fix a couple of problems with grouped sessions reported by danh: redraw by Nicholas Marriott · 15 years ago
  73. 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
  74. 4ca857e Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to by Nicholas Marriott · 15 years ago
  75. 1415eb3 Use winlink_remove() to remove old winlinks when synchronizing grouped sessions by Nicholas Marriott · 15 years ago
  76. 5289da2 Change session and client activity and creation time members to have more by Nicholas Marriott · 15 years ago
  77. 9dd72b9 Add "grouped sessions" which have independent name, options, current window and by Nicholas Marriott · 15 years ago
  78. b7d031c Support for individual session idle time locking. May be enabled by turning off by Nicholas Marriott · 15 years ago
  79. 273f1b3 Regularise some fatal messages. by Nicholas Marriott · 15 years ago
  80. 5c60162 Rather than constructing an entire termios struct from ttydefaults.h, just let by Nicholas Marriott · 15 years ago
  81. 51c9574 Reference count clients and sessions rather than relying on a saved index for by Nicholas Marriott · 15 years ago
  82. 7d5e494 When using tmux as a login shell, there is currently no way to specify a shell by Nicholas Marriott · 15 years ago
  83. 3ad4de6 Add a base-index session option to specify the first index checked when looking by Nicholas Marriott · 15 years ago
  84. 52793e7 When creating a new session from the command-line where there is an external by Nicholas Marriott · 15 years ago
  85. 6491274 Infrastructure and commands to manage the environment for processes started by Nicholas Marriott · 15 years ago
  86. 923ccfa Rename the global options variables to be shorter and to make session options by Nicholas Marriott · 15 years ago
  87. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago