1. 4b7e97b Set up format tree for %if, GitHub issue 1896. by nicm · 5 years ago
  2. 9272fe3 Add a cmdq_continue function rather than twiddling the flag directly. by nicm · 5 years ago
  3. 2c5f307 Fix warnings, from Ben Boeckel. by nicm · 5 years ago
  4. c17edd5 The line number needs to be updated only after the \n is processed by by nicm · 5 years ago
  5. 207789d Client name can actually be NULL, so use address in that case. by nicm · 5 years ago
  6. d7586d3 Use client name when logging command queue. by nicm · 5 years ago
  7. 3e3eb1d Don't remove group items for group 0 (no group). by nicm · 5 years ago
  8. 723010b Replace the split parser code (cfg.c and cmd-string.c) with a single by nicm · 5 years ago
  9. e128c7f Replace the various identical error callbacks with a single one in cmd-queue.c. by nicm · 5 years ago
  10. 82ebd98 Move the single command flag (CMD_CONTROL) into the shared flags. by nicm · 5 years ago
  11. e8e4f4e Insert after the right element on queue. by nicm · 5 years ago
  12. cf6075f Correct ordering when adding after an existing item. by nicm · 5 years ago
  13. dfb7bb6 Merge hooks into options and make each one an array option. This allows by nicm · 5 years ago
  14. 78287e2 Break new window and pane creation common code from various commands and by nicm · 6 years ago
  15. 3f6bfba Allow multiple modes to be open in a pane. A stack of open modes is kept by nicm · 6 years ago
  16. de730f6 Make the mode used to view command output (a variant of copy mode) use by nicm · 6 years ago
  17. 3c24bc5 Tidy changing the mode into window_copy_init_for_output. by nicm · 6 years ago
  18. 17cf1b2 Pass flags into cmd_find_from_* to fix prefer-unattached, reported by by nicm · 7 years ago
  19. a67df17 Tweak some logging. by nicm · 7 years ago
  20. aad4e4d Rewrite of choose mode, both to simplify and tidy the code and to add by nicm · 7 years ago
  21. 0ccfb61 In order that people can use formats like #D in #() in the status line by nicm · 7 years ago
  22. ee45a8a Get rid of the extra layer of flags and cmd_prepare() and just store the by nicm · 7 years ago
  23. c8ecbf3 Log error properly when no current state, and some other minor tweaks. by nicm · 7 years ago
  24. c68ceca Clear shared state if not filling it in. by nicm · 7 years ago
  25. efaf4c1 Make the cmd_find_* functions more obvious when looking for a client, by nicm · 7 years ago
  26. 3c87623 Style nits and an unused struct. by nicm · 7 years ago
  27. bba5887 Store state shared between multiple commands in the queue in a shared structure. by nicm · 7 years ago
  28. 7d23d01 Add a window or pane id "tag" to each format tree and use it to separate by nicm · 8 years ago
  29. 9a56671 Highlight all occurrences of search string after searching in copy mode. by nicm · 8 years ago
  30. 2e5c49a Give each item on queue a name for better logging. by nicm · 8 years ago
  31. 3f35b52 Provide a way for hooks to tag formats onto the commands they fire so by nicm · 8 years ago
  32. b342bd0 Mass rename struct cmd_q to struct cmdq_item and related. by nicm · 8 years ago
  33. ddc4512 Rewrite command queue handling. Each client still has a command queue, by nicm · 8 years ago
  34. 9b3ae84 Drain notifys once at the end of the server loop instead of doing it by nicm · 8 years ago
  35. 1721d19 source-file and some other commands can recurse back into cmdq_continue, by nicm · 8 years ago
  36. 4289a1e Trying to do hooks generically is way too complicated and unreliable and by nicm · 8 years ago
  37. 4d9e6ea Some improvements and bug fixes for hooks: by nicm · 8 years ago
  38. e454018 Add static in window-*.c and move some internal functions out of tmux.h. by nicm · 8 years ago
  39. bb5798a Couple of vasprintf -> xvasprintf. by nicm · 8 years ago
  40. 0d84fdd Final parts of command hooks, add before- and after- hooks to each command. by nicm · 8 years ago
  41. b5b5221 Split out getting the current state from the target search so it can be by nicm · 9 years ago
  42. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  43. 021c643 Add infrastructure to work out the best target given a pane or window by nicm · 9 years ago
  44. 208e2da If command returns error, report it. by nicm · 9 years ago
  45. 4a4daf1 Instead of every command resolving the target (-t or -s) itself, prepare by nicm · 9 years ago
  46. 6a2ca34 Do not set a limit on the length of commands when printing them. by nicm · 9 years ago
  47. c56b81a Push stdout and stderr to clients more aggressively, and add an event to by nicm · 9 years ago
  48. c41673f If we know the terminal outside tmux is not UTF-8, replace UTF-8 in by nicm · 9 years ago
  49. 0760343 Use client pointer not file descriptor in logging. by nicm · 9 years ago
  50. c1d0b6a Log when cmdq_continue is called. by nicm · 9 years ago
  51. a4b4b29 Rename cmd_q dead flag to a general flags bitmask (will be more flags later). by nicm · 9 years ago
  52. 84f0622 Break cmdq_continue inner loop into a helper function. by nicm · 9 years ago
  53. bf635e7 Rewrite of tmux mouse support which was a mess. Instead of having by nicm · 10 years ago
  54. 4d05d88 Take a reference to prevent cmdq being freed during the command. Can by nicm · 10 years ago
  55. e5d9cef There is no need to save the guard state because the function checks it by nicm · 10 years ago
  56. b496b1f Move cfg_causes local into cfg.c and remove struct causelist. by nicm · 10 years ago
  57. 85671a5 Save next item after firing command in case it has added to the queue. by nicm · 10 years ago
  58. 0a1a88d Better format for printf format attributes. by nicm · 10 years ago
  59. 4e956d5 Various minor style and spacing nits. by nicm · 10 years ago
  60. 2740490 Remove the "info" message mechanism, this was only used for about five by nicm · 11 years ago
  61. 1751da7 Remove unnecessary calls to va_start/va_end, from Tiago Cunha. by nicm · 11 years ago
  62. 282c5f9 Alter how tmux handles the working directory to internally use file by nicm · 11 years ago
  63. a0404b6 retcode -> retval for exit message. by nicm · 11 years ago
  64. b822d24 Support -c for new-session, based on code from J Raynor. by nicm · 11 years ago
  65. 4c9f41f Pass flags into cmdq_guard as an argument since sometimes cmdq->cmd can by nicm · 11 years ago
  66. 662d471 Mark control commands specially so the client can identify them, based by Nicholas Marriott · 11 years ago
  67. 7ada64d Fix bug where end guard in control mode was not printed after session by Nicholas Marriott · 12 years ago
  68. 771d7db Fix compiler warnings, missing #include. From Thomas Adam. by Nicholas Marriott · 12 years ago
  69. 0ef24f9 Only send end guard if begin was sent, from George Nachman. by Nicholas Marriott · 12 years ago
  70. ebd9c61 Add some additional debug logging. by Nicholas Marriott · 12 years ago
  71. 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago