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.
|
|
6 years ago | |
|---|---|---|
| .. | ||
| fixtures | 6 years ago | |
| lib | 6 years ago | |
| out | 6 years ago | |
| src | 6 years ago | |
| typings | 6 years ago | |
| LICENSE | 6 years ago | |
| README.md | 6 years ago | |
| package.json | 6 years ago | |
README.md
xterm-addon-search
An addon for xterm.js that enables searching the buffer. This addon requires xterm.js v4+.
Install
npm install --save xterm-addon-search
Usage
import { Terminal } from 'xterm';
import { SearchAddon } from 'xterm-addon-search';
const terminal = new Terminal();
const searchAddon = new SearchAddon();
terminal.loadAddon(searchAddon);
searchAddon.findNext('foo');
See the full API for more advanced usage.