1. 6469953 Support for windows larger than visible on the attached client. This has by nicm · 6 years ago
  2. 228e1a3 Use same working directory rules for jobs as new windows rather than by nicm · 6 years ago
  3. 79d2351 Memory leaks, from Gang Fan in GitHub issue 1453. by nicm · 6 years ago
  4. 1b4402c Add q: format prefix to escape sh(1) special characters. Suggested by by nicm · 6 years ago
  5. bceccc6 Move job struct into job.c. by nicm · 6 years ago
  6. 3bc08b0 Some tidying and helper functions. by nicm · 6 years ago
  7. 2fae6a5 Add accessors for grid linedata member, for some future work. From Dan Aloni. by nicm · 6 years ago
  8. a14aa78 Allow any punctuation (except :) as separator in s/x/y/, not only by nicm · 6 years ago
  9. d1f5142 If foo doesn't exist and can't be expanded in #{?foo,a,b} then assume it by nicm · 6 years ago
  10. 2a04665 Allow escaping , and } with # in #{}; GitHub issue 1332. by nicm · 6 years ago
  11. 3dceddd Change how display-message uses the client. Originally it was only by nicm · 7 years ago
  12. 19f3a5c Add a missing client-detached hook when the server shuts down, and do by nicm · 7 years ago
  13. ab6f0bb Do not leak memory when working out job name in formats. by nicm · 7 years ago
  14. 17d4c39 Discard all but the last line when reading from a #() command - the by nicm · 7 years ago
  15. 17655e5 Format for group list of "other sessions" is a bit weird, just list all by nicm · 7 years ago
  16. 95850e1 Tweak previous slightly so that current session is chosen if it is in by nicm · 7 years ago
  17. c1f62f1 Only show the first member of session groups in tree mode (-G flag disables). by nicm · 7 years ago
  18. a5fd578 Show exit status and time in the remain-on-exit pane text, mostly from by nicm · 7 years ago
  19. 5dd5543 Add -F to choose-tree, choose-client, choose-buffer to specify the by nicm · 7 years ago
  20. 6f9b965 Add selection_present format so commands in copy mode can use it, GitHub by nicm · 7 years ago
  21. 3df7c91 Add pane_at_left/right/top/bottom formats, from Amos Bird. by nicm · 7 years ago
  22. 9913cce Add a pane_pipe format to show if pipe-pane is active, GitHub issue 990. by nicm · 7 years ago
  23. 248aa54 Style and spacing nits. by nicm · 7 years ago
  24. aad4e4d Rewrite of choose mode, both to simplify and tidy the code and to add by nicm · 7 years ago
  25. a2ace9d Add ||, && format operators and C: to search pane content. by nicm · 7 years ago
  26. 1257501 Add m: for fnmatch(3) format matching. by nicm · 7 years ago
  27. f688653 Remove an unused variable. by nicm · 7 years ago
  28. 5d3cf2f Only redraw single client, and tweak some logging. by nicm · 7 years ago
  29. 7d3e2c8 Store copy mode search string in pane so search-again command works even by nicm · 7 years ago
  30. 5fee463 Add a format for the name of the pane's mode, lets it be used as a by nicm · 7 years ago
  31. 2fef10b Add some formats to look at the session window stack, suggested by Scott by nicm · 7 years ago
  32. ca6a121 Add a format for the last search string in copy mode and fix the prompt by nicm · 7 years ago
  33. 0ccfb61 In order that people can use formats like #D in #() in the status line by nicm · 7 years ago
  34. bba5887 Store state shared between multiple commands in the queue in a shared structure. by nicm · 7 years ago
  35. 2199310 Now that struct winlink has a session pointer, can remove some arguments. by nicm · 7 years ago
  36. 0f25ad3 There is no real need for window_printable_flags to allocate, make it by nicm · 7 years ago
  37. 0b44ad9 If a #() command doesn't exit, use its most recent line of output (it by nicm · 7 years ago
  38. fa6deb5 When the data we have buffered to write to a terminal grows beyond a by nicm · 8 years ago
  39. fb3c5ef Add a format for number of bytes writtent to client, useful for debugging. by nicm · 8 years ago
  40. 9b28200 Give each client a name. This defaults to the tty name as before but by nicm · 8 years ago
  41. 6b2009a Add a helper function for the most common format_create/defaults/expand pattern. by nicm · 8 years ago
  42. c6a3446 Instead of numbering session groups, give them a name which may be given by nicm · 8 years ago
  43. 20f5e37 Remove a debugging leftover. by nicm · 8 years ago
  44. 7d23d01 Add a window or pane id "tag" to each format tree and use it to separate by nicm · 8 years ago
  45. dd0c814 Implement "all event" (1003) mouse mode but in a way that works. The by nicm · 8 years ago
  46. 3408595 When a flag option is used in a format, it should use the number form by nicm · 8 years ago
  47. 68db958 getopt() has a struct option so just return to using options_entry. by nicm · 8 years ago
  48. 2b0bc9f Major tidy up and rework of options tree and set-option/show-options by nicm · 8 years ago
  49. bf6a5c0 Add a format for terminal type. by nicm · 8 years ago
  50. 844f2ea Add simple comparisons in formats: #{==:a,b} and #{!=:a,b} ("a" and "b" by nicm · 8 years ago
  51. 3cf19d6 Key running commands for #() by the unexpanded command, and run them by nicm · 8 years ago
  52. 3f35b52 Provide a way for hooks to tag formats onto the commands they fire so by nicm · 8 years ago
  53. b342bd0 Mass rename struct cmd_q to struct cmdq_item and related. by nicm · 8 years ago
  54. ddc4512 Rewrite command queue handling. Each client still has a command queue, by nicm · 8 years ago
  55. 5c49e1d Some other stuff that can be local to one file. by nicm · 8 years ago
  56. c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
  57. 95a4cc3 Use a fixed buffer for strftime() because there is no portable way to by nicm · 8 years ago
  58. 0d84fdd Final parts of command hooks, add before- and after- hooks to each command. by nicm · 8 years ago
  59. 8028560 Support negative trim values (#{=-10:pane_title}) to trim from the end, by nicm · 9 years ago
  60. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  61. 5ed17e8 Add key-table option to set the default key table for a session, allows by nicm · 9 years ago
  62. 01831da Add cmdq as an argument to format_create and add a format for the by nicm · 9 years ago
  63. e0f26dc Remove format_create_flags and just pass flags to format_create. by nicm · 9 years ago
  64. 1e2df2d Remove the -I part of show-messages which isn't really that useful; the by nicm · 9 years ago
  65. 577c0e3 Use __unused rather than rolling our own. by nicm · 9 years ago
  66. 5a5b950 Add s/foo/bar/: prefix for formats to substitute bar for foo. by nicm · 9 years ago
  67. 88aa1c8 Two spacing and spelling nits. by nicm · 9 years ago
  68. 531869b Add window_visible_layout which ignores zoomed panes and use it for by nicm · 9 years ago
  69. c5689a5 Long overdue change to the way we store cells in the grid: now, instead by nicm · 9 years ago
  70. 1b86f52 Nuke the utf8 and status-utf8 options and make tmux only a UTF-8 by nicm · 9 years ago
  71. a0f3999 Remove the mouse_utf8_flag format as well. by nicm · 9 years ago
  72. 01defc9 Because pledge(2) does not allow us to pass directory file descriptors by nicm · 9 years ago
  73. bf9c933 Like options, move the environ struct into environ.c. by nicm · 9 years ago
  74. 44657bf Move struct options into options.c. by nicm · 9 years ago
  75. 9952201 Count brackets in #{?...} so that nested conditional formats work, from by nicm · 9 years ago
  76. 17c2c42 The format callback may not always succeed, so we need to check for by nicm · 9 years ago
  77. e65306d Extend the modifiers allowed before formats: as well as the existing by nicm · 9 years ago
  78. 3faa51a Pass output from jobs through format_expand() so they are expanded again by nicm · 9 years ago
  79. 14da999 Format for scroll position, from Jorge Morante. by nicm · 9 years ago
  80. 16efa84 Make refresh-client force update of jobs, from Sina Siadat. by nicm · 9 years ago
  81. cfabe30 Add session_last_attached time and format, from Sina Siadat. by nicm · 9 years ago
  82. 82326dc A couple of style nits. by nicm · 9 years ago
  83. b569585 Move struct paste_buffer out of tmux.h. by nicm · 9 years ago
  84. 5f122af Make a few more expensive (ish) formats functions instead of inline. by nicm · 9 years ago
  85. 983ebb2 Allow formats to be specified as functions (in the code) so they are by nicm · 9 years ago
  86. 75d1005 Run status update on a per-client timer at status-interval. by nicm · 9 years ago
  87. b6618b6 Move format job cleanup onto its own timer. by nicm · 9 years ago
  88. ee9f708 Allow environment variables in #{}. by nicm · 9 years ago
  89. 81069f6 Add a format to show if client is a control client. From Bruno Sutic. by nicm · 9 years ago
  90. b43b13f Use xsnprintf. by nicm · 9 years ago
  91. d96ab34 Add window_activity format, from Thomas Adam based on a diff originally by nicm · 9 years ago
  92. 29c29e7 Add a format for client PID (client_pid) and server PID (pid). Diff for by nicm · 9 years ago
  93. bbc0898 wp->tty is a char [] not a char * so it can't be NULL. From Thomas Adam. by nicm · 9 years ago
  94. 2a8c264 Don't use special strings if #() commands fail, just remove the format by nicm · 9 years ago
  95. 74c755f Expand formats again inside #(), and free the temporaries. by nicm · 9 years ago
  96. 379400c Move the jobs output cache into the formats code so that #() work more by nicm · 9 years ago
  97. 7140cce Return empty string if format is empty rather than attempting to by nicm · 9 years ago
  98. ec34439 Add a session_alerts format which is a list of all the alerts in the by nicm · 9 years ago
  99. c4a4bd6 Move input parser structs into input.c (removing fairly useless by nicm · 9 years ago
  100. 31b1ab4 Add a format window_linked which is 1 if a window has been linked by nicm · 9 years ago