git: 9front

Download patch

ref: b879aee49098cb537355b6783802323373f8dfb5
parent: 6d27e874653cf59742359e91dffcc14c510cf47d
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Apr 17 01:32:01 EDT 2017

vt: increase history buffer to 64K runes

--- a/sys/src/cmd/vt/cons.h
+++ b/sys/src/cmd/vt/cons.h
@@ -10,7 +10,7 @@
 
 #define	INSET	2
 #define	BUFS	32
-#define	HISTSIZ	4096	/* number of history characters */
+#define	HISTSIZ	65536	/* number of history characters */
 #define BSIZE	1000
 
 #define	SCROLL	2
--