1. d9f8485 Check cursor options when a pane is created, not just when they are changed. by nicm · 2 years, 5 months ago
  2. e6e737a Add an option to set the character used for unused areas of the by nicm · 2 years, 8 months ago
  3. 5710037 Add a cursor-style option, from Alexis Hildebrandt in GitHub issue 2960. by nicm · 3 years, 1 month ago
  4. 8d2286b Add a cursor-colour option, from Alexis Hildebrandt in GitHub issue 2959. by nicm · 3 years, 1 month ago
  5. add2063 Add popup-border-lines option to set popup line style, from Alexis by nicm · 3 years, 1 month ago
  6. 5241dae Stop caring about empty commands, just treat as a null command. by nicm · 3 years, 3 months ago
  7. 7eea3d7 Break the colour palette into a struct rather than just a single array by nicm · 3 years, 3 months ago
  8. d98f9f7 Add split-window -Z to start the pane zoomed, GitHub issue 2591. by nicm · 3 years, 9 months ago
  9. 0730dce Hide some warnings on newer GCC versions, GitHUb issue 2525. by nicm · 3 years, 10 months ago
  10. 20fcdcf Allow colour to be spelt as color, from Boris Verkhovsky. GitHub issue 2317. by nicm · 4 years, 3 months ago
  11. 1bf9555 d and D keys to reset to default in customize mode. by nicm · 4 years, 5 months ago
  12. 292b335 Separate key flags and modifiers, log key flags, make the "xterm" flag by nicm · 4 years, 6 months ago
  13. d67245c Add a customize mode where keys and options may be browsed and changed, by nicm · 4 years, 6 months ago
  14. f03b611 Drop having a separate type for style options and make them all strings, by nicm · 4 years, 6 months ago
  15. 7826d40 Style nits in function arguments. by nicm · 4 years, 12 months ago
  16. 9fd62ef Rewrite options_array_set to be clearer and remove a spurious warning by nicm · 5 years ago
  17. 68d59a1 Memory leaks, from Igor Wong in GitHub issue 1934. by nicm · 5 years ago
  18. f1100f9 Do not always set scope for panes because the window check might fail, by nicm · 5 years ago
  19. cb5e681 FIx return of options_scope_from_name on error. by nicm · 5 years ago
  20. 5f92f92 Add a per-pane option set. Pane options inherit from window options (so by nicm · 5 years ago
  21. c1ede50 Add a helper function to work out option table from name. by nicm · 5 years ago
  22. 43796bf Do not try to parse command when unsetting, GitHub issue 1788. by nicm · 5 years ago
  23. b26523c Remove a leftover abort and some fixes from cppcheck. by nicm · 5 years ago
  24. 27bfb56 Break the argument escaping code into a separate function and use it to by nicm · 6 years ago
  25. 723010b Replace the split parser code (cfg.c and cmd-string.c) with a single by nicm · 6 years ago
  26. 00f19b7 Fix some indentation and dead assignments. by nicm · 6 years ago
  27. dfb7bb6 Merge hooks into options and make each one an array option. This allows by nicm · 6 years ago
  28. 32a81e1 Make options_tostring allocate its result instead of using a stack by nicm · 6 years ago
  29. 772b3b7 Indicate an array option with a flag rather than a special type so that by nicm · 6 years ago
  30. f34ebfe The individual -fg, -bg and -attr options have been deprecated (in by nicm · 6 years ago
  31. ce6be7a Make array options a sparse tree instead of an array of char * and by nicm · 6 years ago
  32. e8b33af Add a way to set individual defaults for an array option. by nicm · 6 years ago
  33. 13f9a06 Add a wrapper (struct style) around styles rather than using the by nicm · 6 years ago
  34. ac2ba09 Fix filtering so it works after the change to only show windows if they by nicm · 7 years ago
  35. 248aa54 Style and spacing nits. by nicm · 7 years ago
  36. 2c9bdd9 Memory leaks, from David CARLIER. by nicm · 8 years ago
  37. 41b31fe Handle empty options correctly. by nicm · 8 years ago
  38. 3408595 When a flag option is used in a format, it should use the number form by nicm · 8 years ago
  39. 61fce27 If given an array option without an index either show or set all items, by nicm · 8 years ago
  40. 649c0d8 Do not reset idx, it has just been set. by nicm · 8 years ago
  41. 3735411 options_match needs to explicitly check for user options. by nicm · 8 years ago
  42. 6b6b0e9 Correctly handle -style options without all of a corresponding -fg/-bg/-attr. by nicm · 8 years ago
  43. 68db958 getopt() has a struct option so just return to using options_entry. by nicm · 8 years ago
  44. 2b0bc9f Major tidy up and rework of options tree and set-option/show-options by nicm · 8 years ago
  45. a3cf995 Append needs to go old,new not new,old... by nicm · 8 years ago
  46. 08d2193 options_get_style return const too. by nicm · 8 years ago
  47. 24cba59 Simplify appending to string options. by nicm · 8 years ago
  48. 458b6eb Some tidying and tweaks to options code. by nicm · 8 years ago
  49. c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
  50. 69e9806 Support set -a (append) with user options, suggested by Xandor Schiefer. by nicm · 8 years ago
  51. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  52. bd59187 We cannot do hooks_find and then hooks_remove because it might have come by nicm · 9 years ago
  53. 8f671d3 Spacing nits. by nicm · 9 years ago
  54. 6457136 Sync the entire xmalloc.[ch] with the other users, but with the addition by nicm · 9 years ago
  55. c4893d8 Log option names in fatal() for missing option. by nicm · 9 years ago
  56. 44657bf Move struct options into options.c. by nicm · 9 years ago
  57. 568f5ef When given an invalid style, don't set the option to the default. Fix by nicm · 10 years ago
  58. 0a1a88d Better format for printf format attributes. by nicm · 10 years ago
  59. 945339b Allow replacing each of the many sets of separate foo-{fg,bg,attr} by nicm · 11 years ago
  60. 994cb87 Style and comment fixes from Tiago Cunha. by nicm · 11 years ago
  61. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  62. 8ed9124 Use RB trees not SPLAY. by Nicholas Marriott · 13 years ago
  63. 535286c Drop the ability to have a list of keys in the prefix in favour of two by Nicholas Marriott · 13 years ago
  64. 96dd3e8 Permit multiple prefix keys to be defined, separated by commas, for example: by Nicholas Marriott · 15 years ago
  65. 6b37b2d Use option print function for info messages as well. by Nicholas Marriott · 15 years ago
  66. fc9107a Drop tiny union from option struct. by Nicholas Marriott · 15 years ago
  67. 76a9d98 Make some functions which return unused values void (mostly found by lint) and by Nicholas Marriott · 15 years ago
  68. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago