1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-06 17:37:15 +03:00
tabby/tabby-local
2022-01-31 16:37:43 +01:00
..
src don't include tab state in saved layouts 2022-01-10 20:39:29 +01:00
package.json bumped plugins 2022-01-31 16:37:43 +01:00
README.md bundle the clickable-links plugin with Tabby 2021-12-08 19:54:26 +01: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 removed old dep 2021-11-06 22:46:55 +01:00

Tabby Local Plugin

  • local shells

Using the API:

import { ShellProvider } from 'tabby-local'

Exporting your subclasses:

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