aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
...
| * Remove the monitor-content option and associated bits and bobs. It'snicm2014-04-17
| | | | | | | | | | never worked very well. If there is a big demand for it to return, will consider better ways to do it.
| * Remove the choose-list command to prepare for some later choose-* work.nicm2014-04-16
| |
* | Merge branch 'obsd-master'Thomas Adam2014-04-05
|\| | | | | | | | | | | Conflicts: Makefile tty-keys.c
| * Support UTF-8 with choose-buffer, from Kosuke ASAMI. Also makenicm2014-04-02
| | | | | | | | buffer_sample bigger to let it trim at window right edge.
| * pane_start_path has gone away.nicm2014-04-02
| |
| * Make message-limit a server option.nicm2014-03-31
| |
| * Add setb -a to append and a copy mode append command, from J Raynor withnicm2014-03-31
| | | | | | | | minor changes.
| * Make session_attached a count and add session_many_attached flag.nicm2014-03-31
| |
| * Change terminal-overrides to a server option (now that we have them), itnicm2014-02-23
| | | | | | | | doesn't make much sense as a session option.
* | Make message-limit a server option.Nicholas Marriott2014-03-07
| |
* | Add setb -a to append and a copy mode append command, from J Raynor with minorNicholas Marriott2014-03-06
| | | | | | | | changes.
* | Make session_attached a count and add session_many_attached flag.Nicholas Marriott2014-03-06
| |
* | Correct Linux-specific manpage sectionsThomas Adam2014-02-21
| | | | | | | | | | Some of the man page locations on Linux differ to those on *BSD. Noticed by Christopher Meng.
* | Merge branch 'obsd-master'Thomas Adam2014-02-16
|\| | | | | | | | | | | Conflicts: tmux.1 tmux.c
| * Leftovers from removing 88 colour support, from Theo Buehler.nicm2014-02-16
| |
| * fix some minor formatting glitches;jmc2014-02-02
| |
* | Remove references to 88colour supportThomas Adam2014-02-05
| | | | | | | | Tmux doesn't directly support terminals with 88 colours directly anymore.
* | Merge branch 'obsd-master'Thomas Adam2014-01-31
|\| | | | | | | | | | | | | Conflicts: Makefile cmd-server-info.c cmd-start-server.c
| * Allow replacing each of the many sets of separate foo-{fg,bg,attr}nicm2014-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | options with a single foo-style option. For example: set -g status-fg yellow set -g status-bg red set -g status-attr blink Becomes: set -g status-style fg=yellow,bg=red,blink The -a flag to set can be used to add to rather than replace a style. So: set -g status-bg red Becomes: set -ag status-style bg=red Currently this is fully backwards compatible (all *-{fg,bg,attr} options remain) but the plan is to deprecate them over time. From Tiago Cunha.
| * Merge server-info into show-messages and remove some not useful output.nicm2014-01-22
| |
| * Replace ## by # in format.nicm2013-11-24
| |
* | Merge branch 'obsd-master'Thomas Adam2013-11-14
|\|
| * Key to swap to other end of selection (bound to o with vi keys), from Jnicm2013-10-23
| | | | | | | | Raynor.
* | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-codeNicholas Marriott2013-10-11
|\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd-split-window.c cmd-unbind-key.c format.c osdep-openbsd.c
| * | Merge branch 'obsd-master' into mtempThomas2013-10-11
| |\|
| | * Bracket in the wrong place in description of c0-change-trigger.nicm2013-10-10
| | |
| | * Remove the KERN_PROC_CWD the proc_current_path format (which is the onlynicm2013-10-10
| | | | | | | | | | | | thing that uses it now).
| | * Alter how tmux handles the working directory to internally use filenicm2013-10-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | descriptors rather than strings. - Each session still has a current working directory. - New sessions still get their working directory from the client that created them or its attached session if any. - New windows are created by default in the session working directory. - The -c flag to new, neww, splitw allows the working directory to be overridden. - The -c flag to attach let's the session working directory be changed. - The default-path option has been removed. To get the equivalent to default-path '.', do: bind c neww -c $PWD To get the equivalent of default-path '~', do: bind c neww -c ~ This also changes the client identify protocol to be a set of messages rather than one as well as some other changes that should make it easier to make backwards-compatible protocol changes in future.
| | * Support -c for new-session, based on code from J Raynor.nicm2013-10-10
| | |
| | * Add length limit operator for formats.nicm2013-10-10
| | |
| | * Add formats for window flags.nicm2013-10-10
| | |
| | * Change the default for the default-path option to ~. This is a quicknicm2013-10-05
| | | | | | | | | | | | | | | change to turn off the KERN_PROC_CWD code which is unpredictable. Later it will go away and there may be other changes to how this works.
| | * use .Mt for email addresses; from Jan Stary <hans at stare dot cz>; ok jmc@schwarze2013-07-16
| | |
* | | Alter how tmux handles the working directory to internally use file descriptorsNicholas Marriott2013-10-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rather than strings. - Each session still has a current working directory. - New sessions still get their working directory from the client that created them or its attached session if any. - New windows are created by default in the session working directory. - The -c flag to new, neww, splitw allows the working directory to be overridden. - The -c flag to attach let's the session working directory be changed. - The default-path option has been removed. To get the equivalent to default-path '.', do: bind c neww -c $PWD To get the equivalent of default-path '', do: bind c neww -c '#{pane_current_path}' The equivalent of default-path '~' is left as an exercise for the reader. This also changes the client identify protocol to be a set of messages rather than one as well as some other changes that should make it easier to make backwards-compatible protocol changes in future.
* | | Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-codeNicholas Marriott2013-10-01
|\ \ \
| * | | Mark flags as optional and mutually exclusive.Tiago Cunha2013-08-31
| | | |
* | | | Support -c for new-session, based on code from J Raynor.Nicholas Marriott2013-10-01
|/ / /
* | | A couple of manpage fixes from Tiago Cunha.Nicholas Marriott2013-08-22
| | |
* | | Add automatic-rename-format option allowing automatic rename to use somethingNicholas Marriott2013-08-19
| | | | | | | | | | | | other than pane_current_command.
* | | Add length limit operator for formats.Nicholas Marriott2013-08-03
| | |
* | | Add formats for window flags.Nicholas Marriott2013-08-01
|/ /
* | Merge branch 'obsd-master'Thomas Adam2013-07-06
|\|
| * Add pane_synchronized format, from Romain Francoise.Nicholas Marriott2013-07-05
| |
| * Focus events can cause trouble if left on and they can't be turned offNicholas Marriott2013-06-23
| | | | | | | | | | during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off.
* | Focus events can cause trouble if left on and they can't be turned offNicholas Marriott2013-06-28
| | | | | | | | | | during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off.
* | Merge branch 'obsd-master'Thomas Adam2013-06-13
|\|
| * escape "Ss", becuase groff thinks it has found a macro;Jason McIntyre2013-06-02
| |
| * The actual terminfo entries we ended up with for cursor changes are Cs,Nicholas Marriott2013-06-02
| | | | | | | | | | Ce, Ss and Se (not Cc, Ce, Cs, Csr). So use and document these instead of the ones we were using earlier.
* | Merge branch 'obsd-master'Thomas Adam2013-05-31
|\|
| * Demote the old single-character replacement variables (#S and friends)Nicholas Marriott2013-05-31
| | | | | | | | to aliases of formats. From Tiago Cunha.