Eugene Pankov 39732908a3 ivy test 6 years ago
..
src 39732908a3 ivy test 6 years ago
.gitignore 0ea346a6ae wip 9 years ago
README.md 269971ab60 docs fix 6 years ago
package.json 99698913a8 lint 6 years ago
tsconfig.json 39732908a3 ivy test 6 years ago
tsconfig.typings.json 39bbe54992 refactoring, build fix 6 years ago
webpack.config.js 39732908a3 ivy test 6 years ago
yarn.lock 8ed6a78610 Bump core-js from 3.3.5 to 3.4.2 in /terminus-core 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 },
    ...
  ]
})