tabby/terminus-core
2019-05-24 15:53:14 +00:00
..
src properly relaunch app in the portable build (fixes #478) 2019-05-19 22:41:41 +02:00
.gitignore wip 2017-04-11 02:22:48 +02:00
package.json allow removing shell integration (fixes #682) 2019-05-17 22:05:53 +02:00
README.md autogen docs 2019-03-07 18:04:03 +01:00
tsconfig.json wip 2017-06-10 00:29:16 +02:00
webpack.config.js allow removing shell integration (fixes #682) 2019-05-17 22:05:53 +02:00
yarn.lock Bump @types/js-yaml from 3.9.1 to 3.12.1 in /terminus-core 2019-05-24 15:53:14 +00:00

Terminus Core Plugin

See also: Settings plugin API, Terminal plugin API

  • tabbed interface services
  • toolbar UI
  • config file management
  • hotkeys
  • tab recovery
  • logging
  • theming

Using the API:

import { AppService, TabContextMenuItemProvider } from 'terminus-core'

Exporting your subclasses:

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