Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-22 | enum tty_cmd is only used as an index into the array of command function | Nicholas Marriott | |
pointers, so remove it and use the function pointers directly to represent themselves. | |||
2009-07-22 | There are relatively few arguments to tty_cmd_* functions now, so tidy them up | Nicholas Marriott | |
by using a struct rather than hiding everything with varargs. | |||
2009-07-22 | tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to | Nicholas Marriott | |
tty_cmd_utf8character and eliminate the size argument. | |||
2009-07-22 | enter_user() is only called in one way, rendering the third parameter | Theo de Raadt | |
useless; from mark@cyodesigns.com | |||
2009-07-21 | Adjust field width to fit longest key when listing. | Nicholas Marriott | |
2009-07-21 | Remove leftover debug logging of password. | Nicholas Marriott | |
2009-07-21 | Make some functions which return unused values void (mostly found by lint) and | Nicholas Marriott | |
tweak a redundant expression in window_pane_set_mode. | |||
2009-07-21 | Nix a few unused attributes on arguments which are no longer unused. | Nicholas Marriott | |
2009-07-21 | Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by | Nicholas Marriott | |
lint. | |||
2009-07-21 | __progname is not const, pointed out by deraadt. | Nicholas Marriott | |
2009-07-21 | Tidy up keys: use an enum for the key codes, and remove the macros which just | Nicholas Marriott | |
wrap flag sets/clears/tests. | |||
2009-07-21 | add missing flag to synopsis. | Igor Sobrado | |
2009-07-21 | Allow systat(1) to resolve names by adding a new -N flag. (The default was | Stuart Henderson | |
changed some time ago). Noticed by landry@, discussed with canacar@ and others. ok deraadt@ | |||
2009-07-20 | Now that #P could be in the status line, flag it for redraw when the active | Nicholas Marriott | |
pane changes. | |||
2009-07-20 | Tweak unbind-key language very slightly. | Nicholas Marriott | |
2009-07-20 | Display the number of failed password attempts (if any) when the server is | Nicholas Marriott | |
locked. From Tom Doherty. | |||
2009-07-20 | Add a status-justify option to allow the window list in the status line to be | Nicholas Marriott | |
positioned at the left, centre, or right. | |||
2009-07-20 | New options, window-status-current-{fg,bg,attr}, to set the fg, bg and | Nicholas Marriott | |
attributes with which the current window is shown in the status line. From Johan Friis, thanks. | |||
2009-07-20 | Kill some dead stores and fix a null pointer deref, found by clang. | Nicholas Marriott | |
2009-07-20 | Move the offsets as well when swapping panes. | Nicholas Marriott | |
2009-07-19 | Missed these in sudo sudo 1.7.2 update. | Todd C. Miller | |
2009-07-19 | Fix expansion of %h in #include names. | Todd C. Miller | |
2009-07-19 | missing va_end in abuf_dprn. ok ratchov@ | Martynas Venckus | |
2009-07-19 | remove BUILTIN/SHELL cruft that used to be needed for sh, which is | Martynas Venckus | |
gone; and killed in csh w. rev. 1.7. ok millert@ | |||
2009-07-19 | tweak previous; | Jason McIntyre | |
2009-07-19 | Improved layout code. | Nicholas Marriott | |
Each window now has a tree of layout cells associated with it. In this tree, each node is either a horizontal or vertical cell containing a list of other cells running from left-to-right or top-to-bottom, or a leaf cell which is associated with a pane. The major functional changes are: - panes may now be split arbitrarily both horizontally (splitw -h, C-b %) and vertically (splitw -v, C-b "); - panes may be resized both horizontally and vertically (resizep -L/-R/-U/-D, bound to C-b left/right/up/down and C-b M-left/right/up/down); - layouts are now applied and then may be modified by resizing or splitting panes, rather than being fixed and reapplied when the window is resized or panes are added; - manual-vertical layout is no longer necessary, and active-only layout is gone (but may return in future); - the main-pane layouts now reduce the size of the main pane to fit all panes if possible. Thanks to all who tested. | |||
2009-07-19 | Hook up "text" (executable) output and implement for fuser too. | Todd C. Miller | |
Man page bits adapted from FreeBSD. OK miod@ | |||
2009-07-19 | The abbreviation for .Bf -symbolic is .Bf Sy, not .Bf Sm; | Ingo Schwarze | |
"Gah! Fixed." kristaps@ | |||
2009-07-18 | Kristaps was so happy about .Bl -hang support ("the last major missing | Ingo Schwarze | |
formatting feature") that he bumped the version from 1.7 to 1.8. We are now in sync with release 1.8.0. There is lots of work left, though, before we can use this in production... | |||
2009-07-18 | sync to 1.8.0: a couple of cosmetic fixes: | Ingo Schwarze | |
1) use \(hy instead of \- for .Bl -hyphen (renders the same in -Tascii) 2) clear bold flag after printing the -bullet or -hyphen in .Bl (actually, the flags will be reinitialized in termp_it_post, anyway) 3) do not redo the work of the parser in termp_rv_pre and termp_ex_pre (instead, just assert() validity of the parse tree) 4) do not bother assigning to the offset in termp_ss_post (it will soon be reinitialized in print_node, anyway) | |||
2009-07-18 | sync to 1.8.0: support -offset [0-9]+n and -offset [0-9]+m | Ingo Schwarze | |
(not documented in mdoc.samples, but used in mdoc.samples) while here, do some cleanup in arg_offset and arg_width | |||
2009-07-18 | sync to 1.8.0: lots of minor changes | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: support .Bl -hang | Ingo Schwarze | |
2009-07-18 | ps is an argument | Igor Sobrado | |
2009-07-18 | sync to 1.8.0: a bad .St argument causes an error, not a warning | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: white space fixes, no code change | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: move mdoc_a2att, mdoc_a2st, and mdoc_a2lib to libmdoc | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: for .Fo, do not print a blank before '(' | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: two .Vd in SYNOPSIS get a line break in between, | Ingo Schwarze | |
but not a blank line; as before, the last .Vd in SYNOPSIS is still followed by a blank line, and .Vd outside SYNOPSIS breaks no lines | |||
2009-07-18 | sync to 1.8.0: replace macro function declarations by real ones, and sort them | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: cleanup: remove offset and rmargin from termpair | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: remove ambiguous TERMPAIR_SETFLAG macro and set flags manually | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: consolidated Bsx, Dx, Fx, Nx, Ox, Ux into one common function | Ingo Schwarze | |
2009-07-18 | sync to 1.8.0: avoid duplicate warning about a malformed NAME section | Ingo Schwarze | |
when the next section following NAME is a custom section | |||
2009-07-18 | sync to 1.8.0: .Nd is now a BFI, was an ELEM, | Ingo Schwarze | |
and use \(en instead of \- for .Nd | |||
2009-07-18 | Add three new session options: visual-activity, visual-bell, visual-content. If | Nicholas Marriott | |
these are enabled (and the monitor-activity, bell-actio and monitor-content options are configurated appropriately), when activity, a bell, or content is detected, a message is shown. Also tidy up the bell/activity/content code in server.c slightly and fix a couple of errors. | |||
2009-07-18 | sync to 1.8.0: <sys/types.h> needed for u_char; <uqs at spoerlein dot net> | Ingo Schwarze | |
2009-07-18 | Don't assign NULL to an integer type, use 0 instead. | Jonathan Gray | |
No binary change. | |||
2009-07-18 | restore -S as toggle; | Jason McIntyre | |
from Mark Lumsden ok oga | |||
2009-07-17 | Make it so using kill-pane to destroy the last pane in a window destroys the | Nicholas Marriott | |
window instead of being an error. |