1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +03:00
tabby/tabby-local
2022-05-15 15:02:12 +08:00
..
src Add icon for AlmaLinux-8 profile 2022-05-15 15:02:12 +08:00
package.json bumped plugins, added serialport mocks 2022-02-07 16:36:20 +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 },
    ...
  ]
})