mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-04 07:39:47 +03:00
27 lines
405 B
Markdown
27 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 },
|
||
|
...
|
||
|
]
|
||
|
})
|
||
|
```
|