1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 04:43:03 +03:00
tabby/tabby-settings
2023-06-04 21:22:05 +02:00
..
src fixed #7727 - allow hiding individual profiles from the selector 2023-06-04 21:22:05 +02: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 bootstrap 5 WIP (#7891) 2023-02-26 20:42:31 +01:00

Tabby Settings Plugin

  • tabbed settings interface

Using the API:

import { SettingsTabProvider } from 'tabby-settings'

Exporting your subclasses:

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