mirror of
https://github.com/Eugeny/tabby.git
synced 2025-01-02 23:45:45 +03:00
6de6fd8f40
Bumps [ngx-perfect-scrollbar](https://github.com/zefoy/ngx-perfect-scrollbar) from 10.1.0 to 10.1.1. - [Release notes](https://github.com/zefoy/ngx-perfect-scrollbar/releases) - [Commits](https://github.com/zefoy/ngx-perfect-scrollbar/compare/v10.1.0...v10.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
package.json | ||
README.md | ||
tsconfig.json | ||
tsconfig.typings.json | ||
webpack.config.js | ||
yarn.lock |
Terminus Core Plugin
See also: Settings plugin API, Terminal plugin API
- tabbed interface services
- toolbar UI
- config file management
- hotkeys
- tab recovery
- logging
- theming
Using the API:
import { AppService, TabContextMenuItemProvider } from 'terminus-core'
Exporting your subclasses:
@NgModule({
...
providers: [
...
{ provide: TabContextMenuItemProvider, useClass: MyContextMenu, multi: true },
...
]
})