tabby/tabby-local
Eugene bacb458df3
fixed #9164 - only auto-open a new tab if there are no tabs recovered after startup
2024-03-11 21:20:51 +01:00
..
src fixed #9164 - only auto-open a new tab if there are no tabs recovered after startup 2024-03-11 21:20:51 +01:00
README.md
package.json
tsconfig.json
tsconfig.typings.json
webpack.config.mjs
yarn.lock

README.md

Tabby Local Plugin

  • local shells

Using the API:

import { ShellProvider } from 'tabby-local'

Exporting your subclasses:

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