1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-26 13:10:36 +03:00
tabby/terminus-terminal
Eugene 0476ef35bb
Merge pull request #3807 from Eugeny/dependabot/npm_and_yarn/terminus-terminal/xterm-addon-ligatures-0.5.0
Bump xterm-addon-ligatures from 0.4.0 to 0.5.0 in /terminus-terminal
2021-05-12 09:16:22 +02:00
..
src fixed one-off sessions not auto closing 2021-05-02 19:22:45 +02:00
.gitignore wip 2017-04-11 02:22:48 +02:00
package.json Merge pull request #3807 from Eugeny/dependabot/npm_and_yarn/terminus-terminal/xterm-addon-ligatures-0.5.0 2021-05-12 09:16:22 +02:00
README.md don't mention legacy API in README 2020-08-16 18:24:55 +02:00
tsconfig.json refactoring, build fix 2019-06-06 13:45:15 +02:00
tsconfig.typings.json copy as html if possible (fixes #503) 2019-06-06 20:53:14 +02:00
webpack.config.js bundle size opt 2021-04-08 22:26:47 +02:00
yarn.lock Merge pull request #3807 from Eugeny/dependabot/npm_and_yarn/terminus-terminal/xterm-addon-ligatures-0.5.0 2021-05-12 09:16:22 +02:00

Terminus Terminal Plugin

  • terminal tabs
  • terminal frontends
  • session management
  • shell detection

Using the API:

import { ShellProvider } from 'terminus-terminal'

Exporting your subclasses:

@NgModule({
  ...
  providers: [
    ...
    { provide: ShellProvider, useClass: MyShellPlugin, multi: true },
    ...
  ]
})