tabby/terminus-terminal
dependabot-preview[bot] 4a8fe78b07
Bump xterm-addon-webgl from 0.9.0 to 0.10.0 in /terminus-terminal
Bumps [xterm-addon-webgl](https://github.com/xtermjs/xterm.js) from 0.9.0 to 0.10.0.
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](https://github.com/xtermjs/xterm.js/compare/0.9...0.10)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-10 04:17:54 +00:00
..
src macos: only query default shell once 2021-03-02 22:55:06 +01:00
.gitignore wip 2017-04-11 02:22:48 +02:00
package.json Bump xterm-addon-webgl from 0.9.0 to 0.10.0 in /terminus-terminal 2021-03-10 04:17:54 +00:00
README.md don't mention legacy API in README 2020-08-16 18:24:55 +02:00
tsconfig.json refactoring, build fix 2019-06-06 13:45:15 +02:00
tsconfig.typings.json copy as html if possible (fixes #503) 2019-06-06 20:53:14 +02:00
webpack.config.js cleanup webpack configs 2021-02-13 12:11:38 +01:00
yarn.lock Bump xterm-addon-webgl from 0.9.0 to 0.10.0 in /terminus-terminal 2021-03-10 04:17:54 +00:00

Terminus Terminal Plugin

  • terminal tabs
  • terminal frontends
  • session management
  • shell detection

Using the API:

import { ShellProvider } from 'terminus-terminal'

Exporting your subclasses:

@NgModule({
  ...
  providers: [
    ...
    { provide: ShellProvider, useClass: MyShellPlugin, multi: true },
    ...
  ]
})