Eugene Pankov 1a0acad3c2 properly relaunch app in the portable build (fixes #478) 6 years ago
..
src 1a0acad3c2 properly relaunch app in the portable build (fixes #478) 6 years ago
.gitignore 0ea346a6ae wip 8 years ago
README.md 8cf7851801 autogen docs 6 years ago
package.json b54d99ff3d allow removing shell integration (fixes #682) 6 years ago
tsconfig.json 65e9cbe759 wip 8 years ago
webpack.config.js b54d99ff3d allow removing shell integration (fixes #682) 6 years ago
yarn.lock b54d99ff3d allow removing shell integration (fixes #682) 6 years ago

README.md

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 },
    ...
  ]
})