Skip to content

Commit

Permalink
Set $TERM to xterm-256color instead of default vt100 (fixes #299)
Browse files Browse the repository at this point in the history
  • Loading branch information
SchoofsKelvin committed Oct 24, 2021
1 parent 29cae0e commit 554eda8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pseudoTerminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { environmentToExportString, joinCommands, mergeEnvironment, toPromise }

const [HEIGHT, WIDTH] = [480, 640];
const PSEUDO_TTY_OPTIONS: PseudoTtyOptions = {
height: HEIGHT, width: WIDTH,
height: HEIGHT, width: WIDTH, term: 'xterm-256color',
};

export interface SSHPseudoTerminal extends vscode.Pseudoterminal {
Expand Down

0 comments on commit 554eda8

Please sign in to comment.