| Commit message (Collapse) | Author | Age |
... | |
| |
| |
| |
| |
| | |
never worked very well. If there is a big demand for it to return, will
consider better ways to do it.
|
| | |
|
|\|
| |
| |
| |
| |
| | |
Conflicts:
Makefile
tty-keys.c
|
| |
| |
| |
| | |
buffer_sample bigger to let it trim at window right edge.
|
| | |
|
| | |
|
| |
| |
| |
| | |
minor changes.
|
| | |
|
| |
| |
| |
| | |
doesn't make much sense as a session option.
|
| | |
|
| |
| |
| |
| | |
changes.
|
| | |
|
| |
| |
| |
| |
| | |
Some of the man page locations on Linux differ to those on *BSD. Noticed by
Christopher Meng.
|
|\|
| |
| |
| |
| |
| | |
Conflicts:
tmux.1
tmux.c
|
| | |
|
| | |
|
| |
| |
| |
| | |
Tmux doesn't directly support terminals with 88 colours directly anymore.
|
|\|
| |
| |
| |
| |
| |
| | |
Conflicts:
Makefile
cmd-server-info.c
cmd-start-server.c
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Raynor.
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Conflicts:
cmd-split-window.c
cmd-unbind-key.c
format.c
osdep-openbsd.c
|
| |\| |
|
| | | |
|
| | |
| | |
| | |
| | | |
thing that uses it now).
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
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.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \ |
|
| | | | |
|
|/ / / |
|
| | | |
|
| | |
| | |
| | |
| | | |
other than pane_current_command.
|
| | | |
|
|/ / |
|
|\| |
|
| | |
|
| |
| |
| |
| |
| | |
during idle periods (like the other states are) because we'd miss
events. So add a server option to control them. Defaults to off.
|
| |
| |
| |
| |
| | |
during idle periods (like the other states are) because we'd miss
events. So add a server option to control them. Defaults to off.
|
|\| |
|
| | |
|
| |
| |
| |
| |
| | |
Ce, Ss and Se (not Cc, Ce, Cs, Csr). So use and document these instead
of the ones we were using earlier.
|
|\| |
|
| |
| |
| |
| | |
to aliases of formats. From Tiago Cunha.
|