summaryrefslogtreecommitdiffstats
path: root/session.c
AgeCommit message (Collapse)Author
2008-12-08Make window options work the same was as session options, add ↵Nicholas Marriott
mode-fg/mode-bg options, force -g for global on set/show/setw/showw/
2008-11-16Disable UTF-8 by default and add options to enable it.Nicholas Marriott
2008-11-16Keep stack of previous windows.Nicholas Marriott
Check for op (orig_pair) for default colours.
2008-11-05TAILQ -> SLIST.Nicholas Marriott
2008-09-26Trim.Nicholas Marriott
2008-08-28Support OS X by moving to gettimeofday(2) and adding poll compat from OpenSSH.Nicholas Marriott
2008-06-30Set up environ properly.Nicholas Marriott
2008-06-29Zombie windows, requested by Will Maier.Nicholas Marriott
2008-06-20Start of improved buffer code. Only set-buffer/show-buffer commands so far.Nicholas Marriott
2008-06-18Trimify.Nicholas Marriott
2008-06-07Use a socketpair to synchronise server startup.Nicholas Marriott
2008-06-06Make server exit when last session dies. Also fix window check for status ↵Nicholas Marriott
activity redraw.
2008-06-06Some Linux fixes; some code tidying. Don't redraw status bar so often.Nicholas Marriott
2008-06-04Add activity monitoring, also invert items on taskbar which have activity.Nicholas Marriott
2008-06-03Per-session configuration options.Nicholas Marriott
2008-06-03It is too easy to create things in the same second; use a timespec instead.Nicholas Marriott
2008-06-02Last bits of basic configuration file. By default in ~/.tmux.conf or ↵Nicholas Marriott
specified with -f. Just a list of tmux commands executed when the server is started and before and any session/window is created.
2007-12-06Major reorganisation of screen handling.Nicholas Marriott
2007-11-12Double-free on session destroy.Nicholas Marriott
2007-10-31Make it build/run on Linux.Nicholas Marriott
2007-10-26unlink-window command. Also fix some u_int -> int problems.Nicholas Marriott
2007-10-26Redraw status bar on link.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-24Free/close windows properly.Nicholas Marriott
2007-10-19Missing time.h.Nicholas Marriott
2007-10-12Mark windows in yellow on status line when bell.Nicholas Marriott
2007-10-03New window command.Nicholas Marriott
2007-10-03Rewrite command handling to be more generic. Not finished!Nicholas Marriott
2007-09-29Ooops, missed this one. Doh.Nicholas Marriott
2007-09-29Don't nuke last window on reselect of same window.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-21Stop crashing when exiting windows.Nicholas Marriott
2007-09-21Comment.Nicholas Marriott
2007-09-21Reset s->window to NULL so it doesn't end up in s->last.Nicholas Marriott
2007-09-21Tweak ordering.Nicholas Marriott
2007-09-21Remove window before working out new current window; clear last window if ↵Nicholas Marriott
necessary.
2007-09-21session_last == -1 could still leave us with the window we are about to remove.Nicholas Marriott
2007-09-20Last window option.Nicholas Marriott
2007-09-20Wrap next/prev.Nicholas Marriott
2007-08-27session_flush can go bye-bye again.Nicholas Marriott
2007-08-27Flush even detached sessions.Nicholas Marriott
2007-08-27Change command format.Nicholas Marriott
2007-08-27If a session is destroyed, safely kill all other clients attached to it.Nicholas Marriott
2007-08-27Update to be more readable and hopefully lose memory problems.Nicholas Marriott
2007-07-25Sync with fdm.Nicholas Marriott
2007-07-09Initial import to CVS. Basic functions are working, albeit with a couple of ↵Nicholas Marriott
showstopper memory bugs and many missing features. Detaching, reattaching, creating new sessions, listing sessions work acceptably for using with shells. Simple curses programs (top, systat, tetris) and more complicated ones (mutt, emacs) that don't require scrolling regions (ESC[r) mostly work fine (including mutt, emacs). No status bar yet and no key remapping or other customisation.