* Some notes and minor changes

This commit is contained in:
Bryan Ashby 2015-05-20 13:24:39 -06:00
parent eaa4feeebd
commit be2c940013
3 changed files with 45 additions and 4 deletions

View file

@ -8,6 +8,7 @@
// * http://ansi-bbs.org/
// * http://www.bbsdocumentary.com/library/PROGRAMS/GRAPHICS/ANSI/ansisys.txt
// * http://en.wikipedia.org/wiki/ANSI_escape_code
// * https://github.com/chjj/term.js/blob/master/src/term.js
//
var assert = require('assert');
@ -65,6 +66,9 @@ var CONTROL = {
hideCursor : '?25l', // Nonstandard - cterm.txt
showCursor : '?25h', // Nonstandard - cterm.txt
// :TODO: see https://code.google.com/p/conemu-maximus5/wiki/AnsiEscapeCodes
// apparently some terms can report screen size and text area via 18t and 19t
};
/*