Revisions of tmux

Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 223315 from Guido Berhoerster's avatar Guido Berhoerster (gberh) (revision 19)
- 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
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 18)
Split 13.1 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 161291 from Guido Berhoerster's avatar Guido Berhoerster (gberh) (revision 17)
- 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 '@' 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
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 16)
Split 12.3 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 138147 from Guido Berhoerster's avatar Guido Berhoerster (gberh) (revision 15)
- 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 @
  - 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
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 14)
branched from openSUSE:Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 101306 from Guido Berhoerster's avatar Guido Berhoerster (gberh) (revision 13)
- 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
Stephan Kulow's avatar Stephan Kulow (coolo) committed (revision 12)
replace license with spdx.org variant
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 11)
Sascha Peilicke's avatar Sascha Peilicke (saschpe) accepted request 75990 from Guido Berhoerster's avatar Guido Berhoerster (gberh) (revision 10)
- update to version 1.5
autobuild's avatar autobuild committed (revision 9)
11.4 source split
Ruediger Oertel's avatar Ruediger Oertel (oertel) committed (revision 8)
Autobuild autoformatter for 56785
Ruediger Oertel's avatar Ruediger Oertel (oertel) accepted request 56785 from Guido Berhoerster's avatar Guido Berhoerster (gberh) (revision 7)
Accepted submit request 56785 from user gberh
autobuild's avatar autobuild accepted request 43684 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 6)
Copy from devel:openSUSE:Factory/tmux based on submit request 43684 from user coolo
autobuild's avatar autobuild committed (revision 5)
release number sync
autobuild's avatar autobuild committed (revision 4)
release number sync
autobuild's avatar autobuild committed (revision 3)
autobuild's avatar autobuild accepted request 34686 from Guido Berhoerster's avatar Guido Berhoerster (gberh) (revision 2)
Copy from devel:openSUSE:Factory/tmux based on submit request 34686 from user gberh
autobuild's avatar autobuild committed (revision 1)
Copy from home:gberh:Extra/tmux based on submit request 32631 from user gberh
Displaying revisions 41 - 59 of 59
openSUSE Build Service is sponsored by