mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-26 20:16:07 +03:00
1cfe0637f4
Bumps [universal-analytics](https://github.com/peaksandpies/universal-analytics) from 0.4.17 to 0.4.20. - [Release notes](https://github.com/peaksandpies/universal-analytics/releases) - [Changelog](https://github.com/peaksandpies/universal-analytics/blob/master/HISTORY.md) - [Commits](https://github.com/peaksandpies/universal-analytics/compare/0.4.17...0.4.20) |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
package.json | ||
README.md | ||
tsconfig.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 },
...
]
})