1. 67d995d If a window appears in only one attached session, there is no point in by nicm · 4 years, 11 months ago
  2. 4ca1de1 Add new-session -X and attach-session -x to send SIGHUP to parent when by nicm · 5 years ago
  3. 78287e2 Break new window and pane creation common code from various commands and by nicm · 6 years ago
  4. 6469953 Support for windows larger than visible on the attached client. This has by nicm · 6 years ago
  5. e3b034f Fix switch-client -l, from Jean-Marc Eurin in GitHub issue 1343. by nicm · 6 years ago
  6. 17cf1b2 Pass flags into cmd_find_from_* to fix prefer-unattached, reported by by nicm · 7 years ago
  7. ee45a8a Get rid of the extra layer of flags and cmd_prepare() and just store the by nicm · 7 years ago
  8. 2c0f826 Mouse bindings and hooks set up an initial current state when running a by nicm · 7 years ago
  9. bba5887 Store state shared between multiple commands in the queue in a shared structure. by nicm · 7 years ago
  10. 6b2009a Add a helper function for the most common format_create/defaults/expand pattern. by nicm · 8 years ago
  11. e67548d Cancel key table when switching session, unless the key is going to by nicm · 8 years ago
  12. 7d23d01 Add a window or pane id "tag" to each format tree and use it to separate by nicm · 8 years ago
  13. 54309cc Do not clear the key table when changing session on a client, so that by nicm · 8 years ago
  14. 4b2821f Make update-environment an array as well. by nicm · 8 years ago
  15. 41e633a Use the notify name string instead of going via an enum and change by nicm · 8 years ago
  16. b342bd0 Mass rename struct cmd_q to struct cmdq_item and related. by nicm · 8 years ago
  17. ddc4512 Rewrite command queue handling. Each client still has a command queue, by nicm · 8 years ago
  18. a81685b Add static in cmd-* and fix a few other nits. by nicm · 8 years ago
  19. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  20. f2ec911 Detach the right session with -d. by nicm · 9 years ago
  21. 021c643 Add infrastructure to work out the best target given a pane or window by nicm · 9 years ago
  22. ac97783 Some hooks API changes to fire a hook while waiting another cmdq and by nicm · 9 years ago
  23. a3129fd Instead of combined flags for -c, -s, -t, split into different sets by nicm · 9 years ago
  24. ecfeee2 Use member names in cmd_entry definitions so I stop getting confused by nicm · 9 years ago
  25. 4a4daf1 Instead of every command resolving the target (-t or -s) itself, prepare by nicm · 9 years ago
  26. 5ed17e8 Add key-table option to set the default key table for a session, allows by nicm · 9 years ago
  27. 01831da Add cmdq as an argument to format_create and add a format for the by nicm · 9 years ago
  28. e0f26dc Remove format_create_flags and just pass flags to format_create. by nicm · 9 years ago
  29. d2fb0ef Add hooks infrastructure, basic commands (set-hook, show-hooks) and a by nicm · 9 years ago
  30. b956334 Fix bell indicators across detach, reported by Torbjorn Lonnemark, diff by nicm · 9 years ago
  31. dcdccf8 Same bug as last commit, but in the other copy of the loop in this file... by nicm · 9 years ago
  32. 455284f Detach the client we are looping over, from Thomas Adam. by nicm · 9 years ago
  33. ba7fb49 Fall back silently to ~ or / rather than checking -c with access(), this by nicm · 9 years ago
  34. 01defc9 Because pledge(2) does not allow us to pass directory file descriptors by nicm · 9 years ago
  35. bf9c933 Like options, move the environ struct into environ.c. by nicm · 9 years ago
  36. 44657bf Move struct options into options.c. by nicm · 9 years ago
  37. 07b0ea0 Break the common process set up, event loop and imsg dispatch code by nicm · 9 years ago
  38. d1b73be Hoist some common code out of both branches of an if/else. by nicm · 9 years ago
  39. cfabe30 Add session_last_attached time and format, from Sina Siadat. by nicm · 9 years ago
  40. 57cc4d4 Make session_update_activity more useful and use it in more places. by nicm · 9 years ago
  41. 75d1005 Run status update on a per-client timer at status-interval. by nicm · 9 years ago
  42. b298478 Update environment with -E when attach-session used on an already by nicm · 9 years ago
  43. a412dd6 Fix loop comparison broken in last commit, from Thomas Adam. by nicm · 9 years ago
  44. c4e811e Add -E flag when attaching or switching client to bypass by nicm · 9 years ago
  45. 6b21296 Move the nested check from client to server and compare the client tty by nicm · 9 years ago
  46. 6dbd63b Move the functions to convert ids from strings into session.c and window.c. by nicm · 9 years ago
  47. aeedb46 Convert clients list into a TAILQ. by nicm · 9 years ago
  48. 4946f74 Wrap all the individual format_* calls in a single format_defaults functions. by nicm · 10 years ago
  49. 45dfc5a Instead of setting up the default keys by building the key struct by nicm · 10 years ago
  50. f182892 Change terminal-overrides to a server option (now that we have them), it by nicm · 11 years ago
  51. 1a0d3cd Allow attach-session -t to accept a window and pane to select them on by nicm · 11 years ago
  52. 7936ce3 Show session name in detached message. Requested by somebody a few by nicm · 11 years ago
  53. 282c5f9 Alter how tmux handles the working directory to internally use file by nicm · 11 years ago
  54. 6c09301 Remove CMD_SENDENVIRON. by nicm · 11 years ago
  55. 14fad6a Add -A flag to new-session to make it behave like attach-session if the by Nicholas Marriott · 12 years ago
  56. 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago
  57. ede8312 Make command exec functions return an enum rather than -1/0/1 values and by Nicholas Marriott · 12 years ago
  58. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  59. 682884e Add a helper function to send ready message. by Nicholas Marriott · 12 years ago
  60. 37f9bb4 Add a helper function to open the terminal for attach-/new-session. by Nicholas Marriott · 12 years ago
  61. 4621034 Add notify hooks for various events, the functions are currently empty by Nicholas Marriott · 13 years ago
  62. cd10f73 Only hide flags on the current window when the session is attached, from by Nicholas Marriott · 13 years ago
  63. 5d519ba Add a flag to cmd_find_session so that attach-session can prefer by Nicholas Marriott · 14 years ago
  64. 7502cb3 Clean up and simplify tmux command argument parsing. by Nicholas Marriott · 14 years ago
  65. 04b32fa Don't reset the activity timer for unattached sessions every second, by Nicholas Marriott · 14 years ago
  66. acf13ce Store sessions in an RB tree by name rather than a list, this is tidier by Nicholas Marriott · 14 years ago
  67. bb53c20 Support attaching a client read-only with a new -r flag to the attach-session 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. 76ef877 Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the by Nicholas Marriott · 15 years ago
  70. 2756437 Only need to chmod +x or -x the socket when a client is created, lost or 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. 1673735 Add a terminal-overrides session option allowing individual terminfo(5) entries by Nicholas Marriott · 15 years ago
  73. 34a82e7 Make all messages sent between the client and server fixed size. by Nicholas Marriott · 15 years ago
  74. 96a7cf1 Both of cmdclient and curclient CAN be NULL - if the command is executed from by Nicholas Marriott · 15 years ago
  75. ce53936 Tidy up new-session and attach-session and change them to work from inside by Nicholas Marriott · 15 years ago
  76. 5f108d9 Having fixed flags for single-character getopt options is a bit hard to by Nicholas Marriott · 15 years ago
  77. 74749e8 Remove trailing newlines, spaces, and tabs. by Ray Lai · 15 years ago
  78. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago