提交 6af22405 编写于 作者: D Daniel Imms

xterm.js prototype

上级 a89447cc
......@@ -3,7 +3,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
declare module 'term.js' {
declare module 'xterm' {
function init(options: any): TermJsTerminal;
// There seems to be no way to export this so it can be referenced outside of this file when a
......
......@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import cp = require('child_process');
import termJs = require('term.js');
import xterm = require('xterm');
import lifecycle = require('vs/base/common/lifecycle');
import os = require('os');
import path = require('path');
......@@ -45,7 +45,7 @@ export class TerminalInstance {
vertical: ScrollbarVisibility.Auto
});
this.toDispose.push(terminalScrollbar);
this.terminal = termJs({
this.terminal = xterm({
cursorBlink: false // term.js' blinking cursor breaks selection
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册