tabby/terminus-terminal
2020-05-02 15:45:34 +02:00
..
src use xterm's own line break fix - fixed #524 2020-05-02 15:45:34 +02:00
.gitignore wip 2017-04-11 02:22:48 +02:00
package.json Bump uuid from 7.0.1 to 8.0.0 in /terminus-terminal 2020-04-30 04:21:00 +00:00
README.md autogen docs 2019-03-07 18:04:03 +01: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 webpack 5 2019-11-25 12:20:41 +01:00
yarn.lock Merge pull request #2496 from Eugeny/dependabot/npm_and_yarn/terminus-terminal/uuid-8.0.0 2020-05-02 14:08:13 +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 },
    ...
  ]
})