1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-04 07:39:47 +03:00
tabby/terminus-terminal
dependabot-preview[bot] 7d5e70c718
Bump xterm from 4.10.0 to 4.11.0 in /terminus-terminal
Bumps [xterm](https://github.com/xtermjs/xterm.js) from 4.10.0 to 4.11.0.
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](https://github.com/xtermjs/xterm.js/compare/4.10.0...4.11.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-10 04:18:43 +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 upgraded xterm.js 2021-02-07 13:44:08 +01: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 from 4.10.0 to 4.11.0 in /terminus-terminal 2021-03-10 04:18:43 +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 },
    ...
  ]
})