Eugene d525374061 fixed missing app theme at the initial vault password prompt преди 1 година
..
src d525374061 fixed missing app theme at the initial vault password prompt преди 1 година
README.md bbb02f4e64 bundle the clickable-links plugin with Tabby преди 4 години
package.json fed3c78e79 Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core преди 2 години
tsconfig.json 43cd3318da project rename преди 4 години
tsconfig.typings.json 43cd3318da project rename преди 4 години
webpack.config.mjs 1e5cfd1d4b bootstrap 5 WIP (#7891) преди 3 години
yarn.lock fed3c78e79 Bump readable-stream from 4.2.0 to 4.4.0 in /tabby-core преди 2 години

README.md

Tabby Core Plugin

See also:

This module provides:

  • tabbed interface services
  • toolbar UI
  • config file management
  • hotkeys
  • tab recovery
  • logging
  • theming

Using the API:

import { AppService, TabContextMenuItemProvider } from 'tabby-core'

Exporting your subclasses:

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