@kingironman2011/xterm-addon-search-bar
v0.3.7
Published
**This is a fork of [xterm-addon-search-bar](https://github.com/yinshuxun/xterm-addon-search-bar) with some package updates and improvements**
Maintainers
Readme
@kingironman2011/xterm-addon-search-bar
This is a fork of xterm-addon-search-bar with some package updates and improvements
An addon for xterm.js that enables show search bar in terminal. This addon requires xterm.js & xterm-addon-search v4+.
Install
npm install --save @kingironman2011/xterm-addon-search-barUsage
import { Terminal } from '@xterm/xterm';
import { SearchAddon } from '@xterm/addon-search';
import { SearchAddonBar } from '@kingironman2011/xterm-addon-search-bar';
const terminal = new Terminal();
const searchAddon = new SearchAddon();
const searchAddonBar = new SearchAddonBar({ searchAddon });
terminal.loadAddon(searchAddon);
terminal.loadAddon(searchAddonBar);
// Can be uesd in a action as click
searchAddonBar.show();See the full API for more advanced usage
