You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
unknown f7c4c7366a 00 10 months ago
..
lib 00 10 months ago
src 00 10 months ago
typings 00 10 months ago
LICENSE 00 10 months ago
README.md 00 10 months ago
package.json 00 10 months ago

README.md

xterm-addon-fit

An addon for xterm.js that enables fitting the terminal's dimensions to a containing element. This addon requires xterm.js v4+.

Install

npm install --save xterm-addon-fit

Usage

import { Terminal } from 'xterm';
import { FitAddon } from 'xterm-addon-fit';

const terminal = new Terminal();
const fitAddon = new FitAddon();
terminal.loadAddon(fitAddon);
terminal.open(containerElement);
fitAddon.fit();

See the full API for more advanced usage.