aboutsummaryrefslogtreecommitdiff
path: root/ui-curses.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-12-20 22:04:51 +0100
committerMarc André Tanner <mat@brain-dump.org>2016-12-20 22:08:42 +0100
commitff667bb57409b9fdb2cf3d7449c76f409a4235d3 (patch)
treeb4bec685a25f15778de0ef4db9507da4de0785ec /ui-curses.c
parentd89f1c532f99fd19df65acffeeef2d4c19f9da62 (diff)
downloadvis-ff667bb57409b9fdb2cf3d7449c76f409a4235d3.tar.gz
vis-ff667bb57409b9fdb2cf3d7449c76f409a4235d3.tar.xz
ui: increase maximum info message length
Diffstat (limited to 'ui-curses.c')
-rw-r--r--ui-curses.c2
1 files changed, 1 insertions, 1 deletions
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) */