aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* +another couple of items.Nicholas Marriott2009-07-25
|
* +.Nicholas Marriott2009-07-24
|
* Screenshot with more ACS love.Nicholas Marriott2009-07-24
|
* Add.Nicholas Marriott2009-07-24
|
* Sync OpenBSD patchset 173:Tiago Cunha2009-07-23
| | | | | | | | None of the server message functions return anything but 0, so make them all void. Also remove a leftover variable in client.c.
* Sync OpenBSD patchset 172:Tiago Cunha2009-07-23
| | | | | | Tidy client message return slightly: convert flags into an enum, and merge error string into struct client_ctx as well.
* Sync OpenBSD patchset 171:Tiago Cunha2009-07-23
| | | | | Redraw after starting selection to correctly remove any existing selection.
* Revert previous per OpenBSD's patchset 170.Tiago Cunha2009-07-23
|
* Sync OpenBSD patchset 169:Tiago Cunha2009-07-23
| | | | | C-d is delete as well in emacs mode.
* Sync OpenBSD patchset 168:Tiago Cunha2009-07-23
| | | | | | | Both of cmdclient and curclient CAN be NULL - if the command is executed from the configuration file. In this case, attach-session can't do much, and new-session should just assume -d.
* Sync OpenBSD patchset 167:Tiago Cunha2009-07-23
| | | | | | If there is a current session, use its default path and working directory for the initial window when creating a new session.
* Sync OpenBSD patchset 166:Tiago Cunha2009-07-23
| | | | | | Pass a set of flags into client_init rather than just a start_server variable. Only one flag now but more to come later.
* Sync OpenBSD patchset 165:Tiago Cunha2009-07-23
| | | | | | window_add_pane cannot fail, so remove the unused cause argument and don't bother to check for a NULL return.
* Sync OpenBSD patchset 164:Tiago Cunha2009-07-23
| | | | | | | | | | Tidy the target parsing code a bit and correct the behaviour so that as before a string with no colon as a target window is first looked up as a window then as a session, noted by Iain Morgan. Also attempt to clarify the description of the target specification in the man page.
* Sync OpenBSD patchset 164:Tiago Cunha2009-07-23
| | | | | | tty_write is relatively short and the only function left in tty-write.c so move it into tty.c.
* Sync OpenBSD patchset 162:Tiago Cunha2009-07-23
| | | | | | More tty code tidying: move the saved cursor/region position (from before the screen was updated) out of struct screen and into struct tty_ctx.
* Sync OpenBSD patchset 160:Tiago Cunha2009-07-23
| | | | | | | enum tty_cmd is only used as an index into the array of command function pointers, so remove it and use the function pointers directly to represent themselves.
* Some more TODO list items that are done.Nicholas Marriott2009-07-22
|
* Add a couple of notes so I don't forget.Nicholas Marriott2009-07-22
|
* Update.Tiago Cunha2009-07-22
|
* Sync OpenBSD patchset 159:Tiago Cunha2009-07-22
| | | | | | There are relatively few arguments to tty_cmd_* functions now, so tidy them up by using a struct rather than hiding everything with varargs.
* Sync OpenBSD patchset 158:Tiago Cunha2009-07-22
| | | | | | tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to tty_cmd_utf8character and eliminate the size argument.
* Sync OpenBSD patchset 157:Tiago Cunha2009-07-22
| | | | | Adjust field width to fit longest key when listing.
* Sync OpenBSD patchset 156:Tiago Cunha2009-07-22
| | | | | Remove leftover debug logging of password.
* Sync OpenBSD patchset 155:Tiago Cunha2009-07-22
| | | | | | Make some functions which return unused values void (mostly found by lint) and tweak a redundant expression in window_pane_set_mode.
* Sync OpenBSD patchset 154:Tiago Cunha2009-07-22
| | | | | Nix a few unused attributes on arguments which are no longer unused.
* Change GRID_DEBUG to use log_debug2 since log_debug3 was removed.Tiago Cunha2009-07-22
|
* Sync OpenBSD patchset 153:Tiago Cunha2009-07-22
| | | | | | Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by lint.
* Restore $Id$.Tiago Cunha2009-07-22
|
* Sync OpenBSD patchset 152:Tiago Cunha2009-07-22
| | | | | | | | __progname is not const, pointed out by deraadt. And, as a consequence change its declaration for operating systems which don't provide __progname as well.
* Sync OpenBSD patchset 151:Tiago Cunha2009-07-22
| | | | | | Tidy up keys: use an enum for the key codes, and remove the macros which just wrap flag sets/clears/tests.
* OpenSolaris ioctl(TIOCSWINSZ) appears to be broken and can return EINVAL hereNicholas Marriott2009-07-22
| | | | | | despite sx, sy and fd being fine (an fcntl on the fd succeeds). No problems on other platforms so ignore the error under #ifdef __sun__.
* Sync OpenBSD patchset 150:Tiago Cunha2009-07-21
| | | | | | Now that #P could be in the status line, flag it for redraw when the active pane changes.
* Include .depend in GNUmakefile since GNU make does not include itNicholas Marriott2009-07-21
| | | | | | | automatically. Also remove .depend from clean target and add a clean-depend target.
* No paths.h in cmd.c; add _PATH_DEV for Solaris.Nicholas Marriott2009-07-21
|
* Update.Nicholas Marriott2009-07-21
|
* Sync OpenBSD patchset 149:Tiago Cunha2009-07-20
| | | | | Tweak unbind-key language very slightly.
* Update.Tiago Cunha2009-07-20
|
* Sync OpenBSD patchset 148:Tiago Cunha2009-07-20
| | | | | | Display the number of failed password attempts (if any) when the server is locked. From Tom Doherty.
* Sync OpenBSD patchset 147:Tiago Cunha2009-07-20
| | | | | | Add a status-justify option to allow the window list in the status line to be positioned at the left, centre, or right.
* Sync OpenBSD patchset 146:Tiago Cunha2009-07-20
| | | | | | | New options, window-status-current-{fg,bg,attr}, to set the fg, bg and attributes with which the current window is shown in the status line. From Johan Friis, thanks.
* Sync OpenBSD patchset 145:Tiago Cunha2009-07-20
| | | | | Kill some dead stores and fix a null pointer deref, found by clang.
* Sync OpenBSD patchset 144:Tiago Cunha2009-07-20
| | | | | Move the offsets as well when swapping panes.
* Sync OpenBSD patchset 143:Tiago Cunha2009-07-20
| | | | | tweak previous;
* Sync OpenBSD patchset 142:Tiago Cunha2009-07-20
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* With gcc4, turn off unnecessart pointer sign warnings.Nicholas Marriott2009-07-20
|
* Add three new session options: visual-activity, visual-bell, visual-content.Tiago Cunha2009-07-19
| | | | | | | | | | If these are enabled (and the monitor-activity, bell-action 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.
* Change a couple of screenshots which had screen in them now I've got rid ofNicholas Marriott2009-07-19
| | | | | screen on that box too :-).
* Add a -k flag to unlink-window which makes it behave the same as the oldTiago Cunha2009-07-19
| | | | | | kill-window - if a window is linked into only one session it unlinked and destroyed.
* Make it so using kill-pane to destroy the last pane in a window destroys theNicholas Marriott2009-07-18
| | | | | window instead of being an error.