summaryrefslogtreecommitdiffstats
path: root/tmux.1
AgeCommit message (Collapse)Author
2015-04-19Support setting the default window and pane background colours (windownicm
and active pane via window-style and window-active-style options, an individual pane by a new select-pane -P flag). From J Raynor.
2015-04-10Add a -x flag to copy-selection, append-selection and start-named-buffernicm
to prevent it exiting copy mode after copying. From J Raynor with a few tweaks by me.
2015-04-10in the case -> in this case.nicm
2015-03-31Add a helper function to convert time, and add session_activity formatsnicm
(the latter from Takatoshi Matsumoto).
2015-03-11set-titles-string now uses formats, not the status bits (so no #() fornicm
now). Reported by landry.
2015-02-06Move pane border options to window options rather than session, from Marc Finet.nicm
2015-01-06Add missing default bindings, from Theo Buehler.nicm
2014-12-09Add pane_dead_status for exit status of dead panes.nicm
2014-12-02Add -F to if-shell to allow it to be used to check for format or optionnicm
values rather than executing a command.
2014-12-02Permit option values to be used in formats.nicm
2014-11-12Add -b to splitw like joinw, from Felix Rosencrantz.nicm
2014-11-07V should be vi not emacs, also sort. From Theo Buehler.nicm
2014-11-06Add V for select line with vi(1) keys. From Juho Pohjala.nicm
2014-11-05Do not put a space between status-left/status-right and the window list,nicm
instead move the space into the defaults for the options (so status-left now defaults to "[#S] ". From Balazs Kezes.
2014-10-25Add pane_input_off format, from Anish R Athalye.nicm
2014-10-18Fix description of Ss and Se.nicm
2014-10-02Top function key is F12 now.nicm
2014-09-25Support ! for last pane.nicm
2014-09-08Add window_last_flag and window_zoomed_flag. From John Morrissey.nicm
2014-09-01Fix typo (paneas -> panes).nicm
2014-08-11Add flags to selectp to enable and disable input to a pane, from Anishnicm
Athalye.
2014-06-20Make -S- and -E- mean the start and end to capture-pane to avoid havingnicm
to faff around with huge numbers to get everything.
2014-05-27Add some formats for pane bounds.nicm
2014-05-14Change key-table to mode-table to allow for some future work. From Keithnicm
Amling.
2014-05-13If multiple arguments are given to new-session, new-window,nicm
split-window, respawn-window or respawn-pane, pass them directly to execvp() to help avoid quoting problems. One argument still goes to "sh -c" like before. Requested by many over the years. Patch from J Raynor.
2014-05-13Add a copy mode key binding to copy to a named buffer. From J Raynor.nicm
2014-05-13Add support for named buffers. If you don't name a buffer, things worknicm
much as before - buffers are automatically named "buffer0000", "buffer0001" and so on and ordered as a stack. Buffers can be named explicitly when creating ("loadb -b foo" etc) or renamed ("setb -b buffer0000 -n foo"). If buffers are named explicitly, they are not deleted when buffer-limit is reached. Diff from J Raynor.
2014-04-17#nnT went away a while ago, remove a leftover from the manpage.nicm
2014-04-17Remove the "info" message mechanism, this was only used for about fivenicm
mostly useless and annoying messages. Change those commands to silence on success like all the others. Still accept the -q command line flag and "quiet" server option for now.
2014-04-17Extend the -q flag to set-option to suppress errors about unknownnicm
options - this will allow options to be removed more easily.
2014-04-17Remove the monitor-content option and associated bits and bobs. It'snicm
never worked very well. If there is a big demand for it to return, will consider better ways to do it.
2014-04-16Remove the choose-list command to prepare for some later choose-* work.nicm
2014-04-02Support UTF-8 with choose-buffer, from Kosuke ASAMI. Also makenicm
buffer_sample bigger to let it trim at window right edge.
2014-04-02pane_start_path has gone away.nicm
2014-03-31Make message-limit a server option.nicm
2014-03-31Add setb -a to append and a copy mode append command, from J Raynor withnicm
minor changes.
2014-03-31Make session_attached a count and add session_many_attached flag.nicm
2014-02-23Change terminal-overrides to a server option (now that we have them), itnicm
doesn't make much sense as a session option.
2014-02-16Leftovers from removing 88 colour support, from Theo Buehler.nicm
2014-02-02fix some minor formatting glitches;jmc
2014-01-28Allow replacing each of the many sets of separate foo-{fg,bg,attr}nicm
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.
2014-01-22Merge server-info into show-messages and remove some not useful output.nicm
2013-11-24Replace ## by # in format.nicm
2013-10-23Key to swap to other end of selection (bound to o with vi keys), from Jnicm
Raynor.
2013-10-10Bracket in the wrong place in description of c0-change-trigger.nicm
2013-10-10Remove the KERN_PROC_CWD the proc_current_path format (which is the onlynicm
thing that uses it now).
2013-10-10Alter how tmux handles the working directory to internally use filenicm
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.
2013-10-10Support -c for new-session, based on code from J Raynor.nicm
2013-10-10Add length limit operator for formats.nicm
2013-10-10Add formats for window flags.nicm