1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-07-14 15:50:31 +03:00
tabby/tabby-local
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
package.json bumped plugins 2023-04-23 10:22:38 -07: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.mjs bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00
yarn.lock moved more electron stuff out of tabby-local 2023-03-19 13:20:30 +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 },
    ...
  ]
})