From ff667bb57409b9fdb2cf3d7449c76f409a4235d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Tue, 20 Dec 2016 22:04:51 +0100 Subject: ui: increase maximum info message length --- ui-curses.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-curses.c b/ui-curses.c index 45e4a28..93ab146 100644 --- a/ui-curses.c +++ b/ui-curses.c @@ -79,7 +79,7 @@ typedef struct { Vis *vis; /* editor instance to which this ui belongs */ UiCursesWin *windows; /* all windows managed by this ui */ UiCursesWin *selwin; /* the currently selected layout */ - char info[255]; /* info message displayed at the bottom of the screen */ + char info[512]; /* info message displayed at the bottom of the screen */ int width, height; /* terminal dimensions available for all windows */ enum UiLayout layout; /* whether windows are displayed horizontally or vertically */ TermKey *termkey; /* libtermkey instance to handle keyboard input (stdin or /dev/tty) */ -- cgit v1.2.3