mirror of
https://github.com/Eugeny/tabby.git
synced 2025-01-02 23:45:45 +03:00
88f4c7e835
Bumps [@electron/remote](https://github.com/electron/remote) from 1.0.4 to 1.1.0. - [Release notes](https://github.com/electron/remote/releases) - [Changelog](https://github.com/electron/remote/blob/master/.releaserc.json) - [Commits](https://github.com/electron/remote/compare/v1.0.4...v1.1.0) 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 },
...
]
})