1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-04 07:39:47 +03:00
tabby/terminus-terminal/README.md

27 lines
405 B
Markdown
Raw Normal View History

2019-03-07 20:04:03 +03:00
Terminus Terminal Plugin
------------------------
* terminal tabs
* terminal frontends
* session management
* shell detection
Using the API:
```ts
import { TerminalContextMenuItemProvider } from 'terminus-terminal'
```
Exporting your subclasses:
```ts
@NgModule({
...
providers: [
...
{ provide: TerminalContextMenuItemProvider, useClass: MyContextMenu, multi: true },
...
]
})
```