aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
Commit message (Collapse)AuthorAge
...
* show-window-options command.Nicholas Marriott2008-06-16
|
* Add a couple of extra option types, and implement show-options command.Nicholas Marriott2008-06-15
|
* New window options: force-width and force-height. This will force a window toNicholas Marriott2008-06-14
| | | | | | | | | an arbitrary width and height (0 for the default unlimited). This is neat for emacs which doesn't have a sensible way to force hard wrapping at 80 columns. Also, don't try to be clever and use clr_eol when redrawing the whole screen, it causes trouble since the redraw functions are used to draw the blank areas too.
* Clear blank area properly on redraw, and add a marker line below it.Nicholas Marriott2008-06-14
|
* Use a socketpair to synchronise server startup.Nicholas Marriott2008-06-07
|
* Clear clients with flag too.Nicholas Marriott2008-06-07
|
* Be more conservative about redrawing using flags.Nicholas Marriott2008-06-07
|
* New flag: aggressize resize. Resize window when to size of smallest session ↵Nicholas Marriott2008-06-06
| | | | for which it is _current_ window.
* Make server exit when last session dies. Also fix window check for status ↵Nicholas Marriott2008-06-06
| | | | activity redraw.
* Some Linux fixes; some code tidying. Don't redraw status bar so often.Nicholas Marriott2008-06-06
|
* Big reorganisation of command-line syntax.Nicholas Marriott2008-06-05
|
* Easy bits of arg printing for list-keys.Nicholas Marriott2008-06-05
|
* Revert attempt to fix stray updates, turns out it was clock :-/.Nicholas Marriott2008-06-04
|
* vi keys from Will Maier.Nicholas Marriott2008-06-04
|
* Disable/enable window activity monitoring with set-window-option command.Nicholas Marriott2008-06-04
|
* Add activity monitoring, also invert items on taskbar which have activity.Nicholas Marriott2008-06-04
|
* Bring select-window into line with everything else wrt -i.Nicholas Marriott2008-06-04
|
* Status bar left and right strings (set with status-left and status-right), ↵Nicholas Marriott2008-06-04
| | | | and automatic update (at interval set by status-interval).
* Per-session configuration options.Nicholas Marriott2008-06-03
|
* It is too easy to create things in the same second; use a timespec instead.Nicholas Marriott2008-06-03
|
* Allow -c anywhere -s was allowed.Nicholas Marriott2008-06-03
|
* If no command is specified, assume new-session.Nicholas Marriott2008-06-03
|
* Quick and dirty kill-server command.Nicholas Marriott2008-06-03
|
* Add a windowonly generic command and use it where appropriate. Also trim ↵Nicholas Marriott2008-06-02
| | | | includes and unused.
* Quick man page update, also fix some usages and get rid of some CMD_KEY checks.Nicholas Marriott2008-06-02
|
* Last bits of basic configuration file. By default in ~/.tmux.conf or ↵Nicholas Marriott2008-06-02
| | | | specified with -f. Just a list of tmux commands executed when the server is started and before and any session/window is created.
* Move -s and -c down a level so handling them is the responsibility of the ↵Nicholas Marriott2008-06-02
| | | | 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.
* New command, send-keys, to send a set of keys.Nicholas Marriott2008-06-01
|
* Add limits.hNicholas Marriott2008-05-31
|
* Some key tweaks, fix status bar to not rely on attr.Nicholas Marriott2008-01-03
|
* Use the current attr/colours for filling in new areas, this fixes the echo ↵Nicholas Marriott2007-12-06
| | | | \\033[35\;46m\\033[2J bug.
* Save term data in a linked list and reuse it.Nicholas Marriott2007-12-06
|
* Screen debugging.Nicholas Marriott2007-12-06
|
* set/reset mode window functions.Nicholas Marriott2007-12-06
|
* Major reorganisation of screen handling.Nicholas Marriott2007-12-06
|
* The tty code already stores attributes and doesn't modify them if unaltered, ↵Nicholas Marriott2007-12-02
| | | | so the screen drawing code doesn't need to do so too. This probably also fixes bugs when switching screens where the actual tty attributes may not have been what the draw code (erroneously) expected.
* Change window name on \ek...\e\.Nicholas Marriott2007-11-30
|
* Preliminary mouse support.Nicholas Marriott2007-11-27
|
* Don't nuke charset flag on [0m. Also rename DRAWING -> CHARSET flag.Nicholas Marriott2007-11-27
|
* Same exit process applied to detach.Nicholas Marriott2007-11-27
|
* Three-stage exit process so that [] message printing works on detach etc.Nicholas Marriott2007-11-27
|
* Minor tweaks/missed bits.Nicholas Marriott2007-11-27
|
* Big internal reorganisation to move tty control into parent.Nicholas Marriott2007-11-27
|
* Support for VT100 graphics mode. Also lose some redundant checks.Nicholas Marriott2007-11-24
|
* Reset before calling window_draw otherwise it'll have the wrong idea of the ↵Nicholas Marriott2007-11-24
| | | | current state (since it copies from screen).
* Mostly-complete copy and paste.Nicholas Marriott2007-11-23
|
* history-limit option.Nicholas Marriott2007-11-23
|
* Tidier code by moving mess into functions.Nicholas Marriott2007-11-22
|
* Text selection with C-space.Nicholas Marriott2007-11-22
|
* Partial copy mode. Currently does the same as scroll mode but using a ↵Nicholas Marriott2007-11-22
| | | | cursor. Also fix bug where resizing would leave crap lying around.