tabby/terminus-terminal
695137400 7030f562e8
Update xtermFrontend.ts
console error
2020-08-04 18:21:26 +08:00
..
src Update xtermFrontend.ts 2020-08-04 18:21:26 +08: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 },
    ...
  ]
})