enable full unicode for blessed-telnet example.

This commit is contained in:
Christopher Jeffrey 2015-08-09 03:14:03 -07:00
parent 20636913e5
commit c1670137ae
1 changed files with 2 additions and 1 deletions

View File

@ -76,7 +76,8 @@ var server = telnet.createServer(function(client) {
smartCSR: true,
input: client,
output: client,
terminal: 'xterm-256color'
terminal: 'xterm-256color',
fullUnicode: true
});
client.on('close', function() {