| Commit message (Collapse) | Author | Age |
... | |
|
|
|
|
| |
Document swap-pane -d.
|
|
|
|
|
|
| |
Permit S- prefix on keys for shift. Relatively few terminals support this
(basically xterm only) and even fewer have them in terminfo (kLFT2 and kRIT2).
|
|
|
|
|
| |
key should be an int not a char.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
mouse-select-pane has to redraw the borders now too.
|
| |
|
| |
|
|
|
|
|
|
| |
New command, join-pane, to split and move an existing pane into the space (like
splitw then movep, or the reverse of breakp).
|
|
|
|
|
| |
Fix this properly.
|
|
|
|
|
| |
Don't return the root cell if the string doesn't match.
|
|
|
|
|
| |
Use the specified pane for size calculations. Doh.
|
|
|
|
|
|
| |
Change split-window to accept a pane target (it should be split-pane but
renaming the command would be annoying).
|
|
|
|
|
| |
Correctly clear 256-colour flag for aixterm colours.
|
|
|
|
|
|
| |
Fix selection behaviour when the cursor is moved backwards (ie so the selection
start is after the end).
|
| |
|
|
|
|
|
|
| |
Options to set the colour of the pane borders, with different colours for the
active pane.
|
|
|
|
|
| |
Use the target print function for copy-mode, spotted by Tiago Cunha.
|
|
|
|
|
| |
Use tcflush(3) instead of TIOCFLUSH, from Ed Schouten.
|
| |
|
| |
|
|
|
|
|
| |
Fix the logic so that transition from a 256 colour to default works properly.
|
|
|
|
|
| |
Nuke some stray debugging.
|
|
|
|
|
|
|
|
| |
Use sysctl() KERN_PROC2 instead of KERN_PROC, as the latter's ABI
is sensitive to changes in struct proc.
fixes for warnings and ok nicm@
|
|
|
|
|
|
| |
Fix a couple of problems with grouped sessions reported by danh: redraw
properly and choose the correct last window after a window is killed.
|
| |
|
| |
|
|
|
|
|
|
| |
Allow keys to be replaced and reorder the table so that terminfo-defined keys
(or terminal-overrides) take precedence over internally defined.
|
|
|
|
|
| |
platform.
|
| |
|
|
|
|
|
|
| |
Pass through the aixterm bright colours if the terminal supports them (>= 16
colours).
|
| |
|
|
|
|
|
| |
Add server options to completion as well.
|
|
|
|
|
|
| |
New server option, escape-time, to set the timeout used to detect if escapes
are alone or part of a function key or meta sequence.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Use quiet variable, and add missing sentinel to options array.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Add "server options" which are server-wide and not bound to a session or
window. Set and displayed with "set -s" and "show -s".
Currently the only option is "quiet" (like command-line -q, allowing it to be
set from .tmux.conf), but others will come along.
|
|
|
|
|
|
| |
Permit panes to be referred to as "top", "bottom", "top-left" etc, if the right
pane can be identified.
|
|
|
|
|
|
| |
vte is buggy and doesn't home the cursor after changing the scroll
region. Several people are hitting this, so add a workaround.
|
|
|
|
|
| |
Wrap at 80 columns.
|
|
|
|
|
|
|
| |
Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last
time now I've configured emacs to make them displayed in really annoying
colours...
|
|
|
|
|
|
|
|
|
| |
Eliminate duplicate code and ease the passage for server-wide options by adding
a -w flag to set-option and show-options and making setw and showw aliases to
set -w and show -w.
Note: setw and showw are still there, but now aliases for set -w and show -w.
|