summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/options-table.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Option to change status line (message) background when using vi keys andnicm2011-11-051-1/+16
| | | | in command mode. From Ben Boeckel.
* Add screen*:XT to terminal-overrides for tmux-in-tmux, from Romainnicm2011-10-271-2/+2
| | | | Francoise.
* Add pane-base-index option, from Ben Barbour.nicm2011-08-241-1/+8
|
* Extend the mode-mouse option to add a third choice which means the mousenicm2011-07-301-2/+6
| | | | | | | does not enter copy mode. Patch from SF bug 3374493. In future the mode-mouse option is likely to die and be broken into several smaller options.
* Add an option to trigger the terminal bell when there is an alert, fromnicm2011-07-031-1/+6
| | | | Marco Beck.
* Support DECSCUSR sequence to set the cursor style with two newnicm2011-05-201-1/+2
| | | | terminfo(5) extensions, Cs and Csr. Written by Ailin Nemui.
* Support xterm(1) cursor colour change sequences through terminfo(5) Ccnicm2011-05-201-3/+4
| | | | | (set) and Cr (reset) extensions. Originally by Sean Estabrooks, tweaked by me and Ailin Nemui.
* Support setting the xterm clipboard when copying from copy mode usingnicm2011-05-181-2/+8
| | | | | | | | the xterm escape sequence for the purpose (if xterm is configured to allow it). Written by and much discussed Ailin Nemui, guidance on xterm/termcap/terminfo from Thomas Dickey.
* Add a new option, mouse-resize-pane. When on, panes may be resized bynicm2011-05-081-1/+6
| | | | dragging their borders. From hsim at gmx.li.
* Use the tsl and fsl terminfo(5) capabilities to update terminal titlenicm2011-05-081-2/+2
| | | | | | and automatically fill them in on terminals with the XT capability (which means their title setting is xterm-compatible). From hsim at gmx.li.
* Add an option (mouse-select-window) which allows the mouse to be used bynicm2011-04-181-1/+6
| | | | clicking on the status line, written by hsim at gmx dot li.
* Since buffers are now global, bump the default buffer-limit a bit highernicm2011-04-091-2/+2
| | | | to 20 rather than 9.
* The maximum history-limit was accidentally reduced, fix it back to INT_MAX.nicm2011-01-131-2/+2
|
* Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262nicm2011-01-031-1/+6
| | | | | | | | | | and supports larger terminals than the older way. If the new mouse-utf8 option is on, UTF-8 mouse input is enabled for all UTF-8 terminals. The option defaults to on if LANG etc are set in the same manner as the utf8 option. With help and based on code from hsim at gmx.li.
* Move the user-visible parts of all options (names, types, limit, defaultnicm2011-01-011-0/+639
values) together into one set of tables in options-table.c. Also clean up and simplify cmd-set-options.c and move a common print function into option-table.c.