1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-18 15:41:54 +03:00
tabby/tabby-core
dependabot[bot] 2094409d23
Bump core-js from 3.14.0 to 3.15.2 in /tabby-core
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.14.0 to 3.15.2.
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.15.2/packages/core-js)

---
updated-dependencies:
- dependency-name: core-js
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-07-06 06:56:19 +00:00
..
src deprecated matchedHotkey 2021-07-05 22:52:32 +02:00
.gitignore project rename 2021-06-29 23:57:04 +02:00
package.json new profile system 2021-07-04 12:23:27 +02:00
README.md project rename 2021-06-29 23:57:04 +02:00
tsconfig.json project rename 2021-06-29 23:57:04 +02:00
tsconfig.typings.json project rename 2021-06-29 23:57:04 +02:00
webpack.config.js project rename 2021-06-29 23:57:04 +02:00
yarn.lock Bump core-js from 3.14.0 to 3.15.2 in /tabby-core 2021-07-06 06:56:19 +00:00

Tabby Core Plugin

See also: Settings plugin API, Terminal plugin API, Local terminal API

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

Using the API:

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

Exporting your subclasses:

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