| Commit message (Collapse) | Author | Age |
| ... | |
| | | |
|
| | | |
|
| | |
| |
| |
| | |
ok nicm@
|
| | |
| |
| |
| | |
OK nicm@
|
| | |
| |
| |
| |
| |
| |
| | |
- if (hdr->size > SIZE_MAX - 1)
+ if (hdr->size == SIZE_MAX)
OK nicm@
|
| | |
| |
| |
| |
| |
| | |
right now according to NicM but better safe than sorry.
OK nicm@
|
| | |
| |
| |
| | |
OK nicm@
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- SIGUSR1 recreates the socket;
- guesswork to work out if the terminal supports UTF-8;
- a paste key for the command prompt;
- main-horizontal layout to match main-vertical, and options to configure the
size of the large pane;
- clear-history command;
- select-layout command.
|
| | | |
|
| |
|
|
|
|
|
| |
terminal to be switched between several different windows and programs
displayed on one terminal be detached from one terminal and moved to another.
ok deraadt pirofti
|
| |
|
|
|
| |
Since this is just Makefile in the OpenBSD directory, pull in those trivial
changes to the templated one for use in autotools.
|
| | |
|
| |
|
|
| |
using margins.
|
| | |
|
| |
|
|
| |
than just the window. Also use a helper function for the inner loop.
|
| | |
|
| |
|
|
| |
Thomas Adam.
|
| | |
|
| |
|
|
| |
suspended.
|
| | |
|
| |
|
|
|
|
|
| |
sent to stdin before it is needed, which can be inconvenient (eg pasting
commands). Instead, start with stdin disabled and reuse MSG_STDIN from
server->client to mean that stdin should be enabled. Based on a diff
from Chris Johnsen.
|
| |
|
|
|
| |
evtimer_initialized first. Reported by Vladimir Lomov, fix from Thomas
Adam slightly modified by me.
|
| | |
|
| |
|
|
| |
Tell git not to consider certain files, such as object files.
|
| | |
|
| | |
|
| |
|
|
|
| |
Change a log to fprintf that was missed last time around, from Tiago Cunha.
|
| |
|
|
|
|
|
|
| |
Instead of requiring a prompt to enter all numbers >10, go back to
0-9a-z and add A-Z and enter the prompt when M-0 to M-9 are pressed
(like in copy mode). Prompted by request from mcbride@, help from Thomas
Adam.
|
| |
|
|
|
| |
xterm won't reach version 500 for a while so set that as the upper limit.
|
| |
|
|
|
|
|
| |
Fix up window reference counting and don't crash if the rename timer
fires while the window is dead but still referenced. Fixes problem
reported by Michael Scholz.
|
| |
|
|
|
| |
Boldify windows with alerts in choose-* list.
|
| |
|
|
|
| |
Tidy up tty_write, from Sean Estabrooks.
|
| |
|
|
|
|
| |
Use a separate define for each default format template and strip clutter
from the choose-tree defaults.
|
| | |
|
| | |
|
| |
|
|
|
|
| |
Simplify width calculation (all numbers always sequential) and don't
rely on uninitialized data, from Thomas Adam.
|
| |
|
|
|
| |
Remove dead code, from Sean Estabrooks.
|
| |
|
|
|
| |
Another missing format from sam at sltosis.org.
|
| |
|
|
|
| |
Fix a return type.
|
| |
|
|
|
|
|
| |
Instead of numbering choose mode items 0-9a-z and then nothing, number
them all and if there are more than 10 use a prompt when 0-9 is
pressed. From Thomas Adam.
|
| |
|
|
|
| |
Add some missing formats from Samuel Le Thiec.
|
| |
|
|
|
| |
Document pane_index variable, from sam at sltosis dot org.
|
| |
|
|
|
|
|
| |
Add a queue of notifys and a way to turn them off and on (we do not want
notifys to happen during some commands). Based on code from George
Nachman.
|
| | |
|
| | |
|
| |
|
|
|
| |
Nuke unused variable from Thomas Adam.
|
| |
|
|
|
|
| |
our own. This is analogous to the recent changes to the detach-client and
kill-{session,window} commands.
|
| |
|
|
|
| |
needed by an upcoming change.
|
| | |
|
| |
|
|
|
|
|
|
| |
Make command exec functions return an enum rather than -1/0/1 values and
add a new value to mean "leave client running but don't attach" to fix
problems with using some commands in a command sequence. Most of the
work by Thomas Adam, problem reported by "jspenguin" on SF bug 3535531.
|