aboutsummaryrefslogtreecommitdiff
path: root/ui-curses.c
AgeCommit message (Collapse)AuthorFilesLines
2015-04-22More renames, no functional changesMarc André Tanner1-12/+12
Win -> View, window_* -> view_*
2015-04-11Remove global mode stateMarc André Tanner1-1/+1
Once again show mode in window status bar.
2015-04-11Further ui separation, eliminate global stateMarc André Tanner1-16/+33
2015-04-07Set '< and '> marksMarc André Tanner1-18/+10
2015-04-07Prevent black flicker on loadJohn W. Trengrove1-0/+1
2015-04-05Fix clang static analyzer warningsMarc André Tanner1-1/+1
2015-04-04Fix drawing of selectionMarc André Tanner1-10/+7
2015-04-04Move more curses related stuff to ui-curses.cMarc André Tanner1-0/+7
2015-04-03Add option to display relative line numbersMarc André Tanner1-2/+14
:set rnu Based on a patch by Sebastian Götte.
2015-04-03Preliminary user interface separationMarc André Tanner1-0/+568
In theory only ui-curses.[hc] should depend on curses, however in practice keyboard input is still handled in vis.c. Furthermore the syntax definitions as well as keyboard bindings and selection code in window.c still depends on some curses constants. There is also a slight regression in that the window status bar does not show the current mode name. This and related global state should be eliminated in the future.