tabby/terminus-terminal
2020-07-27 16:12:16 +02:00
..
src avoid ResizeObserver feedback loop 2020-07-05 12:47:40 +02:00
.gitignore
package.json bumped xterm 2020-07-27 15:55:24 +02:00
README.md
tsconfig.json
tsconfig.typings.json
webpack.config.js use more performant sourcemap mode - fixes #2617 2020-07-27 16:12:16 +02:00
yarn.lock bumped xterm 2020-07-27 15:55:24 +02:00

Terminus Terminal Plugin

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

Using the API:

import { TerminalContextMenuItemProvider } from 'terminus-terminal'

Exporting your subclasses:

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