1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-21 09:58:09 +03:00
tabby/terminus-core
2019-05-30 11:33:31 +02:00
..
src style fix (fixes #967) 2019-05-30 11:33:31 +02:00
.gitignore wip 2017-04-11 02:22:48 +02:00
package.json Bump deepmerge from 1.5.1 to 3.2.0 in /terminus-core 2019-05-24 18:41:21 +00: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 core-js from 3.1.2 to 3.1.3 in /terminus-core (#965) 2019-05-29 07:56:43 +02: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 },
    ...
  ]
})