1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 09:27:16 +03:00
tabby/terminus-terminal
2021-03-10 20:51:53 +01:00
..
src expose sessionChanged$ 2021-03-10 20:51:44 +01:00
.gitignore wip 2017-04-11 02:22:48 +02:00
package.json Merge branch 'master' of github.com:Eugeny/terminus 2021-03-10 20:51:53 +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 Merge pull request #3568 from Eugeny/dependabot/npm_and_yarn/terminus-terminal/xterm-4.11.0 2021-03-10 20:42:04 +01: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 },
    ...
  ]
})