Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-01 | Look for mice and xterm keys before standard function keys as they are less | Nicholas Marriott | |
likely to be partial versions. | |||
2009-11-30 | Handle partial xterm function key sequences. | Nicholas Marriott | |
2009-11-28 | The first paragraph of the DESCRIPTION had multiple issues, | Ingo Schwarze | |
so rewrite it from scratch. Joint work with jmc@. Originally triggered by lars dot curator at gmail dot com by requesting the addition of the word "rotate", also using some observations from matthew at dempsky dot org. OK jmc@ ":-)" sthen@ | |||
2009-11-27 | Add a couple of comments. | Nicholas Marriott | |
2009-11-26 | This doesn't need to be u_int. | Nicholas Marriott | |
2009-11-26 | Make types clearer and lint happier. | Nicholas Marriott | |
2009-11-26 | Fix type - attributes should be u_char not int. | Nicholas Marriott | |
2009-11-26 | Change paranoia check to check for <= 0 and to avoid warning. | Nicholas Marriott | |
2009-11-26 | Tidy up various bits of the paste code, make the data buffer char * and add | Nicholas Marriott | |
comments. | |||
2009-11-26 | Continue rather than returning if not a mouse key, to avoid hanging on any | Nicholas Marriott | |
function key... | |||
2009-11-26 | Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to | Nicholas Marriott | |
the rest to reduce lint output. | |||
2009-11-26 | Rename a variable to something more helpful. | Nicholas Marriott | |
2009-11-26 | Get a u_char from the string, otherwise it isn't possible to enter \0377 as it | Nicholas Marriott | |
is mistaken for EOF (doh). Also drop an unused argument. | |||
2009-11-26 | grammar; | Jason McIntyre | |
2009-11-26 | Handle the possibility of partial mouse reads, and fix a comment while here. | Nicholas Marriott | |
2009-11-26 | Emulate il1, dl1, ich1 to run (albeit slowly) with vt100 feature set. | Nicholas Marriott | |
2009-11-25 | Output the right keys for application and number keypad modes (they were the | Nicholas Marriott | |
wrong way round). | |||
2009-11-24 | Add a -p flag to display-message to print the output rather than displaying in | Nicholas Marriott | |
the status line, this allows things like "display -p '#W'" to find the current window index. | |||
2009-11-24 | Another one. | Owain Ainsworth | |
"yup" henning@ | |||
2009-11-24 | More words of wisdom. | Owain Ainsworth | |
ok henning@ dms@ | |||
2009-11-23 | args, not that file | Henning Brauer | |
2009-11-23 | no more natpass | Henning Brauer | |
2009-11-23 | Properly handle interfaces deleted from the middle of the list. | Can Erkin Acar | |
Reported by deraadt@ | |||
2009-11-22 | Add cursor keys to the key names list. | Nicholas Marriott | |
2009-11-22 | Fix for flash defaulting to off, pointed out by jmc. | Nicholas Marriott | |
2009-11-22 | don't repeat the banner if not a tty. | Ted Unangst | |
add a -c count option to netstat. tweak spacing to not smear fields in vmstat. ok deraadt sthen | |||
2009-11-22 | brconfig will soon be gone | Theo de Raadt | |
2009-11-22 | Change the flash option to be off by default. Now that xterm has the flash | Nicholas Marriott | |
capability in terminfo, vi was using it instead of beeping, but it is too slow for some machines. ok deraadt | |||
2009-11-22 | make passing of zero-length arguments to ssh safe by | Alexander Hall | |
passing "-<switch>" "<value>" rather than "-<switch><value>" ok dtucker@, guenther@, djm@ | |||
2009-11-21 | Use home from struct passwd if HOME is empty as well as if it is NULL, and fix | Nicholas Marriott | |
a style nit. Both from Tiago Cunha. | |||
2009-11-21 | use strtonum(3) and strtol(3) instead of sscanf(3) | Alexandre Ratchov | |
suggested by deraadt@ | |||
2009-11-21 | spelling | Theo de Raadt | |
2009-11-20 | When -h and -p are given to split-window, calculate the percentage size using | Nicholas Marriott | |
the width instead of the height. | |||
2009-11-20 | Display UTF-8 properly in status line messages and prompt. Cursor handling is | Nicholas Marriott | |
still way off though. | |||
2009-11-20 | Remove oldest messages from log when limit is hit, not newest. | Nicholas Marriott | |
2009-11-20 | correct off-by-one in percent_expand(): we would fatal() when trying | Damien Miller | |
to expand EXPAND_MAX_KEYS, allowing only EXPAND_MAX_KEYS-1 to actually work. Note that nothing in OpenSSH actually uses close to this limit at present. bz#1607 from Jan.Pechanec AT Sun.COM | |||
2009-11-20 | Use the HostKeyAlias when prompting for passwords. bz#1039, ok djm@ | Darren Tucker | |
2009-11-20 | bz#1588 change "Connecting to host..." message to "Connected to host." | Damien Miller | |
and delay it until after the sftp protocol connection has been established. Avoids confusing sequence of messages when the underlying ssh connection experiences problems. ok dtucker@ | |||
2009-11-20 | Warn but do not fail if stat()ing the subsystem binary fails. This helps | Darren Tucker | |
with chrootdirectory+forcecommand=sftp-server and restricted shells. bz #1599, ok djm. | |||
2009-11-19 | bz#1606: error when an attempt is made to connect to a server | Damien Miller | |
with ForceCommand=internal-sftp with a shell session (i.e. not a subsystem session). Avoids stuck client when attempting to ssh to such a service. ok dtucker@ | |||
2009-11-19 | Get some brackets in the right place so ## works. Also fix a space in a | Nicholas Marriott | |
comment. | |||
2009-11-19 | Change status line drawing to create the window list in a separate screen and | Nicholas Marriott | |
then copy it into the status line screen. This allows UTF-8 in window names and fixes some problems with #[] in window-status-format. | |||
2009-11-19 | Two new options, window-status-format and window-status-current-format, which | Nicholas Marriott | |
allow the format of each window in the status line window list to be controlled using similar # sequences as status-left/right. This diff also moves part of the way towards UTF-8 support in window names but it isn't quite there yet. | |||
2009-11-19 | tweak previous; | Jason McIntyre | |
2009-11-19 | Revert to xterm-keys off by default. It was on as an experiment to see if the | Nicholas Marriott | |
option could be removed, but it affects vi, so we have to keep the option, and a conservative default is better. | |||
2009-11-19 | Tidy up by breaking the # replacement code into a separate function, also add a | Nicholas Marriott | |
few comments. | |||
2009-11-19 | Don't interpret #() for display-message, it usually doesn't make sense and may | Nicholas Marriott | |
leak commands. | |||
2009-11-18 | Missed an unused variable :-/. | Nicholas Marriott | |
2009-11-18 | Cleanup by moving various (mostly horrible) little bits handling UTF-8 grid | Nicholas Marriott | |
data into functions in a new file, grid-utf8.c, and use sizeof intead of UTF8_DATA. Also nuke trailing whitespace from tmux.1, reminded by jmc. | |||
2009-11-18 | Add a per-client log of status line messages displayed while that client | Nicholas Marriott | |
exists. A new message-limit session option sets the maximum number of entries and a command, show-messages, shows the log (bound to ~ by default). This (and prompt history) might be better as a single global log but until there are global options it is easier for them to be per client. |