Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #79 from microsoft/enable-conpty
Browse files Browse the repository at this point in the history
enable conpty support
  • Loading branch information
ZoeyR committed May 30, 2019
2 parents 3d6aa0e + 2149fc2 commit b6752ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Microsoft.VisualStudio.Terminal/ServiceHub/pty.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ServicePty.prototype.initTerm = function (shell, cols, rows, startDir, args, env
rows: rows,
cwd: startDir,
env: mergedEnvironment,
experimentalUseConpty: false,
experimentalUseConpty: true,
});

this.ptyConnection.on('data', (data) => this.connection.sendRequest('PtyData', [data]));
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.VisualStudio.Terminal/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Microsoft.VisualStudio.Terminal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "embedded terminal ui in VS",
"author": "Daniel Griffen",
"dependencies": {
"node-pty": "0.9.0-beta14",
"node-pty": "0.9.0-beta15",
"requirejs": "^2.3.5",
"vscode-jsonrpc": "4.0.0",
"xterm": "3.13.2"
Expand Down

0 comments on commit b6752ad

Please sign in to comment.