mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 17:28:06 +00:00
26 lines
405 B
Markdown
26 lines
405 B
Markdown
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 },
|
|
...
|
|
]
|
|
})
|
|
```
|