Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Never draw last character: stops stray scrolling sometimes should status ↵ | Nicholas Marriott | 2009-02-12 |
| | | | | line be disabled. | ||
* | FreeBSD's console wraps lines at $COLUMNS - 1 rather than $COLUMNS (the ↵ | Nicholas Marriott | 2009-02-11 |
| | | | | cursor can never be beyond $COLUMNS - 1) and does not appear to support changing this behaviour, or any of the obvious possibilities (turning off right margin wrapping, insert mode). This is irritating, most notably because it impossible to write to the very bottom-right of the screen without scrolling. To work around this, if built on FreeBSD and run with a "cons" $TERM, the bottom-right cell on the screen is omitted. | ||
* | Move sx,sy into tty rather than client. | Nicholas Marriott | 2009-02-11 |
| | |||
* | We are going to need the updated screen data for emulating the scroll region, | Nicholas Marriott | 2009-02-11 |
| | | | | | | | | | which may involve changing the cursor position; however, the old (before redraw) cursor position is necessary for writing to the tty. So, save it before doing the redraw then update the internal screen then update the tty. Not sure I like this solution but it does the job for now. | ||
* | Split most of tty_cmd_cell off to tty_cell. First step on making tty_cmd_* take | Nicholas Marriott | 2009-02-11 |
| | | | | | a window_pane for later use emulating scroll region. | ||
* | Fix various silly problems with status line off. | Nicholas Marriott | 2009-01-19 |
| | |||
* | Update. | Nicholas Marriott | 2009-01-14 |
| | |||
* | Multiple window splitting. | Nicholas Marriott | 2009-01-14 |
| | |||
* | Make the window pane code handle panes of different sizes, and add a -l and ↵ | Nicholas Marriott | 2009-01-12 |
| | | | | -p arguments to split-window to specify the new window size in lines or as a percentage. | ||
* | Window splitting. Two vertical panes fixed 50% each. This is a huge diff, ↵ | Nicholas Marriott | 2009-01-11 |
| | | | | still a couple of bugs (notably heap corruption somewhere causing segfault on exit). | ||
* | Build array of codes, stop using ncurses global variables and push ncurses ↵ | Nicholas Marriott | 2009-01-09 |
| | | | | crap into tty-term.c. | ||
* | Make window options work the same was as session options, add ↵ | Nicholas Marriott | 2008-12-08 |
| | | | | mode-fg/mode-bg options, force -g for global on set/show/setw/showw/ | ||
* | Trim. | Nicholas Marriott | 2008-09-26 |
| | |||
* | Internal screen data rewrite for better 256 colour/UTF-8 support. | Nicholas Marriott | 2008-09-25 |
| | |||
* | Fix bold/non-bold mismatch in 256 colour mode by adding an extra 8 bits ↵ | Nicholas Marriott | 2008-09-08 |
| | | | | (ick) onto the attributes and using two of them to mark the fg and bg as 256 colours when necessary. If only it was 255 colours we would have one value for default and wouln't need this :-/. | ||
* | Initial 256 colour support, lightly tested. | Nicholas Marriott | 2008-09-08 |
| | |||
* | Unused variable. | Nicholas Marriott | 2008-06-18 |
| | |||
* | Informational messages on window option changes. | Nicholas Marriott | 2008-06-16 |
| | |||
* | I'm an idiot - it is start,len not start,end. Unbreak. | Nicholas Marriott | 2008-06-14 |
| | |||
* | New window options: force-width and force-height. This will force a window to | Nicholas Marriott | 2008-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 Marriott | 2008-06-14 |
| | |||
* | Some key tweaks, fix status bar to not rely on attr. | Nicholas Marriott | 2008-01-03 |
| | |||
* | This was wrong... | Nicholas Marriott | 2008-01-03 |
| | |||
* | Write status across entire line. | Nicholas Marriott | 2008-01-03 |
| | |||
* | Major reorganisation of screen handling. | Nicholas Marriott | 2007-12-06 |