Skip to content

Commit

Permalink
Merge pull request #2198 from jerch/2189_terminfo_issue
Browse files Browse the repository at this point in the history
change TERM to xterm-256color in demo
  • Loading branch information
Tyriar committed Jun 7, 2019
2 parents 5c21a6c + f3977af commit 4cfba55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function startServer() {
var cols = parseInt(req.query.cols),
rows = parseInt(req.query.rows),
term = pty.spawn(process.platform === 'win32' ? 'cmd.exe' : 'bash', [], {
name: 'xterm-color',
name: 'xterm-256color',
cols: cols || 80,
rows: rows || 24,
cwd: process.env.PWD,
Expand Down

0 comments on commit 4cfba55

Please sign in to comment.