1. cbe7812 Use the clear history function for the 3J sequence rather than doing it manually. by nicm · 5 years ago
  2. ddf53d6 Correctly adjust mouse position if the status line is at the top and by nicm · 5 years ago
  3. 3635b3c Correctly clear underscore colour in grid_get_cell1, also fix struct by nicm · 5 years ago
  4. 55c694a Do not use uninitialized buffer name. by nicm · 5 years ago
  5. 6a489fa Command prompt key presses need to avoid the command queue, GitHub issue by nicm · 5 years ago
  6. 2da0504 Add a "fill" style attribute to clear the entire format drawing area in by nicm · 5 years ago
  7. cf30e0f Do not double free window if pane fails to start. by nicm · 5 years ago
  8. 4ff7bc3 When system calls indicate an error they return -1, not some arbitrary by deraadt · 5 years ago
  9. 6ce38b7 asprintf returns -1, not an arbitrary value < 0. Also upon error the by deraadt · 5 years ago
  10. b434692 minor eol issues; by jmc · 5 years ago
  11. dae2868 Add support for underscore colours with Setulc capability, mostly from by nicm · 5 years ago
  12. 3a6d90a Fix a typo in window_pane_find_down (w not wp) and a missing PANE_STATUS_TOP. by nicm · 5 years ago
  13. 87ea143 Pass keys that aren't 0-9 on to normal key processing when display-panes by nicm · 5 years ago
  14. c599ad6 Log window and pane resizes. by nicm · 5 years ago
  15. 80d7661 Fix some comments (top/bottom not left/right). by nicm · 5 years ago
  16. d83f356 Add #define for the pane status line option position numbers. by nicm · 5 years ago
  17. 20b938b Expand arguments to C and s format modifiers (matches m which already expands). by nicm · 5 years ago
  18. bdab595 Trim trailing spaces when matching. by nicm · 5 years ago
  19. f1100f9 Do not always set scope for panes because the window check might fail, by nicm · 5 years ago
  20. e3c2772 Man page fixes from lacygoill at lacygoill dot me. by nicm · 5 years ago
  21. 1d8e545 Add -r to find-window for regex instead of fnmatch. by nicm · 5 years ago
  22. 97a317a Need to always check focus even if not current window. by nicm · 5 years ago
  23. cb5e681 FIx return of options_scope_from_name on error. by nicm · 5 years ago
  24. f4e8357 Fix how regex substitution works with empty matches. by nicm · 5 years ago
  25. fc1df91 allow-rename and alternate-screen can be pane options. by nicm · 5 years ago
  26. c157372 Still need to walk the options tree for user options. by nicm · 5 years ago
  27. 5f92f92 Add a per-pane option set. Pane options inherit from window options (so by nicm · 5 years ago
  28. c1ede50 Add a helper function to work out option table from name. by nicm · 5 years ago
  29. cd1fc42 Add a -A flag to show-options to show parent options as well. by nicm · 5 years ago
  30. ae54128 Expand command formats in %if and move the config file loading later (to by nicm · 5 years ago
  31. 250fdd0 Handle comments more correctly inside {}, from Avi Halachmi. by nicm · 5 years ago
  32. 9272fe3 Add a cmdq_continue function rather than twiddling the flag directly. by nicm · 5 years ago
  33. 03da0ce Use the right format modifier when comparing, and remove a couple of by nicm · 5 years ago
  34. c95cd9e Do not loop forever if a menu item contains invisible characters, by nicm · 5 years ago
  35. d1d3bbb Show filename with -v for source-file. by nicm · 5 years ago
  36. 4520358 A couple of minor parser changes around conditions: 1) only treat #{ by nicm · 5 years ago
  37. f35f15b Use the right client when working out where to save or load the buffer, by nicm · 5 years ago
  38. eef11b6 Do not crash if the environment variable is present but empty. by nicm · 5 years ago
  39. b8a9c74 tweak previous; by jmc · 5 years ago
  40. 26b9a8e Set the cursor x at the same time as changing the y or the end of line by nicm · 5 years ago
  41. 3e72e98 Add regular expression support for the format search, match and by nicm · 5 years ago
  42. 7e6a26c Do not use $TMUX to find the session because for windows in multiple by nicm · 5 years ago
  43. b12df01 Pass target on to new commands with if -F. by nicm · 5 years ago
  44. 9d42bd3 Do not always resize the window back to its original size after applying by nicm · 5 years ago
  45. 1a9f9c0 Do not resize panes unless they are in an attached, active window. From by nicm · 5 years ago
  46. 915097d Exiting alternate screen mode should restore cursor position and by nicm · 5 years ago
  47. 43796bf Do not try to parse command when unsetting, GitHub issue 1788. by nicm · 5 years ago
  48. e37f34f Do not load the config file if the server is exiting because it failed by nicm · 5 years ago
  49. 8f40796 Add a -v flag to source-file to show the commands and line numbers. by nicm · 5 years ago
  50. 09e90c1 Need to increment the argument to skip the prefix earlier, fixes by nicm · 5 years ago
  51. 4ca1de1 Add new-session -X and attach-session -x to send SIGHUP to parent when by nicm · 5 years ago
  52. 900238a yacc(1) copies its union so it is not a good place to store by nicm · 5 years ago
  53. 2c6c3a1 If only one of -x or -y is given, use the calculated size for the by nicm · 5 years ago
  54. 39ea8a2 Need stdlib.h, from Ben Boeckel. by nicm · 5 years ago
  55. 2c5f307 Fix warnings, from Ben Boeckel. by nicm · 5 years ago
  56. 82e4740 Allow % strings that are all numbers or %s, and fix a double free. Both by nicm · 5 years ago
  57. b26523c Remove a leftover abort and some fixes from cppcheck. by nicm · 5 years ago
  58. 8fb796b No longer need to reduce line number by one. by nicm · 5 years ago
  59. 89d2c7e I had hoped that non-xenl terminals had died out, at least in fairly by nicm · 5 years ago
  60. 7dced37 Use VIS_CSTYLE for the arguments and add the missing escapes it can by nicm · 5 years ago
  61. c17edd5 The line number needs to be updated only after the \n is processed by by nicm · 5 years ago
  62. a4424fb Support \ooo escapes, from Avi Halachmi. by nicm · 5 years ago
  63. 580cd16 Redraw status line if size changes, GitHub issue 1762. Also fix length by nicm · 5 years ago
  64. 4382538 Do not read past the end of the argument string if it is empty. by nicm · 5 years ago
  65. 299d4f3 Exit 1 correctly if source-file fails. by nicm · 5 years ago
  66. 0ec4106 Allow source-file to take multiple arguments. by nicm · 5 years ago
  67. e0fd295 Change the default right click pane to open the menu if not in a mode by nicm · 5 years ago
  68. 99a8469 Add key bindings to open the window and pane menus (C-m and M-m for now). by nicm · 5 years ago
  69. 1225541 Allow menu items to be disabled by putting a - at the start of their by nicm · 5 years ago
  70. 799a154 Change display-menu from taking a single string to a set of arguments, by nicm · 5 years ago
  71. 90cd045 Clarify newlines inside {} a little. by nicm · 5 years ago
  72. 94f6488 Go less crazy with horizontal separators on default menus. by nicm · 5 years ago
  73. ae3eba6 Fix crash when killing the current window, reported by Jesus Rafael by nicm · 5 years ago
  74. 6b33212 Add an additional {} syntax for defining strings in the configuration by nicm · 5 years ago
  75. 65e5e14 Fix the intended ordering of items in buffer mode - it should not always by nicm · 5 years ago
  76. 097973e Add keys for new menu items. by nicm · 5 years ago
  77. 5fef946 Always redraw overlay if it is on (so status line doesn't redraw over it). by nicm · 5 years ago
  78. 023c2c5 Do not accept choice unless mouse has actually moved before. by nicm · 5 years ago
  79. e90d4a6 Add formats for word and line under the mouse and use them to add some by nicm · 5 years ago
  80. 6431005 Add a way to append or prepend to a format if the length has been limited. by nicm · 5 years ago
  81. 6dee409 Some other platforms doesn't support fmemopen(3) (not unexpectedly), so by nicm · 5 years ago
  82. a65a6d6 Add <, >, <=, >= for formats, GitHub issue 1747. by nicm · 6 years ago
  83. 207789d Client name can actually be NULL, so use address in that case. by nicm · 6 years ago
  84. d7586d3 Use client name when logging command queue. by nicm · 6 years ago
  85. f8d3d24 Merge cmd_list_parse into cmd-parse.y so it can use the new alias by nicm · 6 years ago
  86. 6b0fa14 Fix error handling in if-shell. by nicm · 6 years ago
  87. 930245d Make cmd_log_argv take a printf-like format for the prefix. by nicm · 6 years ago
  88. 0dc8b7d unbreak build, okay nicm@ by espie · 6 years ago
  89. f3e01ec Fix line numbers - commands are added after the line ends so they need to by nicm · 6 years ago
  90. 6c260af Use the same argument escaping code for options as well. by nicm · 6 years ago
  91. f006116 Environment variables can start with { also. by nicm · 6 years ago
  92. eb8b51e Fix drawing of status-right when it is aligned to the centre, GitHub issue 1754. by nicm · 6 years ago
  93. 27bfb56 Break the argument escaping code into a separate function and use it to by nicm · 6 years ago
  94. 3e3eb1d Don't remove group items for group 0 (no group). by nicm · 6 years ago
  95. a4fe7e8 Fix length calculation for pasting UTF-8 characters in the status line, by nicm · 6 years ago
  96. 723010b Replace the split parser code (cfg.c and cmd-string.c) with a single by nicm · 6 years ago
  97. 5571d7a Fix crash if window doesn't exist, GitHub issue 1751. by nicm · 6 years ago
  98. ae4cccb Fix a couple of Ta from Alphonse Mariya. by nicm · 6 years ago
  99. 87d8217 Fix ordering of source-file with multiple files and add flags to load_cfg. by nicm · 6 years ago
  100. e128c7f Replace the various identical error callbacks with a single one in cmd-queue.c. by nicm · 6 years ago