summaryrefslogtreecommitdiffstats
path: root/server-fn.c
AgeCommit message (Collapse)Author
2008-06-03Per-session configuration options.Nicholas Marriott
2008-06-02Move -s and -c down a level so handling them is the responsibility of the ↵Nicholas Marriott
command (with some helper functions), rather than the top-level. This changes the action command syntax so that -s and -c must be after the command rather than before.
2007-12-06Major reorganisation of screen handling.Nicholas Marriott
2007-11-27Big internal reorganisation to move tty control into parent.Nicholas Marriott
2007-11-24Reset before calling window_draw otherwise it'll have the wrong idea of the ↵Nicholas Marriott
current state (since it copies from screen).
2007-11-24Don't stop until after everything else done.Nicholas Marriott
2007-11-24Use screen_draw_* to write message, avoids leaving attribute changes around.Nicholas Marriott
2007-11-22Partial copy mode. Currently does the same as scroll mode but using a ↵Nicholas Marriott
cursor. Also fix bug where resizing would leave crap lying around.
2007-11-22Split SCREEN_BACKGROUND flag into BACKGROUND/NOCURSOR in preparation for ↵Nicholas Marriott
copy mode.
2007-11-21The CLIENT_HOLD hack can go bye-bye.Nicholas Marriott
2007-11-21Sort out cursors with a new flag - BACKGROUND - for window modes. Free text ↵Nicholas Marriott
on more exit.
2007-11-21Initial history support.Nicholas Marriott
2007-11-20Mass screen.c rename/tidy. Add a actual size (ysize) as distinct from ↵Nicholas Marriott
display size (now dx,dy). Move functions which work on the displayed area into screen-display.c and tidy. Use macros consistently when accessing screen data (may want to move everything about again later!). This the first step on the road to scrollback.
2007-11-20Fix a format string bug and sprinkle some printflikes.Nicholas Marriott
2007-10-30%u -> %d for indexes. Some lint fixes.Nicholas Marriott
2007-10-26Reorg window data structures. Add an intermediate data type (struct winlink) ↵Nicholas Marriott
to hold index and make sessions hold a RB tree of them rather than a fixed array.
2007-10-23Lift last MAXNAMELEN limit on -s argument.Nicholas Marriott
2007-10-19Add a bell-action option.Nicholas Marriott
2007-10-12Mark windows in yellow on status line when bell.Nicholas Marriott
2007-10-04Don't resize if sx AND sy haven't changed. Also tweak some logging, and ↵Nicholas Marriott
reset attrs after clear.
2007-10-04Incomplete resize support.Nicholas Marriott
2007-10-04Rename window.Nicholas Marriott
2007-10-04Next/last/previous window, some other tweaks.Nicholas Marriott
2007-10-03New window command.Nicholas Marriott
2007-10-03Rewrite command handling to be more generic. Not finished!Nicholas Marriott
2007-10-03String/number arguments..Nicholas Marriott
2007-10-03Move command handling into the server and tidy up some bits.Nicholas Marriott
2007-10-02Redraw client status lines on rename.Nicholas Marriott
2007-10-01Simple status line.Nicholas Marriott
2007-10-01Pass attributes around as flags rather than as a list of escape codes.Nicholas Marriott
2007-09-29Write error messages for rename. Also tweak some error outputs, and fix -i.Nicholas Marriott
2007-09-29Pass bell through from any window.Nicholas Marriott
2007-09-28Terminate buffers properly.Nicholas Marriott
2007-09-27Split list into ls/lsw.Nicholas Marriott
2007-09-27New session selection rules:Nicholas Marriott
- find by name if given - otherwise try current index from $TMUX - otherwise if only one session, use it - otherwise error
2007-09-27Adjust $TMUX environ var to include session index, and don't compact session ↵Nicholas Marriott
list on release. Also fix some argument types.
2007-09-26Server function naming, still not happy with server stuff though.Nicholas Marriott
2007-09-26Cleanup part 1: split up server.c.Nicholas Marriott