aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
* Merge branch 'obsd-master'Thomas Adam2015-05-13
|\
| * Add a session_alerts format which is a list of all the alerts in thenicm2015-05-12
| | | | | | | | | | current session in symbolic form (something like "0!,4~,5!"). Use this in the default set-titles-string. Prompted by a request from Jan ONDREJ.
| * Add bell-action "other" to pass through bells in all windows except thenicm2015-05-12
| | | | | | | | current, suggested by Jan ONDREJ.
| * Remove the c0-* options which never really worked satisfactorily. Goingnicm2015-05-11
| | | | | | | | to try something else...
* | Merge branch 'obsd-master'Thomas Adam2015-05-09
|\| | | | | | | | | Conflicts: tmux.h
| * Move input parser structs into input.c (removing fairly uselessnicm2015-05-08
| | | | | | | | saved_cursor_[xy] formats as a side-effect).
* | Merge branch 'obsd-master'Thomas Adam2015-05-06
|\|
| * Add a format window_linked which is 1 if a window has been linkednicm2015-05-06
| | | | | | | | | | | | | | multiple times, also remove the default space in window_flags and use a conditional to add it in window-status-format (this means additional flags can be added in the option without extra spaces). From Thomas Adam with tweaks by me.
* | Merge branch 'obsd-master'Thomas Adam2015-04-29
|\|
| * If default-terminal is set to "screen" or "screen-*", emulate screen'snicm2015-04-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | historical (incorrect) behaviour for SGR 3 and send smso (standout). Previously, we would send sitm (italics) if the terminal outside had it and smso otherwise. This was acceptably until recently because xterm's terminfo entry lacked sitm, so most users got smso. People who want italics should set default-terminal to the forthcoming "tmux" entry (and be prepared to deal with it being missing on older hosts). As a side-effect this changes default-terminal to be a server rather than a session option. suggested by and ok naddy
* | Merge branch 'obsd-master'Thomas Adam2015-04-28
|\|
| * Add select-layout -o to undo the last layout change (apply the previouslynicm2015-04-28
| | | | | | | | set layout).
* | Merge branch 'obsd-master'Thomas Adam2015-04-27
|\| | | | | | | | | | | Conflicts: Makefile tmux.1
| * Rewrite of the target resolution internals to be simpler and morenicm2015-04-27
| | | | | | | | | | | | | | consistent but with much less duplication, but keeping the same internal API. Also adds more readable aliases for some of the special tokens used in targets (eg "{start}" instead of "^"). Some behaviours may have changed, for example prefix matches now happen before fnmatch.
* | Merge branch 'obsd-master'Thomas Adam2015-04-22
|\|
| * Do not die on USR1 if any of the socket parent directories arenicm2015-04-21
| | | | | | | | missing. Reported by Robin Powell.
| * Support for multiple key tables to commands to be bound to sequences ofnicm2015-04-20
| | | | | | | | | | | | | | keys. The default key bindings become the "prefix" table and -n the "root" table. Keys may be bound in new tables with bind -T and switch-client -T used to specify the table in which the next key should be looked up. Based on a diff from Keith Amling.
* | Merge branch 'obsd-master'Thomas Adam2015-04-20
|\|
| * tweak previous;jmc2015-04-19
| |
| * Rewrite of tmux mouse support which was a mess. Instead of havingnicm2015-04-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | options for "mouse-this" and "mouse-that", mouse events may be bound as keys and there is one option "mouse" that turns on mouse support entirely (set -g mouse on). See the new MOUSE SUPPORT section of the man page for description of the key names and new flags (-t= to specify the pane or window under mouse as a target, and send-keys -M to pass through a mouse event). The default builtin bindings for the mouse are: bind -n MouseDown1Pane select-pane -t=; send-keys -M bind -n MouseDown1Status select-window -t= bind -n MouseDrag1Pane copy-mode -M bind -n MouseDrag1Border resize-pane -M To get the effect of turning mode-mouse off, do: unbind -n MouseDrag1Pane unbind -temacs-copy MouseDrag1Pane The old mouse options are now gone, set-option -q may be used to suppress warnings if mixing configuration files.
| * Support setting the default window and pane background colours (windownicm2015-04-19
| | | | | | | | | | and active pane via window-style and window-active-style options, an individual pane by a new select-pane -P flag). From J Raynor.
* | Merge branch 'obsd-master'Thomas Adam2015-04-19
|\|
| * Add a -x flag to copy-selection, append-selection and start-named-buffernicm2015-04-10
| | | | | | | | | | to prevent it exiting copy mode after copying. From J Raynor with a few tweaks by me.
| * in the case -> in this case.nicm2015-04-10
| |
| * Add a helper function to convert time, and add session_activity formatsnicm2015-03-31
| | | | | | | | (the latter from Takatoshi Matsumoto).
| * set-titles-string now uses formats, not the status bits (so no #() fornicm2015-03-11
| | | | | | | | now). Reported by landry.
* | Merge branch 'obsd-master'Thomas Adam2015-02-06
|\| | | | | | | | | Conflicts: cmd-pipe-pane.c
| * Move pane border options to window options rather than session, from Marc Finet.nicm2015-02-06
| |
* | Merge branch 'obsd-master'Thomas Adam2015-01-10
|\|
| * Add missing default bindings, from Theo Buehler.nicm2015-01-06
| |
* | Merge branch 'obsd-master'Thomas Adam2014-12-19
|\| | | | | | | | | Conflicts: format.c
| * Add pane_dead_status for exit status of dead panes.nicm2014-12-09
| |
* | Merge branch 'obsd-master'Thomas Adam2014-12-03
|\|
| * Add -F to if-shell to allow it to be used to check for format or optionnicm2014-12-02
| | | | | | | | values rather than executing a command.
| * Permit option values to be used in formats.nicm2014-12-02
| |
* | Merge branch 'obsd-master'Thomas Adam2014-11-19
|\|
| * Add -b to splitw like joinw, from Felix Rosencrantz.nicm2014-11-12
| |
* | Merge branch 'obsd-master'Thomas Adam2014-11-09
|\|
| * V should be vi not emacs, also sort. From Theo Buehler.nicm2014-11-07
| |
| * Add V for select line with vi(1) keys. From Juho Pohjala.nicm2014-11-06
| |
| * Do not put a space between status-left/status-right and the window list,nicm2014-11-05
| | | | | | | | | | instead move the space into the defaults for the options (so status-left now defaults to "[#S] ". From Balazs Kezes.
* | Merge branch 'obsd-master'Thomas Adam2014-10-29
|\| | | | | | | | | | | | | Conflicts: Makefile cmd-link-window.c cmd-unlink-window.c
| * Add pane_input_off format, from Anish R Athalye.nicm2014-10-25
| |
* | Merge branch 'obsd-master'Thomas Adam2014-10-21
|\| | | | | | | | | | | | | | | | | | | Conflicts: Makefile cmd-list-commands.c cmd-suspend-client.c job.c tmux.h xmalloc.c
| * Fix description of Ss and Se.nicm2014-10-18
| |
| * Top function key is F12 now.nicm2014-10-02
| |
| * Support ! for last pane.nicm2014-09-25
| |
* | Merge branch 'obsd-master'Thomas Adam2014-09-25
|\|
| * Add window_last_flag and window_zoomed_flag. From John Morrissey.nicm2014-09-08
| |
| * Fix typo (paneas -> panes).nicm2014-09-01
| |