tabby/terminus-terminal/README.md

27 lines
369 B
Markdown
Raw Normal View History

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