summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/screen.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Store and restore cursor across reflow by working out a position basednicm2019-04-021-5/+5
* Improve cursor positioning after reflow by storing the position as annicm2019-03-201-32/+28
* Do not highlight characters which will not be copied, reported bynicm2019-01-151-3/+11
* Move struct screen_sel into screen.c and tidy up members that are onlynicm2018-07-311-25/+41
* Add accessors for grid linedata member, for some future work. From Dannicm2018-07-041-5/+4
* Completely rewrite the reflow code to correctly handle double widthnicm2017-11-151-11/+2
* There is no point in reflowing panes which have not changed width.nicm2017-11-021-2/+3
* Add support for the xterm(1) title stack, from Brad Town, GitHub issuenicm2017-10-051-1/+69
* Be more strict about escape sequences that rename windows or set titles:nicm2017-06-041-2/+3
* Collect sequences of printable ASCII characters and process themnicm2017-02-081-6/+2
* Make the selection able to exist independent of the cursor position, sonicm2016-11-241-3/+15
* Add support for BCE (background colour erase). This makes various escapenicm2016-10-131-4/+5
* Redraw selection in tty_draw_line, so it appears when redrawing wholenicm2016-10-121-1/+17
* Add static in window-*.c and move some internal functions out of tmux.h.nicm2016-10-111-2/+4
* Loads more static, except for cmd-*.c and window-*.c.nicm2016-10-101-7/+7
* Remember the number of lines scrolled into the history (versus clearednicm2016-09-021-7/+10
* Don't update cells in each block of data read from a pane immediately,nicm2016-07-151-1/+5
* Spelling error (incrased -> increased), from Josh Soref.nicm2016-06-101-2/+2
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Couple of trivial style nits.nicm2015-12-281-3/+3
* Count brackets in #{?...} so that nested conditional formats work, fromnicm2015-10-271-3/+1
* Only set default title to hostname on screens that are being used for anicm2015-08-281-8/+2
* correctly use HOST_NAME_MAX.deraadt2015-01-111-3/+3
* Add V for select line with vi(1) keys. From Juho Pohjala.nicm2014-11-061-1/+2
* Tidy up some includes.nicm2014-10-201-4/+4
* Add xreallocarray and remove nmemb argument from xrealloc.nicm2014-10-081-3/+3
* Various minor style and spacing nits.nicm2014-09-011-2/+2
* Fix two copy mode problems:nicm2014-08-111-6/+19
* Three small changes from Tiago Cunha:nicm2014-01-091-6/+2
* Don't let cursor position overflow when reflowing, from Christophernicm2013-05-151-2/+8
* Rework reflow code so it does not do so much allocation which should benicm2013-03-211-10/+5
* Automatically reflow wrapped lines when a pane is resized, requested bynicm2013-02-051-2/+20
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-9/+7
* Michael Krysiak points out that some terminals (eg mintty) have cursornicm2012-03-171-2/+2
* Support DECSCUSR sequence to set the cursor style with two newnicm2011-05-201-1/+10
* Support xterm(1) cursor colour change sequences through terminfo(5) Ccnicm2011-05-201-1/+11
* Don't need vis.h anymore.nicm2011-05-041-2/+1
* Don't use strnvis for the title as it breaks UTF-8. set-titles is nownicm2011-05-041-2/+2
* Fix rectangle copy to behave like emacs - the cursor is not part of thenicm2010-12-111-3/+3
* Merge copy mode and output mode, dropping the latter. Idea and code fromnicm2010-04-061-2/+3
* rather than using an empty "" as the default window title, put the hostnamebeck2010-04-041-2/+7
* Rectangle copy support, from Robin Lee Powell.nicm2010-02-061-37/+78
* Fix selection behaviour when the cursor is moved backwards (ie so the selectionnicm2010-01-031-4/+24
* Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastnicm2009-12-031-5/+5
* Change the way the grid is stored, previously it was:nicm2009-08-081-11/+5
* Plug some memory leaks.nicm2009-07-301-1/+3
* When resizing a screen smaller in alternate screen mode, all the lines needednicm2009-07-171-2/+2
* Support "alternate screen" mode (terminfo smcup/rmcup) typically used by fullnicm2009-07-131-7/+21
* When the terminal size is reduced horizontally, don't truncate lines to the newnicm2009-07-091-35/+10
* When reinitialising the screen, do not omit to clear the last line.nicm2009-07-081-2/+2