1. d67245c Add a customize mode where keys and options may be browsed and changed, by nicm · 4 years, 5 months ago
  2. fc83517 Missed a few warnings in previous. by nicm · 4 years, 6 months ago
  3. 04cdd03 Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make its by nicm · 4 years, 6 months ago
  4. c20eb0c Make struct cmd local to cmd.c and move it out of tmux.h. by nicm · 4 years, 6 months ago
  5. 9cbe967 Change so that the appropriate hooks for windows and panes belong to by nicm · 4 years, 6 months ago
  6. 886fdb1 A couple of other redundant checks/assignments. by nicm · 4 years, 6 months ago
  7. c157372 Still need to walk the options tree for user options. by nicm · 5 years ago
  8. 5f92f92 Add a per-pane option set. Pane options inherit from window options (so by nicm · 5 years ago
  9. c1ede50 Add a helper function to work out option table from name. by nicm · 5 years ago
  10. cd1fc42 Add a -A flag to show-options to show parent options as well. by nicm · 5 years ago
  11. 6c260af Use the same argument escaping code for options as well. by nicm · 5 years ago
  12. 5571d7a Fix crash if window doesn't exist, GitHub issue 1751. by nicm · 5 years ago
  13. c3c3927 Oops, removed too much in last change. by nicm · 5 years ago
  14. 00f19b7 Fix some indentation and dead assignments. by nicm · 5 years ago
  15. 429c4bc Fix user options after show-hooks merge, GitHub issue 1704. by nicm · 5 years ago
  16. dfb7bb6 Merge hooks into options and make each one an array option. This allows by nicm · 5 years ago
  17. 32a81e1 Make options_tostring allocate its result instead of using a stack by nicm · 5 years ago
  18. 5b9211d Copy the code to infer the option type to show-options and document it. by nicm · 6 years ago
  19. 1b5a8a0 Fix some warnings, from Thomas Adam. by nicm · 6 years ago
  20. f34ebfe The individual -fg, -bg and -attr options have been deprecated (in by nicm · 6 years ago
  21. ce6be7a Make array options a sparse tree instead of an array of char * and by nicm · 6 years ago
  22. b519551 Expand formats in option names and add -F flag to do so in option values as well. by nicm · 7 years ago
  23. ee45a8a Get rid of the extra layer of flags and cmd_prepare() and just store the by nicm · 7 years ago
  24. 3408595 When a flag option is used in a format, it should use the number form by nicm · 8 years ago
  25. 61fce27 If given an array option without an index either show or set all items, by nicm · 8 years ago
  26. faa0570 Plain stravis() because it will mangle UTF-8 characters, so add by nicm · 8 years ago
  27. 3735411 options_match needs to explicitly check for user options. by nicm · 8 years ago
  28. 68db958 getopt() has a struct option so just return to using options_entry. by nicm · 8 years ago
  29. 2b0bc9f Major tidy up and rework of options tree and set-option/show-options by nicm · 8 years ago
  30. b342bd0 Mass rename struct cmd_q to struct cmdq_item and related. by nicm · 8 years ago
  31. ed97126 Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling. by nicm · 8 years ago
  32. a81685b Add static in cmd-* and fix a few other nits. by nicm · 8 years ago
  33. df0983a show-* and set-* need to handle a missing target. by nicm · 9 years ago
  34. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  35. a3129fd Instead of combined flags for -c, -s, -t, split into different sets by nicm · 9 years ago
  36. ecfeee2 Use member names in cmd_entry definitions so I stop getting confused by nicm · 9 years ago
  37. fd47084 show-options and environment need CANFAIL flag. by nicm · 9 years ago
  38. 4a4daf1 Instead of every command resolving the target (-t or -s) itself, prepare by nicm · 9 years ago
  39. fce56c5 Instead of separate tables for different types of options, give each by nicm · 9 years ago
  40. 44657bf Move struct options into options.c. by nicm · 9 years ago
  41. 45dfc5a Instead of setting up the default keys by building the key struct by nicm · 10 years ago
  42. ebc5cb4 Do not show the -fg, -bg and -attr options. If asked for one explicitly, by nicm · 11 years ago
  43. d45c12b Remove the barely-used and unnecessary command check() function. by nicm · 11 years ago
  44. d39b1a8 Add -q flags to shut up errors to capture-pane and show-options, from by Nicholas Marriott · 12 years ago
  45. 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago
  46. 0c0953f Add user options, prefixed with @. May be set to any arbitrary string. by Nicholas Marriott · 12 years ago
  47. ede8312 Make command exec functions return an enum rather than -1/0/1 values and by Nicholas Marriott · 12 years ago
  48. 4e7de21 Allow a single option to be specified to show-options to show just that option. by Nicholas Marriott · 13 years ago
  49. 5d519ba Add a flag to cmd_find_session so that attach-session can prefer by Nicholas Marriott · 14 years ago
  50. 96c37fa Now that parsing is common, merge some of the small, related commands by Nicholas Marriott · 14 years ago
  51. 7502cb3 Clean up and simplify tmux command argument parsing. by Nicholas Marriott · 14 years ago
  52. 3e81240 Move the user-visible parts of all options (names, types, limit, default by Nicholas Marriott · 14 years ago
  53. a4c9a80 Add "server options" which are server-wide and not bound to a session or by Nicholas Marriott · 15 years ago
  54. 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
  55. 6c98626 Eliminate duplicate code and ease the passage for server-wide options by adding by Nicholas Marriott · 15 years ago
  56. 76ef877 Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the by Nicholas Marriott · 15 years ago
  57. e3c3d74 Move common code from show-options and show-window-options into a function. by Nicholas Marriott · 15 years ago
  58. 34a82e7 Make all messages sent between the client and server fixed size. by Nicholas Marriott · 15 years ago
  59. ca617d6 Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bit by Nicholas Marriott · 15 years ago
  60. 5f108d9 Having fixed flags for single-character getopt options is a bit hard to by Nicholas Marriott · 15 years ago
  61. 923ccfa Rename the global options variables to be shorter and to make session options by Nicholas Marriott · 15 years ago
  62. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago