1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-22 18:11:43 +03:00
tabby/terminus-terminal/README.md

27 lines
369 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
2020-08-16 19:24:55 +03:00
import { ShellProvider } from 'terminus-terminal'
2019-03-07 20:04:03 +03:00
```
Exporting your subclasses:
```ts
@NgModule({
...
providers: [
...
2020-08-16 19:24:55 +03:00
{ provide: ShellProvider, useClass: MyShellPlugin, multi: true },
2019-03-07 20:04:03 +03:00
...
]
})
```