vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit bffb0e631972d1326b80686249819fc0499c5180 parent 09cfedce508f7d8f82756b02cc9b4925af521c22 Author: John W. Trengrove <john@retrofilter.com> Date: Tue, 7 Apr 2015 16:40:56 +1000 Prevent black flicker on load Diffstat:
| M | ui-curses.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/ui-curses.c b/ui-curses.c @@ -532,6 +532,7 @@ Ui *ui_curses_new(void) { if (!newterm(term, stderr, stdin)) return NULL; start_color(); + use_default_colors(); raw(); noecho(); keypad(stdscr, TRUE);