allow starting commands in new tabs via CLI (fixes #304)

This commit is contained in:
Eugene Pankov
2018-08-26 17:35:04 +02:00
parent 3f8f87a141
commit 6cc20c3719
23 changed files with 1006 additions and 411 deletions

View File

@@ -25,6 +25,7 @@ export interface SessionOptions {
height?: number
recoveryId?: string
recoveredTruePID$?: Observable<number>
pauseAfterExit?: boolean
}
export abstract class SessionPersistenceProvider {
@@ -51,7 +52,7 @@ export abstract class TerminalColorSchemeProvider {
export interface IShell {
id: string
name: string
name?: string
command: string
args?: string[]
env?: any