Eugene Pankov 1ac22ec563 disable vibrancy while dragging window on buggy windows 10 builds (fixes #949) il y a 6 ans
..
src 1ac22ec563 disable vibrancy while dragging window on buggy windows 10 builds (fixes #949) il y a 6 ans
.gitignore 0ea346a6ae wip il y a 8 ans
README.md 269971ab60 docs fix il y a 6 ans
package.json 87fe8deaa8 apis il y a 6 ans
tsconfig.json a5ecdeb5ea lint il y a 6 ans
tsconfig.typings.json 39bbe54992 refactoring, build fix il y a 6 ans
webpack.config.js 18aa78fa2e webpack 5 il y a 6 ans
yarn.lock ca9b8307c2 Merge pull request #1998 from Eugeny/dependabot/npm_and_yarn/terminus-core/core-js-3.6.4 il y a 6 ans

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