tabby/terminus-terminal
2019-07-17 17:30:11 -07:00
..
src Merge branch 'master' into feature/support-multiple-windows-win10 2019-07-17 17:30:11 -07:00
.gitignore
package.json Bump xterm from 3.15.0-beta80 to 3.15.0-beta81 in /terminus-terminal 2019-07-17 04:29:15 +00:00
README.md
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 use webpack.sourcemapdevtoolplugin for reliable sourcemaps 2019-07-16 23:33:02 +02:00
yarn.lock Bump xterm from 3.15.0-beta80 to 3.15.0-beta81 in /terminus-terminal 2019-07-17 04:29:15 +00: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 },
    ...
  ]
})