summaryrefslogtreecommitdiffstats
path: root/cmd-show-options.c
AgeCommit message (Collapse)Author
2022-02-14Merge branch 'obsd-master' into masterThomas Adam
2022-02-14Do not return error with -q, GitHub issue 3065.nicm
2021-10-21Merge branch 'obsd-master' into masterThomas Adam
2021-10-21Show error if user option doesn't exist, GitHub issue 2938.nicm
2021-08-21Merge branch 'obsd-master' into masterThomas Adam
2021-08-21Add args parsing callback for some future work, currently unused.nicm
2021-08-20Merge branch 'obsd-master' into masterThomas Adam
2021-08-20Hide struct args behind a couple of accessor functions.nicm
2020-12-28Merge branch 'obsd-master' into masterThomas Adam
2020-12-28Do not list user options with show-hooks.nicm
2020-05-16Add a customize mode where keys and options may be browsed and changed,nicm
includes adding a brief description of each option. Bound to "C" by default.
2020-05-08Add a customize mode where options may be browsed and changed, includes addingNicholas Marriott
a brief description of each option. Bound to "C" by default.
2020-04-14Merge branch 'obsd-master'Thomas Adam
2020-04-13Missed a few warnings in previous.nicm
2020-04-13Merge branch 'obsd-master'Thomas Adam
2020-04-13Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm
use more clearly defined and preparation for some future work).
2020-04-13Merge branch 'obsd-master'Thomas Adam
2020-04-13Make struct cmd local to cmd.c and move it out of tmux.h.nicm
2020-04-13Change so that the appropriate hooks for windows and panes belong tonicm
pane/window options rather than all being session options. This is useful for example to create a pane that is automatically closed on some condition. From Anindya Mukherjee.
2020-04-09Merge branch 'obsd-master'Thomas Adam
2020-04-09A couple of other redundant checks/assignments.nicm
2019-06-20Merge branch 'obsd-master'Thomas Adam
2019-06-20Merge branch 'obsd-master'Thomas Adam
2019-06-20Still need to walk the options tree for user options.nicm
2019-06-20Add a per-pane option set. Pane options inherit from window options (sonicm
there should be no change to existing behaviour) and are set and shown with set-option -p and show-options -p. Change remain-on-exit and window-style/window-active-style to be pane options (some others will be changed later). This makes select-pane -P and -g unnecessary so no longer document them (they still work) and no longer document set-window-option and show-window-options in favour of set-option -w and show-options -w.
2019-06-20Merge branch 'obsd-master'Thomas Adam
2019-06-20Merge branch 'obsd-master'Thomas Adam
2019-06-20Add a helper function to work out option table from name.nicm
2019-06-20Add a -A flag to show-options to show parent options as well.nicm
2019-05-23Merge branch 'obsd-master'Thomas Adam
2019-05-23Use the same argument escaping code for options as well.nicm
2019-05-22Merge branch 'obsd-master'Thomas Adam
2019-05-22Fix crash if window doesn't exist, GitHub issue 1751.nicm
2019-05-12Merge branch 'obsd-master'Thomas Adam
2019-05-12Oops, removed too much in last change.nicm
2019-05-12Fix some indentation and dead assignments.nicm
2019-04-30Merge branch 'obsd-master'Thomas Adam
2019-04-30Fix user options after show-hooks merge, GitHub issue 1704.nicm
2019-04-27Merge branch 'obsd-master'Thomas Adam
2019-04-26Merge hooks into options and make each one an array option. This allowsnicm
multiple commands to be easily bound to one hook. set-hook and show-hooks remain but they are now variants of set-option and show-options. show-options now has a -H flag to show hooks (by default they are not shown).
2019-04-25Merge branch 'obsd-master'Thomas Adam
2019-04-25Make options_tostring allocate its result instead of using a stacknicm
buffer (needed for something in the future).
2019-04-18Merge branch 'obsd-master'Thomas Adam
2019-04-18Copy the code to infer the option type to show-options and document it.nicm
2019-04-05Merge branch 'obsd-master'Thomas Adam
2019-04-05Fix some warnings, from Thomas Adam.nicm
2019-03-19Merge branch 'obsd-master'Thomas Adam
2019-03-18The individual -fg, -bg and -attr options have been deprecated (innicm
favour of -style), undocumented and hidden from show-options since 2014. Remove them, except for status-fg and status-bg.
2019-03-18Merge branch 'obsd-master'Thomas Adam
2019-03-18Make array options a sparse tree instead of an array of char * andnicm
remove the size limit.