1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 01:18:39 +03:00
tabby/tabby-local
Eugene Pankov 1926eca929
lint
2021-07-24 10:25:29 +02:00
..
src lint 2021-07-24 10:25:29 +02:00
package.json local: UI to support single "command line" in profiles 2021-07-18 15:22:35 +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 local: UI to support single "command line" in profiles 2021-07-18 15:22:35 +02: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 },
    ...
  ]
})