Changelog for
tmux-1.9a-44.2.x86_64.rpm :
Sun Nov 2 13:00:00 2014 dmacvicarAATTsuse.de
- add tmux-fix-malloc-check-abort.patch in order to fix glibc
aborting on openSUSE Factory due toits MALLOC_CHECK_ settings
(http://sourceforge.net/p/tmux/tickets/105/, bnc#869950)
Sun Feb 23 13:00:00 2014 gberAATTopensuse.org
- update to version 1.9a
- Fix crash due to uninitialized lastwp member of layout_cell
- Fix -fg/-bg/-style with 256 colour terminals.
Thu Feb 20 13:00:00 2014 gberAATTopensuse.org
- update to version 1.9
- NOTE: This release has bumped the tmux protocol version. It is
therefore advised that the prior tmux server is restarted when
this version of tmux is installed, to avoid protocol mismatch
errors for newer clients trying to talk to an older running
tmux server.
- 88 colour support has been removed.
- \'default-path\' has been removed. The new-window command accepts
\'-c\' to cater for this. The previous value of \".\" can be
replaced with: \'neww -c $PWD\', the previous value of \'\' which
meant current path of the pane can be specified as: \'neww -c
\"#{pane_current_path}\"\'
- The single format specifiers: #A -> #Z (where defined) have
been deprecated and replaced with longer-named equivalents, as
listed in the FORMATS section of the tmux manpage.
- The various foo-{fg,bg,attr} commands have been deprecated and
replaced with equivalent foo-style option instead. Currently
this is still backwards-compatible, but will be removed over
time.
- A new environment variable TMUX_TMPDIR is now honoured,
allowing the socket directory to be set outside of TMPDIR
(/tmp/ if not set).
- If -s not given to swap-pane the current pane is assumed.
- A #{pane_syncronized} format specifier has been added to be a
conditional format if a pane is in a syncronised mode (c.f.
syncronize-panes)
- Tmux now runs under Cygwin natively.
- Formats can now be nested within each other and expanded
accordingly.
- Added \'automatic-rename-format\' option to allow the automatic
rename mechanism to use something other than the default of
[#]{pane_current_command}.
- new-session learnt \'-c\' to specify the starting directory for
that session and all subsequent windows therein.
- The session name is now shown in the message printed to the
terminal when a session is detached.
- Lots more format specifiers have been added.
- Server race conditions have been fixed; in particular commands
are not run until after the configuration file is read
completely.
- Case insensitive searching in tmux\'s copy-mode is now possible.
- attach-session and switch-client learnt the \'-t\' option to
accept a window and/or a pane to use.
- Copy-mode is only exited if no selection is in progress.
- Paste key in copy-mode is now possible to enter text from the
clipboard.
- status-interval set to \'0\' now works as intended.
- tmux now supports 256 colours running under fbterm.
- Many bug fixes!
Tue Mar 26 13:00:00 2013 gberAATTopensuse.org
- update to version 1.8
- incompatible change: layout redo/undo has been removed
- add halfpage up/down bindings to copy mode
- session choosing fixed to work with unattached sessions
- new window options window-status-last-{attr,bg,fg} to denote
the last window which was active
- scrolling in copy-mode now scrolls the region without moving
the mouse cursor
- run-shell learnt \'-t\' to specify the pane to use when
displaying output
- support for middle-click pasting
- choose-tree learns \'-u\' to start uncollapsed
- select-window learnt \'-T; to toggle to the last window if it\'s
already current
- new session option \'assume-paste-time\' for pasting text versus
key-binding actions
- choose-
* commands now work outside of an attached client
- aliases are now shown for list-commands command
- status learns about formats
- free-form options can be set with set-option if prepended with
an \'AATT\' sign
- capture-pane learnt \'-p\' to send to stdout, and \'-e\' for
capturing escape sequences, and \'-a\' to capture the alternate
screen, and \'-P\' to dump pending output
- many new formats added (client_session, client_last_session,
etc.)
- control mode, which is a way for a client to send tmux commands
currently more useful to users of iterm2
- resize-pane learnt \'-x\' and \'-y\' for absolute pane sizing
- config file loading now reports errors from all files which are
loaded via the \'source-file\' command
- \'copy-pipe\' mode command to copy selection and pipe the
selection to a command
- changes panes can now emit focus notifications for certain
applications which use those
- run-shell and if-shell now accept format placeholders
- resize-pane learnt \'-Z\' for zooming a pane temporarily
- new-session learnt \'-A\' to make it behave like attach-session
- set-option learnt \'-o\' to prevent setting an option which is
already set
- capture-pane and show-options learns \'-q\' to silence errors
- new command \'wait-for\' which blocks a client until woken up
again
- resizing panes will now reflow the text inside them
- lots and lots of bug fixes, fixing memory-leaks, etc
- various manpage improvements
Sat Oct 13 14:00:00 2012 gberAATTopensuse.org
- update to version 1.7
- tmux configuration files now support line-continuation with a
\"\\\" at the end of a line
- new option status-position to move the status line to the top
or bottom of the screen
- enforce history-limit option when clearing the screen
- Give each window a unique id, like panes but prefixed with AATT
- add pane id to each pane in layout description (while still
accepting the old form)
- provide defined ways to set the various default-path
possibilities: ~ for home directory, . for server start
directory, - for session start directory and empty for the
pane\'s working directory (the default). All can also be used as
part of a relative path (eg -/foo). Also provide -c flags to
neww and splitw to override default-path setting
- add -l flag to send-keys to send input literally (without
translating key names)
- allow a single option to be specified to show-options to show
just that option
- new command \"move-pane\" (like join-pane but allows the same
window)
- join-pane and move-pane commands learn \"-b\" option to place the
pane to the left or above
- support for bracketed-paste mode
- allow send-keys command to accept hex values
- add locking around \"start-server\" to avoid race-conditions
- break-pane learns -P/-F arguments for display formatting
- set-option learns \"-q\" to make it quiet, and not print out
anything
- copy mode learns \"wrap-search\" option
- add a simple form of output rate limiting by counting the
number of certain C0 sequences (linefeeds, backspaces, carriage
returns) and if it exceeds a threshold (current default
250/millisecond), start to redraw the pane every 100
milliseconds instead of making each change as it comes. Two
configuration options - c0-change-trigger and
c0-change-interval
- find-window learns new flags: \"-C\", \"-N\", \"-T\" to match
against either or all of a window\'s content, name, or title
Defaults to all three options if none specified
- find-window automatically selects the appropriate pane for the
found matches
- show-environment can now accept one option to show that
environment value
- exit mouse mode when end-of-screen reached when scrolling with
the mouse wheel
- select-layout learns -u and -U for layout history stacks
- kill-window, detach-client, kill-session all learn \"-a\" option
for killing all but the current thing specified
- move-window learns \"-r\" option to renumber window sequentially
in a session
- new session option \"renumber-windows\" to automatically renumber
windows in a session when a window is closed. (see
\"move-window -r\")
- only enter copy-mode on scroll up
- choose-
* and list-
* commands all use \"-F\" for format
specifiers
- when spawning external commands, the value from the
\"default-shell\" option is now used, rather than assuming
/bin/sh
- new choose-tree command to render window/sessions as a tree for
selection
- display-message learns new format options
- for linked-windows across sessions, all flags for that window
are now cleared across sessions
- lots and lots of bug fixes, fixing memory-leaks, etc
- various manpage improvements
Tue Jan 24 13:00:00 2012 gberAATTopensuse.org
- update to version 1.6
- extend the mode-mouse option to add a third choice which means
the mouse does not enter copy mode
- add a -r flag to switch-client to toggle the client read-only
flag
- add pane-base-index option
- support \\ for line continuation in the configuration file
- framework for more powerful formatting of command output and
use it for list-{panes,windows,sessions}; this allows more
descriptive replacements (such as #{session_name}) and
conditionals
- mark dead panes with some text saying they are dead
- reject $SHELL if it is not a full path
- add -S option to refresh-client to redraw status line
- add an else clause for if-shell
- try to resolve relative paths for loadb and saveb (first, using
client working directory, if any, then default-path or session
working directory)
- support for \\e[3J to clear the history and send the
corresponding terminfo code (E3) before locking
- when in copy mode, make repeat count indicate buffer to
replace, if used
- add screen
*:XT to terminal-overrides for tmux-in-tmux
- status-line message attributes added
- move word-separators to be a session rather than window option
- change the way the working directory for new processes is
discovered; if default-path isn\'t empty, it is used; otherwise,
if a new window is created from the command-line, the working
directory of the client is used; if not, platform specific code
is used to retrieve the current working directory of the
process in the active pane; if that fails, the directory where
the session was created is used, instead
- do not change the current pane if both
mouse-select-{pane,window} are enabled
- add \\033[s and \\033[u to save and restore cursor position
- allow $HOME to be used as default-path
- add CNL and CPL escape sequences
- calculate last position correctly for UTF-8 wide characters
- add an option allow-rename to disable the window rename escape
sequence
- attributes for each type of status-line alert (ie bell, content
and activity) added; therefore, remove the superfluous options
window-status-alert-{attr,bg,fg}
- add a -R flag to send-keys to reset the terminal
- add strings to allow the aixterm bright colours to be used when
configuring colours
- drop the ability to have a list of keys in the prefix in favour
of two separate options, prefix and prefix2
- flag -2 added to send-prefix to send the secondary prefix key
- show pane size in top right of display panes mode
- some memory leaks plugged
- more command-prompt editing improvements
- various manpage improvements
- more Vi mode improvements
Sun Jul 10 14:00:00 2011 gberAATTopensuse.org
- update to version 1.5
- support xterm mouse modes 1002 and 1003
- add a -P option to new-window and split-window to print the new
window or pane index in target form (useful to pass it into
other commands)
- support for UTF-8 mouse input (\\033[1005h) which was added in
xterm 262
- accept colours of the hex form #ffffff and translate to the
nearest from the xterm(1) 256-colour set
- use TMPDIR if set
- support -x and -y for new-session to specify the initial size
of the window if created detached with -d
- make bind-key accept characters with the top-bit-set and print
them as octal
- set $TMUX without the session when background jobs are run
- add a -P option to detach to HUP the client\'s parent process
(usually causing it to exit as well)
- support passing through escape sequences to the underlying
terminal by using DCS with a \"tmux;\" prefix
- give each pane created in a tmux server a unique id (starting
from 0), put it in the TMUX_PANE environment variable and
accept it as a target
- allow a start and end line to be specified for capture-pane
which may be negative to capture part of the history
- add -a and -s options to lsp to list all panes in the server or
session respectively; likewise add -s to lsw
- change -t on display-message to be target-pane for the #[A-Z]
replacements and add -c as target-client
- the attach-session command now prefers the most recently used
unattached session
- add -s option to detach-client to detach all clients attached
to a session
- add -t to list-clients
- change window with mouse wheel over status line if
mouse-select-window is on
- when mode-mouse is on, automatically enter copy mode when the
mouse is dragged or the mouse wheel is used, also exit copy
mode when the mouse wheel is scrolled off the bottom
- provide #h character pair for short hostname (no domain)
- add a new option, mouse-resize-pane; when on, panes may be
resized by dragging their borders
- add three new copy-mode commands - select-line, copy-line,
copy-end-of-line
- support setting the xterm clipboard when copying from copy mode
using the xterm escape sequence for the purpose (if xterm is
configured to allow it)
- support xterm(1) cursor colour change sequences through
terminfo(5) Cc (set) and Cr (reset) extensions
- support DECSCUSR sequence to set the cursor style with two new
terminfo(5) extensions, Cs and Csr
- make the command-prompt custom prompts recognize the
status-left option character pairs
- add a respawn-pane command
- add a couple of extra xterm-style keys that gnome terminal
provides
- allow the initial context on prompts to be set with the new -I
option to command-prompt; include the current window and
session name in the prompt when renaming and add a new key
binding ($) for rename session
- option bell-on-alert added to trigger the terminal bell when
there is an alert
- change the list-keys format so that it shows the keys using
actual tmux commands which should be able to be directly copied
into the config file
- show full targets for lsp/lsw -a
- make confirm-before prompt customizable with -p option like
command-prompt and add the character pairs #W and #P to the
default kill-{pane,window} prompts
- vi mode improvements
- bugfixes
Tue Dec 28 13:00:00 2010 gberAATTopensuse.org
- update to version 1.4
- flags -n and -p added to switch-client
- use UTF-8 line drawing characters on UTF-8 terminals
- new server option exit-unattached added
- new session option destroy-unattached added
- new command last-pane added
- flag -a added to unbind-key
- add XAUTHORITY to update-environment
- if VISUAL or EDITOR contains \"vi\" configure mode-keys and
status-key to vi
- new window option monitor-silence and session option
visual-silence added
- command-line flag -V added
- instead of keeping a per-client prompt history make it global
- flag -l added to switch-client
- new window options other-pane-{height,width} added
- bugfixes
- dropped tmux-1.1-fix-cflags-ldflags.patch
Mon Jul 19 14:00:00 2010 guido+opensuse.orgAATTberhoerster.name
- update to version 1.3
- new input parser
- new commands/flags/options were added/removed
- jump-forward/backward in copy move
- merged more mode into copy mode
- fixed double free when the window option remain-on-exit is
set
- custom/tiled layouts
- reworked signal handling
- allow dragging to make a selection in copy mode when the
mode-mouse option is set
- mouse scroll wheel support
- fixed problems with window sizing when starting tmux from
.xinitrc
- additional code reduction and bugfixes
Thu Mar 11 13:00:00 2010 guido+opensuse.orgAATTberhoerster.name
- update to version 1.2
- the code has been switched to libevent
- new commands/options were added
- the commands set-window-option, and show-window-options have been changed
to be aliases to set -w, and show -w respectively
- panes can now be referred to as top, bottom, top-left, etc.
- server-wide options have been added which can be set with set-option -s,
and shown with show-options -s
- permit S- prefix on keys for shift when the terminal/terminfo supports
them
- window targets (-t flag) can now refer to the last window (!), next (+),
and previous (-) window by number
- lots of mode keys added in copy mode
- there are additional code reductions, bug fixes, and manpage enhancements
Fri Feb 19 13:00:00 2010 guido+opensuse.orgAATTberhoerster.name
- cleaned up specfile
Mon Feb 15 13:00:00 2010 guido+opensuse.orgAATTberhoerster.name
- dropped patch and changes for creating sockets under /var/run, tmux thus does
not need to be setgid any more
- fixed copyright header and use external changelog
Mon Dec 21 13:00:00 2009 guido+opensuse.orgAATTberhoerster.name
- rebased and combined patches for putting sockets under /var/run and dropping
setgid privileges
Mon Dec 21 13:00:00 2009 guido+opensuse.orgAATTberhoerster.name
- initial packaging of tmux